Synopsis

The Trust survey is conducted all over the world to find citizen’s trust on public organizations and professions. The trust data was collected in Nepal, in 2014 with about 2400 respondents. The respondents were selected from 48 different Village Development Committees (VDCs) of different constituencies across the country. The respondents were selected from the voter’s list. These data was entered into the computer and saved to different filenames for each constituencies.

Here, the data is read, merged, cleaned and frequency tables and plos are generated for Exploratory analysis.

Read all individual SPSS files

All the data files from differnt constituencies are fed to the analysis.

#list all files in current working directory
fileList<-dir()
#SPSS files have .sav extension. filter files with .sav
fileList<-fileList[grep(".sav",fileList)]
#read first file to make initial data frame
data<-read.spss(fileList[1],to.data.frame=TRUE,reencode='utf-8')
#Keep all but first file already read
fileList<-fileList[2:length(fileList)]
#read.spss gives warnings, but it can be safely ignored
for(file in fileList) {
    readData<-read.spss(file,to.data.frame=TRUE,reencode='utf-8')
    data<-rbind(data,readData[,1:202])
}

Cleaning Data

Removind Blank columns and rows

The original data contains 202 columns. Some might have created extra column names unknowingly while entering data. Some might have inserted blank records in SPSS. We will discard all the records that does not contain either respondentID, or Gender or Age. We will also discard all the columns right to column number 202.

dim(data)
## [1] 2224  202
data<-data[(!is.na(data$id)) | (!is.na(data$aq1)) | (!is.na(data$aq2)),]
dim(data)
## [1] 2203  202

Rename column names of dataset to variable labels

Column names should be renamed to some meaningful names. The labels obtained from variable labels attribute of SPSS file should be cleaned before using as column names of data frame.

#Find variable labels #variableLabels<-attr(mydata,"variable.labels")
variableLabels<-character()
for(i in 1:202){variableLabels[i]<-attr(data,"variable.labels")[[i]]}
#Converts spaces and punctuations to dots(.)
names(data)<-make.names(variableLabels,unique=TRUE)
#Following code removes all punctuation marks too
#names(data)<-gsub("[ [:punct:]]", "" , variableLabels)

Remove other specific noises in data

#removing age less than 18
data[data[,6]<18 & !is.na(data[,6]),6]<-NA

Now Frequency tables and graphs for all columns

for(i in 5:202){
    x<-data[,i]
    #remove NA before calculating mean
    x <- x[!is.na(x)]
    #Remove "Don't Know" and NA from x
    x<-x[x!="Don't know" & x!="Don't Know" & !is.na(x)]

    #calculate frequency table
    c<-count(x)
    #find percent and mean of frequency
    y<-cbind(c,"percent"=c[,2]/sum(c[2])*100)#,mean=mean(count$freq)
    #Horizontal and vertical mean
    hm<-mean(y$percent) #mean of percentages
    vm<-mean(as.numeric(x))

    #Change NA
    #levels(y$x)<-c(levels(y$x),"Not Available")
    #y[is.na(y$x),1]<-"Not Available"
    #Remove NA after calculating percent
    #y<-y[!is.na(y$x),]

    #Plot factors x by percent
    g<-ggplot(y,aes(x=x,y=percent))
    g<-g+geom_bar(stat="identity",color="Red",fill="Maroon")
    g<-g+labs(title=variableLabels[i],x=names(data[,i]),y="Percent")
    g<-g+geom_text(aes(label=paste(round(percent,digits=2),"%",sep="")),size = 3, hjust = 0.5, vjust = -1, position ="stack")
    g<-g+theme_bw()
    g<-g+theme(axis.text.x=element_text(angle=45,vjust=1,hjust=1))
    g<-g+geom_hline(aes(yintercept=hm))
    #g<-g+geom_text(aes(0,m,label = m, vjust = -1))
    #g<-g+scale_y_continuous(breaks = sort(c(seq(min(y$percent), max(y$percent), length.out=5), m)))
    g<-g+geom_vline(aes(xintercept=vm))
    print(g)
    print(y)
    print(hm)
    print(vm)
}

plot of chunk printFrequencyTableAndGraph

##        x freq percent
## 1   Male 1074   51.02
## 2 Female 1031   48.98
## [1] 50
## [1] 1.49

plot of chunk printFrequencyTableAndGraph

##     x freq percent
## 1  18    9 0.41341
## 2  19   25 1.14837
## 3  20   41 1.88333
## 4  21   52 2.38861
## 5  22   49 2.25080
## 6  23   40 1.83739
## 7  24   46 2.11300
## 8  25   50 2.29674
## 9  26   56 2.57235
## 10 27   42 1.92926
## 11 28   63 2.89389
## 12 29   47 2.15893
## 13 30   57 2.61828
## 14 31   57 2.61828
## 15 32   52 2.38861
## 16 33   53 2.43454
## 17 34   47 2.15893
## 18 35   63 2.89389
## 19 36   53 2.43454
## 20 37   36 1.65365
## 21 38   51 2.34267
## 22 39   48 2.20487
## 23 40   50 2.29674
## 24 41   39 1.79146
## 25 42   62 2.84796
## 26 43   42 1.92926
## 27 44   41 1.88333
## 28 45   63 2.89389
## 29 46   37 1.69959
## 30 47   51 2.34267
## 31 48   46 2.11300
## 32 49   47 2.15893
## 33 50   43 1.97520
## 34 51   46 2.11300
## 35 52   35 1.60772
## 36 53   36 1.65365
## 37 54   32 1.46991
## 38 55   50 2.29674
## 39 56   36 1.65365
## 40 57   30 1.37804
## 41 58   26 1.19430
## 42 59   24 1.10243
## 43 60   32 1.46991
## 44 61   26 1.19430
## 45 62   27 1.24024
## 46 63   17 0.78089
## 47 64   24 1.10243
## 48 65   25 1.14837
## 49 66   20 0.91870
## 50 67   11 0.50528
## 51 68   13 0.59715
## 52 69   14 0.64309
## 53 70   18 0.82683
## 54 71   10 0.45935
## 55 72   10 0.45935
## 56 73    5 0.22967
## 57 74    4 0.18374
## 58 75    9 0.41341
## 59 76    4 0.18374
## 60 77    4 0.18374
## 61 78    7 0.32154
## 62 79    5 0.22967
## 63 80    4 0.18374
## 64 81    1 0.04593
## 65 82    2 0.09187
## 66 83    2 0.09187
## 67 84    1 0.04593
## 68 85    2 0.09187
## 69 86    2 0.09187
## 70 88    1 0.04593
## 71 89    1 0.04593
## 72 90    1 0.04593
## 73 91    1 0.04593
## 74 92    1 0.04593
## [1] 1.351
## [1] 42.02

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1     Hindu 1931  88.945
## 2  Buddhist  109   5.021
## 3    Muslim   36   1.658
## 4 Christian   24   1.105
## 5    Others   71   3.270
## [1] 20
## [1] 1.247

plot of chunk printFrequencyTableAndGraph

##              x freq percent
## 1     Migrated  724   35.81
## 2 Not Migrated 1298   64.19
## [1] 50
## [1] 1.642

plot of chunk printFrequencyTableAndGraph

##                           x freq percent
## 1                Illiterate  321  15.070
## 2                  Literate  390  18.310
## 3             Primary Level  121   5.681
## 4     Lower Secondary Level  156   7.324
## 5           Secondary Level  361  16.948
## 6    Higher Secondary Level  369  17.324
## 7           Graduate Degree  289  13.568
## 8 Master's Degree or Higher  123   5.775
## [1] 12.5
## [1] 4.279

plot of chunk printFrequencyTableAndGraph

##               x freq percent
## 1       Working  631  31.269
## 2 Self-employed  349  17.294
## 3    Unemployed  303  15.015
## 4       Retired   85   4.212
## 5       Student  177   8.771
## 6    House wife  473  23.439
## [1] 16.67
## [1] 3.122

plot of chunk printFrequencyTableAndGraph

##                                               x freq percent
## 1                                        Farmer  375  35.178
## 2                               Labor (skilled)  110  10.319
## 3                            Laborr (unskilled)   48   4.503
## 4           Executive, Top management, Director   25   2.345
## 5  Professional Lawyer, Doctor, Accountant, etc   37   3.471
## 6                        Professor - University   34   3.189
## 7                              Teacher - School  151  14.165
## 8              Military service/police/security   28   2.627
## 9                                Public Servant   90   8.443
## 10                                        Other  168  15.760
## [1] 10
## [1] 4.689

plot of chunk printFrequencyTableAndGraph

##                                                  x freq percent
## 1                                     Private Firm  591  57.267
## 2                                    Public Sector  170  16.473
## 3 NGOs/Foundations/CBOs/Trade Unions/Civil Society   86   8.333
## 4                                            Other  185  17.926
## [1] 25
## [1] 1.869

plot of chunk printFrequencyTableAndGraph

##         x freq  percent
## 1       0   21  1.70455
## 2       1   10  0.81169
## 3       2    7  0.56818
## 4       3    1  0.08117
## 5     200    7  0.56818
## 6     300    1  0.08117
## 7     400    1  0.08117
## 8     500   13  1.05519
## 9     600    3  0.24351
## 10   1000   23  1.86688
## 11   1100    1  0.08117
## 12   1500   13  1.05519
## 13   1790    1  0.08117
## 14   2000   32  2.59740
## 15   2200    1  0.08117
## 16   2300    1  0.08117
## 17   2500   14  1.13636
## 18   3000   46  3.73377
## 19   3500    3  0.24351
## 20   4000   29  2.35390
## 21   4300    1  0.08117
## 22   4500    3  0.24351
## 23   5000  104  8.44156
## 24   5200    1  0.08117
## 25   5500    1  0.08117
## 26   6000   17  1.37987
## 27   6500    1  0.08117
## 28   6600    1  0.08117
## 29   7000   31  2.51623
## 30   7500    1  0.08117
## 31   8000   41  3.32792
## 32   8500    1  0.08117
## 33   9000   12  0.97403
## 34   9500    1  0.08117
## 35  10000  148 12.01299
## 36  10500    1  0.08117
## 37  10700    1  0.08117
## 38  11000    9  0.73052
## 39  12000   49  3.97727
## 40  13000   13  1.05519
## 41  14000    9  0.73052
## 42  14300    1  0.08117
## 43  15000  130 10.55195
## 44  15875    1  0.08117
## 45  16000   27  2.19156
## 46  16140    1  0.08117
## 47  17000   24  1.94805
## 48  17090    1  0.08117
## 49  17500    1  0.08117
## 50  18000   39  3.16558
## 51  18570    1  0.08117
## 52  18600    2  0.16234
## 53  19000    6  0.48701
## 54  19250    1  0.08117
## 55  20000  111  9.00974
## 56  20224    1  0.08117
## 57  21000    7  0.56818
## 58  22000    6  0.48701
## 59  22180    1  0.08117
## 60  22500    2  0.16234
## 61  23000    3  0.24351
## 62  23875    1  0.08117
## 63  24000    2  0.16234
## 64  24880    1  0.08117
## 65  25000   49  3.97727
## 66  26000    2  0.16234
## 67  27000    1  0.08117
## 68  28000    4  0.32468
## 69  30000   44  3.57143
## 70  31000    1  0.08117
## 71  32000    3  0.24351
## 72  35000   15  1.21753
## 73  35450    1  0.08117
## 74  36000    1  0.08117
## 75  39000    1  0.08117
## 76  40000   17  1.37987
## 77  42000    1  0.08117
## 78  44545    1  0.08117
## 79  45000    4  0.32468
## 80  50000   23  1.86688
## 81  55000    3  0.24351
## 82  60000    4  0.32468
## 83  70000    3  0.24351
## 84  80000    1  0.08117
## 85  85000    1  0.08117
## 86 100000    3  0.24351
## 87 130000    1  0.08117
## 88 200000    1  0.08117
## 89 300000    1  0.08117
## 90 500000    1  0.08117
## 91 600000    1  0.08117
## [1] 1.099
## [1] 15559

plot of chunk printFrequencyTableAndGraph

##     x freq percent
## 1 Yes  831    40.3
## 2  No 1231    59.7
## [1] 50
## [1] 1.597

plot of chunk printFrequencyTableAndGraph

##     x freq percent
## 1 Yes  106   10.03
## 2  No  951   89.97
## [1] 50
## [1] 1.9

plot of chunk printFrequencyTableAndGraph

##     x freq percent
## 1 Yes   12    1.12
## 2  No 1059   98.88
## [1] 50
## [1] 1.989

plot of chunk printFrequencyTableAndGraph

##     x freq percent
## 1 Yes   46   4.488
## 2  No  979  95.512
## [1] 50
## [1] 1.955

plot of chunk printFrequencyTableAndGraph

##     x freq percent
## 1 Yes   74   7.008
## 2  No  982  92.992
## [1] 50
## [1] 1.93

plot of chunk printFrequencyTableAndGraph

##     x freq percent
## 1 Yes   69    6.29
## 2  No 1028   93.71
## [1] 50
## [1] 1.937

plot of chunk printFrequencyTableAndGraph

##     x freq percent
## 1 Yes  405   35.25
## 2  No  744   64.75
## [1] 50
## [1] 1.648

plot of chunk printFrequencyTableAndGraph

##     x freq percent
## 1 Yes   96   8.881
## 2  No  985  91.119
## [1] 50
## [1] 1.911

plot of chunk printFrequencyTableAndGraph

##     x freq percent
## 1 Yes   36   3.355
## 2  No 1037  96.645
## [1] 50
## [1] 1.966

plot of chunk printFrequencyTableAndGraph

##     x freq percent
## 1 Yes    4  0.3742
## 2  No 1065 99.6258
## [1] 50
## [1] 1.996

plot of chunk printFrequencyTableAndGraph

##     x freq percent
## 1 Yes   97   8.891
## 2  No  994  91.109
## [1] 50
## [1] 1.911

plot of chunk printFrequencyTableAndGraph

##     x freq percent
## 1 Yes   37   3.435
## 2  No 1040  96.565
## [1] 50
## [1] 1.966

plot of chunk printFrequencyTableAndGraph

##     x freq percent
## 1 Yes  289   26.86
## 2  No  787   73.14
## [1] 50
## [1] 1.731

plot of chunk printFrequencyTableAndGraph

##                      x freq percent
## 1 Not religious at all   11  0.5032
## 2        Not religious   71  3.2479
## 3              Neutral  306 13.9982
## 4            Religious  431 19.7164
## 5       Very Religious 1320 60.3843
## 6           Dontt know   47  2.1500
## [1] 16.67
## [1] 4.427

plot of chunk printFrequencyTableAndGraph

##                    x freq percent
## 1  Very Dissatisfied   84   4.110
## 2     2 Dissatisfied   43   2.104
## 3     3 Dissatisfied  134   6.556
## 4     4 Dissatisfied  330  16.145
## 5      5 Neutral -ve  454  22.211
## 6      6 Neutral +ve  283  13.845
## 7        7 Satisfied  273  13.356
## 8        8 Satisfied  160   7.828
## 9        9 Satisfied  114   5.577
## 10    Very Satisfied  169   8.268
## [1] 10
## [1] 5.757

plot of chunk printFrequencyTableAndGraph

##                    x freq percent
## 1  Very Dissatisfied   59   2.902
## 2                  2   39   1.918
## 3                  3  129   6.345
## 4                  4  240  11.805
## 5                  5  444  21.840
## 6                  6  348  17.118
## 7                  7  271  13.330
## 8                  8  238  11.707
## 9                  9  101   4.968
## 10    Very Satisfied  164   8.067
## [1] 10
## [1] 5.972

plot of chunk printFrequencyTableAndGraph

##            x freq percent
## 1   Very Bad  177   8.828
## 2          2   79   3.940
## 3          3  139   6.933
## 4          4  256  12.768
## 5          5  425  21.197
## 6          6  324  16.160
## 7          7  281  14.015
## 8          8  180   8.978
## 9          9   49   2.444
## 10 Very Good   95   4.738
## [1] 10
## [1] 5.308

plot of chunk printFrequencyTableAndGraph

##            x freq percent
## 1   Very Bad   51   2.707
## 2          2   62   3.291
## 3          3   91   4.830
## 4          4  174   9.236
## 5          5  317  16.826
## 6          6  253  13.429
## 7          7  263  13.960
## 8          8  299  15.870
## 9          9  231  12.261
## 10 Very Good  143   7.590
## [1] 10
## [1] 6.364

plot of chunk printFrequencyTableAndGraph

##     x freq percent
## 1   1  123   5.645
## 2   2  101   4.635
## 3   3  203   9.316
## 4   4  250  11.473
## 5   5  415  19.045
## 6   6  356  16.338
## 7   7  285  13.079
## 8   8  130   5.966
## 9   9   73   3.350
## 10 10   84   3.855
## 11 99  159   7.297
## [1] 9.091
## [1] 12.12

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  463   21.35
## 2    Quite Disagree  736   33.93
## 3      Partly Agree  716   33.01
## 4    Strongly Agree  254   11.71
## [1] 25
## [1] 2.351

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  251   12.33
## 2    Quite Disagree  782   38.43
## 3      Partly Agree  816   40.10
## 4    Strongly Agree  186    9.14
## [1] 25
## [1] 2.46

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  807  37.622
## 2    Quite Disagree  656  30.583
## 3      Partly Agree  468  21.818
## 4    Strongly Agree  214   9.977
## [1] 25
## [1] 2.041

plot of chunk printFrequencyTableAndGraph

##                            x freq percent
## 1     None at all confidence  194  10.221
## 2   Not very much confidence  589  31.033
## 3  Quite a lot of confidence  991  52.213
## 4 A great deal of confidence  124   6.533
## [1] 25
## [1] 2.551

plot of chunk printFrequencyTableAndGraph

##                            x freq percent
## 1     None at all confidence  147   7.605
## 2   Not very much confidence  618  31.971
## 3  Quite a lot of confidence 1009  52.199
## 4 A great deal of confidence  159   8.226
## [1] 25
## [1] 2.61

plot of chunk printFrequencyTableAndGraph

##                            x freq percent
## 1     None at all confidence   71   3.613
## 2   Not very much confidence  524  26.667
## 3  Quite a lot of confidence 1140  58.015
## 4 A great deal of confidence  230  11.705
## [1] 25
## [1] 2.778

plot of chunk printFrequencyTableAndGraph

##                            x freq percent
## 1     None at all confidence  472  23.171
## 2   Not very much confidence  766  37.604
## 3  Quite a lot of confidence  679  33.333
## 4 A great deal of confidence  120   5.891
## [1] 25
## [1] 2.219

plot of chunk printFrequencyTableAndGraph

##                            x freq percent
## 1     None at all confidence   70   3.702
## 2   Not very much confidence  383  20.254
## 3  Quite a lot of confidence 1004  53.094
## 4 A great deal of confidence  434  22.951
## [1] 25
## [1] 2.953

plot of chunk printFrequencyTableAndGraph

##                            x freq percent
## 1     None at all confidence   60   2.993
## 2   Not very much confidence  365  18.204
## 3  Quite a lot of confidence 1092  54.464
## 4 A great deal of confidence  488  24.339
## [1] 25
## [1] 3.001

plot of chunk printFrequencyTableAndGraph

##                            x freq percent
## 1     None at all confidence  106   5.199
## 2   Not very much confidence  492  24.129
## 3  Quite a lot of confidence 1067  52.330
## 4 A great deal of confidence  374  18.342
## [1] 25
## [1] 2.838

plot of chunk printFrequencyTableAndGraph

##                            x freq percent
## 1     None at all confidence   61   2.903
## 2   Not very much confidence  391  18.610
## 3  Quite a lot of confidence 1109  52.784
## 4 A great deal of confidence  540  25.702
## [1] 25
## [1] 3.013

plot of chunk printFrequencyTableAndGraph

##                            x freq percent
## 1     None at all confidence  114   6.038
## 2   Not very much confidence  669  35.434
## 3  Quite a lot of confidence  913  48.358
## 4 A great deal of confidence  192  10.169
## [1] 25
## [1] 2.627

plot of chunk printFrequencyTableAndGraph

##                            x freq percent
## 1     None at all confidence  167   9.592
## 2   Not very much confidence  596  34.233
## 3  Quite a lot of confidence  810  46.525
## 4 A great deal of confidence  168   9.650
## [1] 25
## [1] 2.562

plot of chunk printFrequencyTableAndGraph

##                            x freq percent
## 1     None at all confidence  132   7.517
## 2   Not very much confidence  428  24.374
## 3  Quite a lot of confidence  882  50.228
## 4 A great deal of confidence  314  17.882
## [1] 25
## [1] 2.785

plot of chunk printFrequencyTableAndGraph

##                            x freq percent
## 1     None at all confidence   35   1.684
## 2   Not very much confidence  374  17.989
## 3  Quite a lot of confidence 1279  61.520
## 4 A great deal of confidence  391  18.807
## [1] 25
## [1] 2.975

plot of chunk printFrequencyTableAndGraph

##                            x freq percent
## 1     None at all confidence   40   1.929
## 2   Not very much confidence  399  19.238
## 3  Quite a lot of confidence 1334  64.320
## 4 A great deal of confidence  301  14.513
## [1] 25
## [1] 2.914

plot of chunk printFrequencyTableAndGraph

##                            x freq percent
## 1     None at all confidence   69   3.305
## 2   Not very much confidence  341  16.331
## 3  Quite a lot of confidence 1347  64.511
## 4 A great deal of confidence  331  15.852
## [1] 25
## [1] 2.929

plot of chunk printFrequencyTableAndGraph

##                            x freq percent
## 1     None at all confidence   27   1.301
## 2   Not very much confidence  227  10.934
## 3  Quite a lot of confidence 1135  54.672
## 4 A great deal of confidence  687  33.092
## [1] 25
## [1] 3.196

plot of chunk printFrequencyTableAndGraph

##                            x freq percent
## 1     None at all confidence   25   1.272
## 2   Not very much confidence  198  10.076
## 3  Quite a lot of confidence 1039  52.875
## 4 A great deal of confidence  703  35.776
## [1] 25
## [1] 3.232

plot of chunk printFrequencyTableAndGraph

##                            x freq percent
## 1     None at all confidence   42   1.979
## 2   Not very much confidence  286  13.478
## 3  Quite a lot of confidence 1045  49.246
## 4 A great deal of confidence  749  35.297
## [1] 25
## [1] 3.179

plot of chunk printFrequencyTableAndGraph

##                            x freq percent
## 1     None at all confidence   20  0.9737
## 2   Not very much confidence  202  9.8345
## 3  Quite a lot of confidence 1097 53.4080
## 4 A great deal of confidence  735 35.7838
## [1] 25
## [1] 3.24

plot of chunk printFrequencyTableAndGraph

##                            x freq percent
## 1     None at all confidence   94   5.131
## 2   Not very much confidence  345  18.832
## 3  Quite a lot of confidence  817  44.596
## 4 A great deal of confidence  576  31.441
## [1] 25
## [1] 3.023

plot of chunk printFrequencyTableAndGraph

##                            x freq percent
## 1     None at all confidence    6   5.217
## 2   Not very much confidence   33  28.696
## 3  Quite a lot of confidence   47  40.870
## 4 A great deal of confidence   29  25.217
## [1] 25
## [1] 2.861

plot of chunk printFrequencyTableAndGraph

##                                           x freq percent
## 1                Most people can be trusted  315   16.79
## 2 Need to be careful in dealing with people 1561   83.21
## [1] 50
## [1] 1.832

plot of chunk printFrequencyTableAndGraph

##                          x freq  percent
## 1               Good/Great   48  2.34489
## 2                   Honest  252 12.31070
## 3                  Liberal    4  0.19541
## 4  Laborious / Industrious  170  8.30484
## 5                Efficient   19  0.92819
## 6              Responsible    7  0.34196
## 7          Power deligator    1  0.04885
## 8              Accountable    9  0.43967
## 9                  Neutral    4  0.19541
## 10      Rich / Independent   11  0.53737
## 11               Religious   23  1.12360
## 12              Benevolent    5  0.24426
## 13    Idealastic / ethical   47  2.29604
## 14              Leadership    5  0.24426
## 15                 Justice    4  0.19541
## 16     Educated / Academic  110  5.37372
## 17       Relative / Friend  173  8.45139
## 18             Transparent   20  0.97704
## 19                 Logical    6  0.29311
## 20               Behaviour  490 23.93747
## 21               Practical   29  1.41671
## 22        Known / Familiar  129  6.30191
## 23         Corruption Free    8  0.39082
## 24                Kindness   53  2.58915
## 25      Creative / Genuine    2  0.09770
## 26        Service Delivery   13  0.63508
## 27                  Social   43  2.10064
## 28   Helpful / Cooperative   52  2.54030
## 29     Constitutional Body   16  0.78163
## 30          Troubleshooter    1  0.04885
## 31                 Popular   23  1.12360
## 32            Truthfulness  197  9.62384
## 33                   Other   73  3.56619
## [1] 3.03
## [1] 19.27

plot of chunk printFrequencyTableAndGraph

##                          x freq percent
## 1               Good/Great   49  2.5654
## 2                   Honest  165  8.6387
## 3                  Liberal    4  0.2094
## 4  Laborious / Industrious  144  7.5393
## 5                Efficient   38  1.9895
## 6              Responsible   20  1.0471
## 7              Accountable    8  0.4188
## 8                  Neutral    6  0.3141
## 9       Rich / Independent   20  1.0471
## 10               Religious   24  1.2565
## 11              Benevolent   13  0.6806
## 12    Idealastic / ethical   67  3.5079
## 13                 Justice    3  0.1571
## 14     Educated / Academic   59  3.0890
## 15       Relative / Friend  102  5.3403
## 16             Transparent   14  0.7330
## 17                 Logical    5  0.2618
## 18               Behaviour  414 21.6754
## 19               Practical   44  2.3037
## 20        Known / Familiar  107  5.6021
## 21         Corruption Free    4  0.2094
## 22                Kindness   51  2.6702
## 23      Creative / Genuine    5  0.2618
## 24        Service Delivery   23  1.2042
## 25                  Social   33  1.7277
## 26   Helpful / Cooperative  100  5.2356
## 27     Constitutional Body    7  0.3665
## 28          Troubleshooter    4  0.2094
## 29                 Popular   29  1.5183
## 30            Truthfulness  169  8.8482
## 31                   Other  179  9.3717
## [1] 3.226
## [1] 20.77

plot of chunk printFrequencyTableAndGraph

##                          x freq  percent
## 1               Good/Great   47  3.20163
## 2                   Honest  145  9.87738
## 3                  Liberal   10  0.68120
## 4  Laborious / Industrious  113  7.69755
## 5                Efficient   54  3.67847
## 6              Responsible   12  0.81744
## 7          Power deligator    3  0.20436
## 8              Accountable   11  0.74932
## 9                  Neutral    6  0.40872
## 10      Rich / Independent   17  1.15804
## 11               Patriotic    1  0.06812
## 12               Religious   26  1.77112
## 13              Benevolent   20  1.36240
## 14    Idealastic / ethical   51  3.47411
## 15              Leadership    1  0.06812
## 16                 Justice    3  0.20436
## 17     Educated / Academic   84  5.72207
## 18       Relative / Friend   93  6.33515
## 19             Transparent    9  0.61308
## 20                 Logical    4  0.27248
## 21               Behaviour  228 15.53134
## 22               Practical   37  2.52044
## 23        Known / Familiar   52  3.54223
## 24         Corruption Free    9  0.61308
## 25                Kindness   41  2.79292
## 26      Creative / Genuine    4  0.27248
## 27        Service Delivery   28  1.90736
## 28                Security    6  0.40872
## 29                  Social   27  1.83924
## 30   Helpful / Cooperative   87  5.92643
## 31     Constitutional Body    9  0.61308
## 32          Troubleshooter    2  0.13624
## 33                 Popular   13  0.88556
## 34            Truthfulness   75  5.10899
## 35                   Other  140  9.53678
## [1] 2.857
## [1] 19.32

plot of chunk printFrequencyTableAndGraph

##                          x freq percent
## 1               Good/Great   16  2.9795
## 2                   Honest   48  8.9385
## 3                  Liberal   10  1.8622
## 4  Laborious / Industrious   32  5.9590
## 5                Efficient   21  3.9106
## 6              Responsible    3  0.5587
## 7          Power deligator    2  0.3724
## 8              Accountable    5  0.9311
## 9                  Neutral    3  0.5587
## 10      Rich / Independent    6  1.1173
## 11               Patriotic    1  0.1862
## 12               Religious    4  0.7449
## 13              Benevolent    8  1.4898
## 14    Idealastic / ethical   18  3.3520
## 15              Leadership    5  0.9311
## 16                 Justice    3  0.5587
## 17     Educated / Academic   34  6.3315
## 18       Relative / Friend   41  7.6350
## 19             Transparent    5  0.9311
## 20                 Logical    2  0.3724
## 21               Behaviour   70 13.0354
## 22               Practical   12  2.2346
## 23        Known / Familiar   24  4.4693
## 24         Corruption Free    9  1.6760
## 25                Kindness    9  1.6760
## 26      Creative / Genuine    3  0.5587
## 27        Service Delivery   12  2.2346
## 28                Security    4  0.7449
## 29                  Social    8  1.4898
## 30   Helpful / Cooperative   25  4.6555
## 31     Constitutional Body    3  0.5587
## 32          Troubleshooter    3  0.5587
## 33                 Popular    2  0.3724
## 34            Truthfulness   28  5.2142
## 35                   Other   58 10.8007
## [1] 2.857
## [1] 19.59

plot of chunk printFrequencyTableAndGraph

##                          x freq percent
## 1               Good/Great    9  4.7368
## 2                   Honest   13  6.8421
## 3                  Liberal    2  1.0526
## 4  Laborious / Industrious    9  4.7368
## 5                Efficient    4  2.1053
## 6              Responsible    7  3.6842
## 7              Accountable    5  2.6316
## 8                  Neutral    5  2.6316
## 9       Rich / Independent    3  1.5789
## 10               Patriotic    1  0.5263
## 11               Religious    4  2.1053
## 12              Benevolent    3  1.5789
## 13              Leadership    2  1.0526
## 14                 Justice    1  0.5263
## 15     Educated / Academic    7  3.6842
## 16       Relative / Friend   12  6.3158
## 17             Transparent    4  2.1053
## 18               Behaviour   15  7.8947
## 19               Practical    9  4.7368
## 20        Known / Familiar    5  2.6316
## 21         Corruption Free    5  2.6316
## 22                Kindness    4  2.1053
## 23        Service Delivery    9  4.7368
## 24                Security    2  1.0526
## 25                  Social    3  1.5789
## 26   Helpful / Cooperative   12  6.3158
## 27     Constitutional Body    2  1.0526
## 28                 Popular    4  2.1053
## 29            Truthfulness    7  3.6842
## 30                   Other   22 11.5789
## [1] 3.333
## [1] 19.97

plot of chunk printFrequencyTableAndGraph

##                          x freq  percent
## 1               Good/Great    8  0.42194
## 2                   Honest   79  4.16667
## 3                  Liberal    4  0.21097
## 4  Laborious / Industrious  283 14.92616
## 5                Efficient   99  5.22152
## 6              Responsible   18  0.94937
## 7          Power deligator   10  0.52743
## 8              Accountable   82  4.32489
## 9                  Neutral   41  2.16245
## 10      Rich / Independent    5  0.26371
## 11               Patriotic   17  0.89662
## 12               Religious    1  0.05274
## 13              Benevolent   18  0.94937
## 14    Idealastic / ethical   50  2.63713
## 15              Leadership   15  0.79114
## 16                 Justice   69  3.63924
## 17     Educated / Academic    7  0.36920
## 18       Relative / Friend   19  1.00211
## 19             Transparent  106  5.59072
## 20               Behaviour   55  2.90084
## 21               Practical   14  0.73840
## 22        Known / Familiar    6  0.31646
## 23         Corruption Free   66  3.48101
## 24                Kindness    3  0.15823
## 25      Creative / Genuine    1  0.05274
## 26        Service Delivery  416 21.94093
## 27                Security  100  5.27426
## 28                  Social    8  0.42194
## 29   Helpful / Cooperative   77  4.06118
## 30     Constitutional Body   48  2.53165
## 31          Troubleshooter   27  1.42405
## 32                 Popular   20  1.05485
## 33            Truthfulness   29  1.52954
## 34                   Other   95  5.01055
## [1] 2.941
## [1] 19.55

plot of chunk printFrequencyTableAndGraph

##                          x freq  percent
## 1               Good/Great    5  0.29780
## 2                   Honest   97  5.77725
## 3                  Liberal    7  0.41691
## 4  Laborious / Industrious  135  8.04050
## 5                Efficient   92  5.47945
## 6              Responsible   18  1.07207
## 7          Power deligator    7  0.41691
## 8              Accountable   62  3.69267
## 9                  Neutral   35  2.08457
## 10      Rich / Independent    7  0.41691
## 11               Patriotic   10  0.59559
## 12               Religious    1  0.05956
## 13              Benevolent   15  0.89339
## 14    Idealastic / ethical   68  4.05003
## 15              Leadership   18  1.07207
## 16                 Justice   61  3.63311
## 17     Educated / Academic    9  0.53603
## 18       Relative / Friend   10  0.59559
## 19             Transparent   76  4.52650
## 20                 Logical    1  0.05956
## 21               Behaviour   89  5.30077
## 22               Practical   15  0.89339
## 23        Known / Familiar   13  0.77427
## 24         Corruption Free   60  3.57356
## 25                Kindness   10  0.59559
## 26      Creative / Genuine    5  0.29780
## 27        Service Delivery  294 17.51042
## 28                Security   75  4.46694
## 29                  Social   12  0.71471
## 30   Helpful / Cooperative   84  5.00298
## 31     Constitutional Body   31  1.84634
## 32          Troubleshooter   24  1.42942
## 33                 Popular   13  0.77427
## 34            Truthfulness   50  2.97796
## 35                   Other  170 10.12507
## [1] 2.857
## [1] 21.01

plot of chunk printFrequencyTableAndGraph

##                          x freq percent
## 1               Good/Great    7  0.5102
## 2                   Honest   72  5.2478
## 3                  Liberal    7  0.5102
## 4  Laborious / Industrious   77  5.6122
## 5                Efficient   72  5.2478
## 6              Responsible   22  1.6035
## 7          Power deligator    9  0.6560
## 8              Accountable   64  4.6647
## 9                  Neutral   46  3.3528
## 10      Rich / Independent   11  0.8017
## 11               Patriotic    7  0.5102
## 12               Religious    2  0.1458
## 13              Benevolent   16  1.1662
## 14    Idealastic / ethical   46  3.3528
## 15              Leadership   15  1.0933
## 16                 Justice   39  2.8426
## 17     Educated / Academic    3  0.2187
## 18       Relative / Friend   14  1.0204
## 19             Transparent   65  4.7376
## 20                 Logical    2  0.1458
## 21               Behaviour   47  3.4257
## 22               Practical   20  1.4577
## 23        Known / Familiar    8  0.5831
## 24         Corruption Free   54  3.9359
## 25                Kindness    6  0.4373
## 26      Creative / Genuine    4  0.2915
## 27        Service Delivery  246 17.9300
## 28                Security   79  5.7580
## 29                  Social   21  1.5306
## 30   Helpful / Cooperative   72  5.2478
## 31     Constitutional Body   17  1.2391
## 32          Troubleshooter   14  1.0204
## 33                 Popular   16  1.1662
## 34            Truthfulness   42  3.0612
## 35                   Other  130  9.4752
## [1] 2.857
## [1] 21.2

plot of chunk printFrequencyTableAndGraph

##                          x freq percent
## 1               Good/Great    9  0.9956
## 2                   Honest   34  3.7611
## 3                  Liberal   11  1.2168
## 4  Laborious / Industrious   45  4.9779
## 5                Efficient   40  4.4248
## 6              Responsible   14  1.5487
## 7          Power deligator    9  0.9956
## 8              Accountable   50  5.5310
## 9                  Neutral   40  4.4248
## 10      Rich / Independent    3  0.3319
## 11               Patriotic    7  0.7743
## 12               Religious    2  0.2212
## 13              Benevolent   16  1.7699
## 14    Idealastic / ethical   33  3.6504
## 15              Leadership   13  1.4381
## 16                 Justice   37  4.0929
## 17     Educated / Academic   19  2.1018
## 18       Relative / Friend   11  1.2168
## 19             Transparent   41  4.5354
## 20                 Logical    2  0.2212
## 21               Behaviour   36  3.9823
## 22               Practical   16  1.7699
## 23        Known / Familiar   10  1.1062
## 24         Corruption Free   45  4.9779
## 25                Kindness    7  0.7743
## 26      Creative / Genuine    2  0.2212
## 27        Service Delivery  138 15.2655
## 28                Security   51  5.6416
## 29                  Social   13  1.4381
## 30   Helpful / Cooperative   44  4.8673
## 31     Constitutional Body   18  1.9912
## 32          Troubleshooter    9  0.9956
## 33                 Popular   14  1.5487
## 34            Truthfulness   16  1.7699
## 35                   Other   49  5.4204
## [1] 2.857
## [1] 20.23

plot of chunk printFrequencyTableAndGraph

##                          x freq percent
## 1               Good/Great    1  0.1721
## 2                   Honest   14  2.4096
## 3                  Liberal   13  2.2375
## 4  Laborious / Industrious   27  4.6472
## 5                Efficient   30  5.1635
## 6              Responsible   25  4.3029
## 7          Power deligator    2  0.3442
## 8              Accountable   31  5.3356
## 9                  Neutral   31  5.3356
## 10      Rich / Independent    5  0.8606
## 11               Patriotic    5  0.8606
## 12              Benevolent   11  1.8933
## 13    Idealastic / ethical   13  2.2375
## 14              Leadership   13  2.2375
## 15                 Justice   19  3.2702
## 16     Educated / Academic   11  1.8933
## 17       Relative / Friend    7  1.2048
## 18             Transparent   23  3.9587
## 19               Behaviour   16  2.7539
## 20               Practical    7  1.2048
## 21        Known / Familiar    4  0.6885
## 22         Corruption Free   15  2.5818
## 23                Kindness    4  0.6885
## 24      Creative / Genuine    1  0.1721
## 25        Service Delivery  108 18.5886
## 26                Security   23  3.9587
## 27                  Social    7  1.2048
## 28   Helpful / Cooperative   39  6.7126
## 29     Constitutional Body    6  1.0327
## 30          Troubleshooter    9  1.5491
## 31                 Popular   14  2.4096
## 32            Truthfulness    9  1.5491
## 33                   Other   38  6.5404
## [1] 3.03
## [1] 20.4

plot of chunk printFrequencyTableAndGraph

##                                   x freq percent
## 1                     Very Negative   38   1.899
## 2                          Negative  156   7.796
## 3 Not negative, not positive either  895  44.728
## 4                          Positive  851  42.529
## 5                     Very Positive   61   3.048
## [1] 20
## [1] 3.37

plot of chunk printFrequencyTableAndGraph

##                                   x freq percent
## 1                     Very Negative  175   8.711
## 2                          Negative  519  25.834
## 3 Not negative, not positive either  743  36.984
## 4                          Positive  541  26.929
## 5                     Very Positive   31   1.543
## [1] 20
## [1] 2.868

plot of chunk printFrequencyTableAndGraph

##                                   x freq percent
## 1                     Very Negative  121   5.806
## 2                          Negative  406  19.482
## 3 Not negative, not positive either  811  38.916
## 4                          Positive  696  33.397
## 5                     Very Positive   50   2.399
## [1] 20
## [1] 3.071

plot of chunk printFrequencyTableAndGraph

##                                   x freq percent
## 1                     Very Negative   57   2.766
## 2                          Negative  244  11.839
## 3 Not negative, not positive either  848  41.145
## 4                          Positive  837  40.611
## 5                     Very Positive   75   3.639
## [1] 20
## [1] 3.305

plot of chunk printFrequencyTableAndGraph

##                                   x freq percent
## 1                     Very Negative   60   2.784
## 2                          Negative  240  11.137
## 3 Not negative, not positive either  726  33.689
## 4                          Positive 1009  46.821
## 5                     Very Positive  120   5.568
## [1] 20
## [1] 3.413

plot of chunk printFrequencyTableAndGraph

##                                   x freq percent
## 1                     Very Negative   40   1.949
## 2                          Negative  134   6.530
## 3 Not negative, not positive either  629  30.653
## 4                          Positive 1081  52.680
## 5                     Very Positive  168   8.187
## [1] 20
## [1] 3.586

plot of chunk printFrequencyTableAndGraph

##                                   x freq percent
## 1                     Very Negative   55   2.736
## 2                          Negative  191   9.502
## 3 Not negative, not positive either  737  36.667
## 4                          Positive  865  43.035
## 5                     Very Positive  162   8.060
## [1] 20
## [1] 3.442

plot of chunk printFrequencyTableAndGraph

##                                   x freq percent
## 1                     Very Negative   17  0.7867
## 2                          Negative   81  3.7483
## 3 Not negative, not positive either  418 19.3429
## 4                          Positive 1262 58.3989
## 5                     Very Positive  383 17.7233
## [1] 20
## [1] 3.885

plot of chunk printFrequencyTableAndGraph

##                                   x freq percent
## 1                     Very Negative   10  0.4636
## 2                          Negative   75  3.4771
## 3 Not negative, not positive either  433 20.0742
## 4                          Positive 1314 60.9179
## 5                     Very Positive  325 15.0672
## [1] 20
## [1] 3.866

plot of chunk printFrequencyTableAndGraph

##                                   x freq percent
## 1                     Very Negative   21  0.9878
## 2                          Negative  112  5.2681
## 3 Not negative, not positive either  606 28.5042
## 4                          Positive 1057 49.7178
## 5                     Very Positive  330 15.5221
## [1] 20
## [1] 3.735

plot of chunk printFrequencyTableAndGraph

##                                   x freq percent
## 1                     Very Negative   20  0.9709
## 2                          Negative   90  4.3689
## 3 Not negative, not positive either  605 29.3689
## 4                          Positive 1050 50.9709
## 5                     Very Positive  295 14.3204
## [1] 20
## [1] 3.733

plot of chunk printFrequencyTableAndGraph

##                                   x freq percent
## 1                     Very Negative   50   2.619
## 2                          Negative  211  11.053
## 3 Not negative, not positive either  817  42.797
## 4                          Positive  694  36.354
## 5                     Very Positive  137   7.177
## [1] 20
## [1] 3.344

plot of chunk printFrequencyTableAndGraph

##                                   x freq percent
## 1                     Very Negative   49   2.485
## 2                          Negative  172   8.722
## 3 Not negative, not positive either  802  40.669
## 4                          Positive  781  39.604
## 5                     Very Positive  168   8.519
## [1] 20
## [1] 3.43

plot of chunk printFrequencyTableAndGraph

##                                   x freq percent
## 1                     Very Negative   81   3.863
## 2                          Negative  359  17.120
## 3 Not negative, not positive either  941  44.874
## 4                          Positive  609  29.041
## 5                     Very Positive  107   5.103
## [1] 20
## [1] 3.144

plot of chunk printFrequencyTableAndGraph

##                                   x freq percent
## 1                     Very Negative   20  0.9497
## 2                          Negative  118  5.6030
## 3 Not negative, not positive either  643 30.5318
## 4                          Positive 1108 52.6116
## 5                     Very Positive  217 10.3039
## [1] 20
## [1] 3.657

plot of chunk printFrequencyTableAndGraph

##                                   x freq percent
## 1                     Very Negative   12  0.5897
## 2                          Negative   97  4.7666
## 3 Not negative, not positive either  590 28.9926
## 4                          Positive 1082 53.1695
## 5                     Very Positive  254 12.4816
## [1] 20
## [1] 3.722

plot of chunk printFrequencyTableAndGraph

##                                   x freq percent
## 1                     Very Negative   27   1.415
## 2                          Negative  147   7.704
## 3 Not negative, not positive either  809  42.400
## 4                          Positive  811  42.505
## 5                     Very Positive  114   5.975
## [1] 20
## [1] 3.439

plot of chunk printFrequencyTableAndGraph

##                                   x freq percent
## 1                     Very Negative   24   1.178
## 2                          Negative  142   6.971
## 3 Not negative, not positive either  774  37.997
## 4                          Positive  882  43.299
## 5                     Very Positive  215  10.555
## [1] 20
## [1] 3.551

plot of chunk printFrequencyTableAndGraph

##                                   x freq percent
## 1                     Very Negative   19  0.9228
## 2                          Negative   96  4.6625
## 3 Not negative, not positive either  673 32.6858
## 4                          Positive 1038 50.4128
## 5                     Very Positive  233 11.3162
## [1] 20
## [1] 3.665

plot of chunk printFrequencyTableAndGraph

##                                   x freq percent
## 1                          Negative    9   5.769
## 2 Not negative, not positive either   60  38.462
## 3                          Positive   62  39.744
## 4                     Very Positive   25  16.026
## [1] 25
## [1] 3.66

plot of chunk printFrequencyTableAndGraph

##                 x freq percent
## 1 Notat all proud   27   1.251
## 2  Not very proud  105   4.866
## 3     Quite proud  717  33.225
## 4      Very proud 1309  60.658
## [1] 25
## [1] 3.533

plot of chunk printFrequencyTableAndGraph

##                 x freq percent
## 1 Notat all proud  315   15.89
## 2  Not very proud  438   22.09
## 3     Quite proud  658   33.18
## 4      Very proud  572   28.85
## [1] 25
## [1] 2.75

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  270  13.307
## 2    Quite Disagree  904  44.554
## 3      Partly Agree  776  38.245
## 4    Strongly Agree   79   3.894
## [1] 25
## [1] 2.327

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  100    4.90
## 2    Quite Disagree  507   24.84
## 3      Partly Agree  932   45.66
## 4    Strongly Agree  502   24.60
## [1] 25
## [1] 2.9

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree   88    4.19
## 2    Quite Disagree  394   18.76
## 3      Partly Agree 1040   49.52
## 4    Strongly Agree  578   27.52
## [1] 25
## [1] 3.004

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  181   9.009
## 2    Quite Disagree  999  49.726
## 3      Partly Agree  667  33.201
## 4    Strongly Agree  162   8.064
## [1] 25
## [1] 2.403

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree   99   4.943
## 2    Quite Disagree  675  33.699
## 3      Partly Agree  958  47.828
## 4    Strongly Agree  271  13.530
## [1] 25
## [1] 2.699

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  211  10.193
## 2    Quite Disagree  975  47.101
## 3      Partly Agree  722  34.879
## 4    Strongly Agree  162   7.826
## [1] 25
## [1] 2.403

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  106   5.057
## 2    Quite Disagree  613  29.246
## 3      Partly Agree  954  45.515
## 4    Strongly Agree  423  20.181
## [1] 25
## [1] 2.808

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  285  14.379
## 2    Quite Disagree 1008  50.858
## 3      Partly Agree  541  27.296
## 4    Strongly Agree  148   7.467
## [1] 25
## [1] 2.279

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  401  19.372
## 2    Quite Disagree 1051  50.773
## 3      Partly Agree  451  21.787
## 4    Strongly Agree  167   8.068
## [1] 25
## [1] 2.186

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  117   6.028
## 2    Quite Disagree  654  33.694
## 3      Partly Agree  888  45.750
## 4    Strongly Agree  282  14.529
## [1] 25
## [1] 2.688

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree   82   3.961
## 2    Quite Disagree  418  20.193
## 3      Partly Agree 1015  49.034
## 4    Strongly Agree  555  26.812
## [1] 25
## [1] 2.987

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  221  11.380
## 2    Quite Disagree  887  45.675
## 3      Partly Agree  647  33.316
## 4    Strongly Agree  187   9.629
## [1] 25
## [1] 2.412

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  309   15.57
## 2    Quite Disagree  995   50.15
## 3      Partly Agree  531   26.76
## 4    Strongly Agree  149    7.51
## [1] 25
## [1] 2.262

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  234  12.031
## 2    Quite Disagree  813  41.799
## 3      Partly Agree  748  38.458
## 4    Strongly Agree  150   7.712
## [1] 25
## [1] 2.419

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  412   20.32
## 2    Quite Disagree  979   48.27
## 3      Partly Agree  477   23.52
## 4    Strongly Agree  160    7.89
## [1] 25
## [1] 2.19

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  107    5.64
## 2    Quite Disagree  259   13.65
## 3      Partly Agree 1125   59.30
## 4    Strongly Agree  406   21.40
## [1] 25
## [1] 2.965

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  295   16.99
## 2    Quite Disagree  459   26.44
## 3      Partly Agree  677   39.00
## 4    Strongly Agree  305   17.57
## [1] 25
## [1] 2.571

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  395   22.64
## 2    Quite Disagree  460   26.36
## 3      Partly Agree  631   36.16
## 4    Strongly Agree  259   14.84
## [1] 25
## [1] 2.432

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  636  43.562
## 2    Quite Disagree  375  25.685
## 3      Partly Agree  342  23.425
## 4    Strongly Agree  107   7.329
## [1] 25
## [1] 1.945

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  972  51.592
## 2    Quite Disagree  408  21.656
## 3      Partly Agree  326  17.304
## 4    Strongly Agree  178   9.448
## [1] 25
## [1] 1.846

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  618   33.01
## 2    Quite Disagree  427   22.81
## 3      Partly Agree  514   27.46
## 4    Strongly Agree  313   16.72
## [1] 25
## [1] 2.279

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  733   37.61
## 2    Quite Disagree  411   21.09
## 3      Partly Agree  579   29.71
## 4    Strongly Agree  226   11.60
## [1] 25
## [1] 2.153

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  263   12.24
## 2    Quite Disagree  511   23.78
## 3      Partly Agree  845   39.32
## 4    Strongly Agree  530   24.66
## [1] 25
## [1] 2.764

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  504   24.95
## 2    Quite Disagree  681   33.71
## 3      Partly Agree  616   30.50
## 4    Strongly Agree  219   10.84
## [1] 25
## [1] 2.272

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree   87    4.10
## 2    Quite Disagree  308   14.51
## 3      Partly Agree  966   45.52
## 4    Strongly Agree  761   35.86
## [1] 25
## [1] 3.131

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree   56   2.653
## 2    Quite Disagree  458  21.696
## 3      Partly Agree  915  43.344
## 4    Strongly Agree  682  32.307
## [1] 25
## [1] 3.053

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  303  15.007
## 2    Quite Disagree  990  49.034
## 3      Partly Agree  559  27.687
## 4    Strongly Agree  167   8.271
## [1] 25
## [1] 2.292

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree   74   3.505
## 2    Quite Disagree  356  16.864
## 3      Partly Agree 1033  48.934
## 4    Strongly Agree  648  30.696
## [1] 25
## [1] 3.068

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  246   11.92
## 2    Quite Disagree 1067   51.70
## 3      Partly Agree  622   30.14
## 4    Strongly Agree  129    6.25
## [1] 25
## [1] 2.307

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree   72   3.694
## 2    Quite Disagree  434  22.268
## 3      Partly Agree 1084  55.618
## 4    Strongly Agree  359  18.420
## [1] 25
## [1] 2.888

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree   79   3.778
## 2    Quite Disagree  317  15.160
## 3      Partly Agree 1025  49.020
## 4    Strongly Agree  670  32.042
## [1] 25
## [1] 3.093

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  165   8.585
## 2    Quite Disagree  619  32.206
## 3      Partly Agree  792  41.207
## 4    Strongly Agree  346  18.002
## [1] 25
## [1] 2.686

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree   32   1.584
## 2    Quite Disagree  191   9.455
## 3      Partly Agree  907  44.901
## 4    Strongly Agree  890  44.059
## [1] 25
## [1] 3.314

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree   49   2.515
## 2    Quite Disagree  357  18.326
## 3      Partly Agree 1004  51.540
## 4    Strongly Agree  538  27.618
## [1] 25
## [1] 3.043

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  230   11.69
## 2    Quite Disagree  763   38.77
## 3      Partly Agree  749   38.06
## 4    Strongly Agree  226   11.48
## [1] 25
## [1] 2.493

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1 Strongly Disagree  104   5.061
## 2    Quite Disagree  478  23.260
## 3      Partly Agree  976  47.494
## 4    Strongly Agree  497  24.185
## [1] 25
## [1] 2.908

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low  158   9.101
## 2       Low  418  24.078
## 3       Mid  673  38.767
## 4    Higher  365  21.025
## 5 Very high  122   7.028
## [1] 20
## [1] 2.928

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low  176  10.680
## 2       Low  439  26.638
## 3       Mid  622  37.743
## 4    Higher  312  18.932
## 5 Very high   99   6.007
## [1] 20
## [1] 2.829

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low  155   8.877
## 2       Low  411  23.540
## 3       Mid  683  39.118
## 4    Higher  356  20.389
## 5 Very high  141   8.076
## [1] 20
## [1] 2.952

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low  167  10.006
## 2       Low  405  24.266
## 3       Mid  624  37.388
## 4    Higher  366  21.929
## 5 Very high  107   6.411
## [1] 20
## [1] 2.905

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low   87   4.770
## 2       Low  351  19.243
## 3       Mid  785  43.037
## 4    Higher  479  26.261
## 5 Very high  122   6.689
## [1] 20
## [1] 3.109

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low  114   6.025
## 2       Low  408  21.564
## 3       Mid  796  42.072
## 4    Higher  448  23.679
## 5 Very high  126   6.660
## [1] 20
## [1] 3.034

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low   85   4.663
## 2       Low  359  19.693
## 3       Mid  768  42.128
## 4    Higher  475  26.056
## 5 Very high  136   7.460
## [1] 20
## [1] 3.12

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low  115   6.333
## 2       Low  338  18.612
## 3       Mid  732  40.308
## 4    Higher  482  26.542
## 5 Very high  149   8.205
## [1] 20
## [1] 3.117

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low   91   4.895
## 2       Low  315  16.945
## 3       Mid  756  40.667
## 4    Higher  545  29.317
## 5 Very high  152   8.176
## [1] 20
## [1] 3.189

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low  112   5.815
## 2       Low  357  18.536
## 3       Mid  817  42.420
## 4    Higher  507  26.324
## 5 Very high  133   6.906
## [1] 20
## [1] 3.1

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low   92   4.784
## 2       Low  334  17.369
## 3       Mid  813  42.278
## 4    Higher  522  27.145
## 5 Very high  162   8.424
## [1] 20
## [1] 3.171

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low   90   4.715
## 2       Low  325  17.025
## 3       Mid  782  40.964
## 4    Higher  534  27.973
## 5 Very high  178   9.324
## [1] 20
## [1] 3.202

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low   98   5.329
## 2       Low  420  22.838
## 3       Mid  733  39.859
## 4    Higher  432  23.491
## 5 Very high  156   8.483
## [1] 20
## [1] 3.07

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low  107   5.822
## 2       Low  450  24.483
## 3       Mid  725  39.445
## 4    Higher  409  22.252
## 5 Very high  147   7.998
## [1] 20
## [1] 3.021

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low   91   4.943
## 2       Low  402  21.836
## 3       Mid  749  40.684
## 4    Higher  423  22.977
## 5 Very high  176   9.560
## [1] 20
## [1] 3.104

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low  110   6.166
## 2       Low  400  22.422
## 3       Mid  713  39.966
## 4    Higher  409  22.926
## 5 Very high  152   8.520
## [1] 20
## [1] 3.052

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low   89   4.826
## 2       Low  397  21.529
## 3       Mid  641  34.761
## 4    Higher  549  29.772
## 5 Very high  168   9.111
## [1] 20
## [1] 3.168

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low  101   5.212
## 2       Low  460  23.736
## 3       Mid  678  34.985
## 4    Higher  534  27.554
## 5 Very high  165   8.514
## [1] 20
## [1] 3.104

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low   77   4.072
## 2       Low  383  20.254
## 3       Mid  661  34.955
## 4    Higher  596  31.518
## 5 Very high  174   9.201
## [1] 20
## [1] 3.215

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low   95   5.149
## 2       Low  438  23.740
## 3       Mid  669  36.260
## 4    Higher  480  26.016
## 5 Very high  163   8.835
## [1] 20
## [1] 3.096

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low  101   5.732
## 2       Low  386  21.907
## 3       Mid  686  38.933
## 4    Higher  444  25.199
## 5 Very high  145   8.229
## [1] 20
## [1] 3.083

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low  111   6.568
## 2       Low  373  22.071
## 3       Mid  674  39.882
## 4    Higher  403  23.846
## 5 Very high  129   7.633
## [1] 20
## [1] 3.039

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low   90   5.594
## 2       Low  298  18.521
## 3       Mid  662  41.144
## 4    Higher  431  26.787
## 5 Very high  128   7.955
## [1] 20
## [1] 3.13

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low   92   5.499
## 2       Low  339  20.263
## 3       Mid  648  38.733
## 4    Higher  429  25.643
## 5 Very high  165   9.863
## [1] 20
## [1] 3.141

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low  105   5.772
## 2       Low  341  18.747
## 3       Mid  693  38.098
## 4    Higher  505  27.763
## 5 Very high  175   9.621
## [1] 20
## [1] 3.167

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low  105   5.859
## 2       Low  370  20.647
## 3       Mid  680  37.946
## 4    Higher  465  25.949
## 5 Very high  172   9.598
## [1] 20
## [1] 3.128

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low   97   5.446
## 2       Low  318  17.855
## 3       Mid  712  39.978
## 4    Higher  477  26.783
## 5 Very high  177   9.938
## [1] 20
## [1] 3.179

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low  126   7.127
## 2       Low  351  19.853
## 3       Mid  650  36.765
## 4    Higher  465  26.301
## 5 Very high  176   9.955
## [1] 20
## [1] 3.121

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low   40   2.182
## 2       Low  224  12.220
## 3       Mid  606  33.061
## 4    Higher  627  34.206
## 5 Very high  336  18.331
## [1] 20
## [1] 3.543

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low   46   2.515
## 2       Low  235  12.849
## 3       Mid  660  36.085
## 4    Higher  574  31.383
## 5 Very high  314  17.168
## [1] 20
## [1] 3.478

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low   45    2.53
## 2       Low  209   11.75
## 3       Mid  660   37.10
## 4    Higher  570   32.04
## 5 Very high  295   16.58
## [1] 20
## [1] 3.484

plot of chunk printFrequencyTableAndGraph

##           x freq percent
## 1  Very Low   65   3.639
## 2       Low  252  14.110
## 3       Mid  644  36.058
## 4    Higher  569  31.859
## 5 Very high  256  14.334
## [1] 20
## [1] 3.391

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1          Very bad  102   4.755
## 2               Bad  207   9.650
## 3 Not bad, not good  820  38.228
## 4              Good  875  40.793
## 5         Very good  141   6.573
## [1] 20
## [1] 3.348

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1          Very bad   63   2.937
## 2               Bad  178   8.298
## 3 Not bad, not good  783  36.503
## 4              Good  971  45.268
## 5         Very good  150   6.993
## [1] 20
## [1] 3.451

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1          Very bad   54   2.576
## 2               Bad  118   5.630
## 3 Not bad, not good  754  35.973
## 4              Good  996  47.519
## 5         Very good  174   8.302
## [1] 20
## [1] 3.533

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1          Very bad   53   2.633
## 2               Bad  128   6.359
## 3 Not bad, not good  734  36.463
## 4              Good  911  45.256
## 5         Very good  187   9.290
## [1] 20
## [1] 3.522

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1          Very bad   52   2.706
## 2               Bad  125   6.504
## 3 Not bad, not good  650  33.819
## 4              Good  870  45.265
## 5         Very good  225  11.707
## [1] 20
## [1] 3.568

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1          Very bad   54   2.651
## 2               Bad  155   7.609
## 3 Not bad, not good  761  37.359
## 4              Good  826  40.550
## 5         Very good  241  11.831
## [1] 20
## [1] 3.513

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1          Very bad   67   3.215
## 2               Bad  253  12.140
## 3 Not bad, not good  829  39.779
## 4              Good  758  36.372
## 5         Very good  177   8.493
## [1] 20
## [1] 3.348

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1          Very bad   66   3.155
## 2               Bad  233  11.138
## 3 Not bad, not good  736  35.182
## 4              Good  808  38.623
## 5         Very good  249  11.902
## [1] 20
## [1] 3.45

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1          Very bad  108   5.573
## 2               Bad  403  20.795
## 3 Not bad, not good  914  47.162
## 4              Good  422  21.775
## 5         Very good   91   4.696
## [1] 20
## [1] 2.992

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1          Very bad  483  22.476
## 2               Bad  700  32.573
## 3 Not bad, not good  628  29.223
## 4              Good  262  12.192
## 5         Very good   76   3.537
## [1] 20
## [1] 2.417

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1          Very bad  310  14.547
## 2               Bad  732  34.350
## 3 Not bad, not good  681  31.957
## 4              Good  329  15.439
## 5         Very good   79   3.707
## [1] 20
## [1] 2.594

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1          Very bad  357   16.74
## 2               Bad  787   36.90
## 3 Not bad, not good  657   30.80
## 4              Good  268   12.56
## 5         Very good   64    3.00
## [1] 20
## [1] 2.482

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1          Very bad  344  16.075
## 2               Bad  766  35.794
## 3 Not bad, not good  646  30.187
## 4              Good  325  15.187
## 5         Very good   59   2.757
## [1] 20
## [1] 2.528

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1          Very bad  327  15.367
## 2               Bad  770  36.184
## 3 Not bad, not good  649  30.498
## 4              Good  319  14.991
## 5         Very good   63   2.961
## [1] 20
## [1] 2.54

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1          Very bad  368  17.164
## 2               Bad  708  33.022
## 3 Not bad, not good  549  25.606
## 4              Good  425  19.823
## 5         Very good   94   4.384
## [1] 20
## [1] 2.612

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1          Very bad  400   18.91
## 2               Bad  735   34.75
## 3 Not bad, not good  626   29.60
## 4              Good  299   14.14
## 5         Very good   55    2.60
## [1] 20
## [1] 2.468

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1          Very bad  135   6.475
## 2               Bad  428  20.528
## 3 Not bad, not good  939  45.036
## 4              Good  485  23.261
## 5         Very good   98   4.700
## [1] 20
## [1] 2.992

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1          Very bad  126   6.207
## 2               Bad  420  20.690
## 3 Not bad, not good  859  42.315
## 4              Good  551  27.143
## 5         Very good   74   3.645
## [1] 20
## [1] 3.013

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1          Very bad   41   1.990
## 2               Bad  173   8.398
## 3 Not bad, not good  738  35.825
## 4              Good  877  42.573
## 5         Very good  231  11.214
## [1] 20
## [1] 3.526

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1          Very bad   40   1.897
## 2               Bad  171   8.108
## 3 Not bad, not good  631  29.919
## 4              Good 1012  47.985
## 5         Very good  255  12.091
## [1] 20
## [1] 3.603

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1          Very bad   78   3.974
## 2               Bad  296  15.079
## 3 Not bad, not good  792  40.346
## 4              Good  681  34.692
## 5         Very good  116   5.909
## [1] 20
## [1] 3.235

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1          Very bad  160   7.707
## 2               Bad  430  20.713
## 3 Not bad, not good  860  41.426
## 4              Good  518  24.952
## 5         Very good  108   5.202
## [1] 20
## [1] 2.992

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1          Very bad  139   6.673
## 2               Bad  435  20.883
## 3 Not bad, not good  901  43.255
## 4              Good  491  23.572
## 5         Very good  117   5.617
## [1] 20
## [1] 3.006

plot of chunk printFrequencyTableAndGraph

##                   x freq percent
## 1          Very bad    3   1.840
## 2               Bad   11   6.748
## 3 Not bad, not good   80  49.080
## 4              Good   46  28.221
## 5         Very good   23  14.110
## [1] 20
## [1] 3.46

plot of chunk printFrequencyTableAndGraph

##                              x freq percent
## 1          Succeeded very well   41   1.924
## 2         Succeeded quite well  381  17.879
## 3 Neither succeeded nor failed  453  21.258
## 4        Did not quite succeed  750  35.195
## 5       Did not succeed at all  506  23.745
## [1] 20
## [1] 3.61

plot of chunk printFrequencyTableAndGraph

##                              x freq percent
## 1          Succeeded very well   29   1.367
## 2         Succeeded quite well  323  15.221
## 3 Neither succeeded nor failed  451  21.254
## 4        Did not quite succeed  915  43.120
## 5       Did not succeed at all  404  19.039
## [1] 20
## [1] 3.632

plot of chunk printFrequencyTableAndGraph

##                              x freq percent
## 1          Succeeded very well   28   1.346
## 2         Succeeded quite well  319  15.337
## 3 Neither succeeded nor failed  493  23.702
## 4        Did not quite succeed  843  40.529
## 5       Did not succeed at all  397  19.087
## [1] 20
## [1] 3.607

plot of chunk printFrequencyTableAndGraph

##                              x freq percent
## 1          Succeeded very well   45   2.191
## 2         Succeeded quite well  158   7.692
## 3 Neither succeeded nor failed  416  20.253
## 4        Did not quite succeed  697  33.934
## 5       Did not succeed at all  738  35.930
## [1] 20
## [1] 3.937

plot of chunk printFrequencyTableAndGraph

##                              x freq percent
## 1          Succeeded very well   38   1.882
## 2         Succeeded quite well  286  14.165
## 3 Neither succeeded nor failed  504  24.963
## 4        Did not quite succeed  783  38.782
## 5       Did not succeed at all  408  20.208
## [1] 20
## [1] 3.613

plot of chunk printFrequencyTableAndGraph

##                              x freq percent
## 1          Succeeded very well  242  11.426
## 2         Succeeded quite well 1057  49.906
## 3 Neither succeeded nor failed  448  21.152
## 4        Did not quite succeed  287  13.551
## 5       Did not succeed at all   84   3.966
## [1] 20
## [1] 2.487

plot of chunk printFrequencyTableAndGraph

##                              x freq percent
## 1          Succeeded very well   45   2.172
## 2         Succeeded quite well  279  13.465
## 3 Neither succeeded nor failed  463  22.346
## 4        Did not quite succeed  694  33.494
## 5       Did not succeed at all  591  28.523
## [1] 20
## [1] 3.727

plot of chunk printFrequencyTableAndGraph

##                              x freq percent
## 1          Succeeded very well   62   3.021
## 2         Succeeded quite well  456  22.222
## 3 Neither succeeded nor failed  545  26.559
## 4        Did not quite succeed  687  33.480
## 5       Did not succeed at all  302  14.717
## [1] 20
## [1] 3.346

plot of chunk printFrequencyTableAndGraph

##                              x freq percent
## 1          Succeeded very well   55   2.747
## 2         Succeeded quite well  550  27.473
## 3 Neither succeeded nor failed  583  29.121
## 4        Did not quite succeed  606  30.270
## 5       Did not succeed at all  208  10.390
## [1] 20
## [1] 3.181

plot of chunk printFrequencyTableAndGraph

##                              x freq percent
## 1          Succeeded very well   33    1.68
## 2         Succeeded quite well  312   15.89
## 3 Neither succeeded nor failed  657   33.45
## 4        Did not quite succeed  685   34.88
## 5       Did not succeed at all  277   14.10
## [1] 20
## [1] 3.438

plot of chunk printFrequencyTableAndGraph

##                              x freq percent
## 1          Succeeded very well   48   2.443
## 2         Succeeded quite well  338  17.201
## 3 Neither succeeded nor failed  612  31.145
## 4        Did not quite succeed  660  33.588
## 5       Did not succeed at all  307  15.623
## [1] 20
## [1] 3.427

plot of chunk printFrequencyTableAndGraph

##                              x freq percent
## 1          Succeeded very well   32   1.603
## 2         Succeeded quite well  267  13.377
## 3 Neither succeeded nor failed  541  27.104
## 4        Did not quite succeed  728  36.473
## 5       Did not succeed at all  428  21.443
## [1] 20
## [1] 3.628

plot of chunk printFrequencyTableAndGraph

##                              x freq percent
## 1          Succeeded very well  175   8.442
## 2         Succeeded quite well  894  43.126
## 3 Neither succeeded nor failed  507  24.457
## 4        Did not quite succeed  396  19.103
## 5       Did not succeed at all  101   4.872
## [1] 20
## [1] 2.688

plot of chunk printFrequencyTableAndGraph

##                              x freq percent
## 1          Succeeded very well    7   4.046
## 2         Succeeded quite well   19  10.983
## 3 Neither succeeded nor failed   86  49.711
## 4        Did not quite succeed   42  24.277
## 5       Did not succeed at all   19  10.983
## [1] 20
## [1] 3.272

plot of chunk printFrequencyTableAndGraph

##                                   x freq percent
## 1                  Very inefficient  330  15.588
## 2                 Quite inefficient  452  21.351
## 3 Neither efficient nor inefficient  609  28.767
## 4                   Quite efficient  693  32.735
## 5                    Very efficient   33   1.559
## [1] 20
## [1] 2.833

plot of chunk printFrequencyTableAndGraph

##                                   x freq percent
## 1                  Very inefficient  238  11.211
## 2                 Quite inefficient  454  21.385
## 3 Neither efficient nor inefficient  667  31.418
## 4                   Quite efficient  710  33.443
## 5                    Very efficient   54   2.544
## [1] 20
## [1] 2.947

plot of chunk printFrequencyTableAndGraph

##                                   x freq percent
## 1                  Very inefficient  266  12.788
## 2                 Quite inefficient  380  18.269
## 3 Neither efficient nor inefficient  499  23.990
## 4                   Quite efficient  842  40.481
## 5                    Very efficient   93   4.471
## [1] 20
## [1] 3.056

plot of chunk printFrequencyTableAndGraph

##            x freq percent
## 1       None   34   1.662
## 2 Just a few  388  18.964
## 3       Some  494  24.145
## 4 Quite many  751  36.706
## 5   Everyone  379  18.524
## [1] 20
## [1] 3.515

plot of chunk printFrequencyTableAndGraph

##            x freq percent
## 1       None   70   3.465
## 2 Just a few  530  26.238
## 3       Some  612  30.297
## 4 Quite many  579  28.663
## 5   Everyone  229  11.337
## [1] 20
## [1] 3.182

plot of chunk printFrequencyTableAndGraph

##             x freq percent
## 1       Never  739  42.643
## 2      Seldom  187  10.791
## 3   Sometimes  518  29.890
## 4 Quite often  222  12.810
## 5  Very often   67   3.866
## [1] 20
## [1] 2.245

plot of chunk printFrequencyTableAndGraph

##                       x freq percent
## 1 Not at all interested  425  21.165
## 2        Not interested  469  23.357
## 3   Somewhat interested  960  47.809
## 4       Very interested  154   7.669
## [1] 25
## [1] 2.42

plot of chunk printFrequencyTableAndGraph

##                                        x freq percent
## 1                        Nepali Congress  837 48.1311
## 2                              CPN (UML)  477 27.4296
## 3                          UCPN (Maoist)  180 10.3508
## 4                           CPN (Maoist)   69  3.9678
## 5               Nepal Majdur Kisan Party    9  0.5175
## 6             Rastriya Janamorcha, Nepal   14  0.8051
## 7        Rastra Prajatantra Party, Nepal   60  3.4503
## 8             Rastriya Prajatantra Party   20  1.1501
## 9  Madheshi janadhikar Forum, Democratic   20  1.1501
## 10             Madheshi Janadhikar Forum   12  0.6901
## 11        National People's front, Nepal   21  1.2076
## 12              Sanghiya Samajbadi Party   20  1.1501
## [1] 8.333
## [1] 2.35

Now combining Multiple response question involvement in institutions

q11<-data[,15:26]
for(i in 1:length(q11)){q11[,i]<-as.numeric(q11[,i])}
m<-as.matrix(q11)
involve<-col(m)[m==1]
#inovolve[!is.na(involve)]
involve<-involve[(!is.na(involve)) & (involve<12)]
#Now calculate freq and percentages
c<-count(involve)
#find percent and mean of frequency
y<-cbind(c,"percent"=c[,2]/sum(c[2])*100)
y<-as.data.frame(y)
y
##     x freq percent
## 1   1  106 10.7943
## 2   2   12  1.2220
## 3   3   46  4.6843
## 4   4   74  7.5356
## 5   5   69  7.0265
## 6   6  405 41.2424
## 7   7   96  9.7760
## 8   8   36  3.6660
## 9   9    4  0.4073
## 10 10   97  9.8778
## 11 11   37  3.7678

Now analyzing and generating histogram for trust characteristics for Individual

library(ggplot2)
trustPeople<-data.frame(Col=unlist(data[,57:61]))
trustPeople<-as.data.frame(trustPeople[!is.na(trustPeople$Col),])
names(trustPeople)<-c("Col")
#sort(unique(bq21))
d<-table(trustPeople)
    print(names(d))
##  [1] "Don't Know"              "Good/Great"             
##  [3] "Honest"                  "Liberal"                
##  [5] "Laborious / Industrious" "Efficient"              
##  [7] "Responsible"             "Power deligator"        
##  [9] "Accountable"             "Neutral"                
## [11] "Rich / Independent"      "Patriotic"              
## [13] "Religious"               "Benevolent"             
## [15] "Idealastic / ethical"    "Leadership"             
## [17] "Justice"                 "Educated / Academic"    
## [19] "Relative / Friend"       "Transparent"            
## [21] "Logical"                 "Behaviour"              
## [23] "Practical"               "Known / Familiar"       
## [25] "Corruption Free"         "Kindness"               
## [27] "Creative / Genuine"      "Service Delivery"       
## [29] "Security"                "Social"                 
## [31] "Helpful / Cooperative"   "Constitutional Body"    
## [33] "Troubleshooter"          "Popular"                
## [35] "Truthfulness"            "Other"
    g<-ggplot(trustPeople,aes(trustPeople$Col))
    g<-g+geom_bar(color="Red",fill="Maroon")
    g<-g+labs(title="Trust basis for individual",x="Basis",y="Frequency")
    g<-g+theme_bw()
    g<-g+theme(axis.text.x=element_text(angle=45,vjust=1,hjust=1))
    print(g)

plot of chunk trustCharactersticsPeople

    print(d)
## trustPeople
##              Don't Know              Good/Great                  Honest 
##                      27                     169                     623 
##                 Liberal Laborious / Industrious               Efficient 
##                      30                     468                     136 
##             Responsible         Power deligator             Accountable 
##                      49                       6                      38 
##                 Neutral      Rich / Independent               Patriotic 
##                      24                      57                       3 
##               Religious              Benevolent    Idealastic / ethical 
##                      81                      49                     183 
##              Leadership                 Justice     Educated / Academic 
##                      13                      14                     294 
##       Relative / Friend             Transparent                 Logical 
##                     421                      52                      17 
##               Behaviour               Practical        Known / Familiar 
##                    1217                     131                     317 
##         Corruption Free                Kindness      Creative / Genuine 
##                      35                     158                      14 
##        Service Delivery                Security                  Social 
##                      85                      12                     114 
##   Helpful / Cooperative     Constitutional Body          Troubleshooter 
##                     276                      37                      10 
##                 Popular            Truthfulness                   Other 
##                      71                     476                     472

Now analyzing and generating histogram for trust basis for Institution

trustPeople<-data.frame(Col=unlist(data[,62:66]))
trustPeople<-as.data.frame(trustPeople[!is.na(trustPeople$Col),])
names(trustPeople)<-c("Col")
#sort(unique(bq21))
d<-table(trustPeople)
    print(names(d))
##  [1] "Don't Know"              "Good/Great"             
##  [3] "Honest"                  "Liberal"                
##  [5] "Laborious / Industrious" "Efficient"              
##  [7] "Responsible"             "Power deligator"        
##  [9] "Accountable"             "Neutral"                
## [11] "Rich / Independent"      "Patriotic"              
## [13] "Religious"               "Benevolent"             
## [15] "Idealastic / ethical"    "Leadership"             
## [17] "Justice"                 "Educated / Academic"    
## [19] "Relative / Friend"       "Transparent"            
## [21] "Logical"                 "Behaviour"              
## [23] "Practical"               "Known / Familiar"       
## [25] "Corruption Free"         "Kindness"               
## [27] "Creative / Genuine"      "Service Delivery"       
## [29] "Security"                "Social"                 
## [31] "Helpful / Cooperative"   "Constitutional Body"    
## [33] "Troubleshooter"          "Popular"                
## [35] "Truthfulness"            "Other"
    g<-ggplot(trustPeople,aes(trustPeople$Col))
    g<-g+geom_bar(color="Red",fill="Maroon")
    g<-g+labs(title="Trust basis for individual",x="Basis",y="Frequency")
    g<-g+theme_bw()
    g<-g+theme(axis.text.x=element_text(angle=45,vjust=1,hjust=1))
    g<-g+geom_line(stat = "hline", yintercept = "mean")
    print(g)
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## Warning: argument is not numeric or logical: returning NA
## geom_path: Each group consist of only one observation. Do you need to adjust the group aesthetic?

plot of chunk trustCharactersticsInstitution

    #percent<-as.data.frame(prop.table(d*100)
    print(d)
## trustPeople
##              Don't Know              Good/Great                  Honest 
##                      62                      30                     296 
##                 Liberal Laborious / Industrious               Efficient 
##                      42                     567                     333 
##             Responsible         Power deligator             Accountable 
##                      97                      37                     289 
##                 Neutral      Rich / Independent               Patriotic 
##                     193                      31                      46 
##               Religious              Benevolent    Idealastic / ethical 
##                       6                      76                     210 
##              Leadership                 Justice     Educated / Academic 
##                      74                     225                      49 
##       Relative / Friend             Transparent                 Logical 
##                      61                     311                       5 
##               Behaviour               Practical        Known / Familiar 
##                     243                      72                      41 
##         Corruption Free                Kindness      Creative / Genuine 
##                     240                      30                      13 
##        Service Delivery                Security                  Social 
##                    1202                     328                      61 
##   Helpful / Cooperative     Constitutional Body          Troubleshooter 
##                     316                     120                      83 
##                 Popular            Truthfulness                   Other 
##                      77                     146                     482

Gender vs bribe asked

qplot(data$Corruption..In.recent.years.have.you.or.your.family.asked.by.bureaucrats.about.bribe.,data=data,fill=Gender,xlab="Have You ever been asked for bribe?")

plot of chunk genderVersusBribeAsked

All the data

data
##        ID Country.of.Survey District.of.survey Constituency.Number Gender
## 1    2001             Nepal          Taplejung                   1 Female
## 2    2002             Nepal          Taplejung                   1 Female
## 3    2003             Nepal          Taplejung                   1   Male
## 4    2004             Nepal          Taplejung                   1   Male
## 5    2005             Nepal          Taplejung                   1 Female
## 6    2006             Nepal          Taplejung                   1 Female
## 7    2007             Nepal          Taplejung                   1 Female
## 8    2008             Nepal          Taplejung                   1 Female
## 9    2009             Nepal          Taplejung                   1 Female
## 10   2010             Nepal          Taplejung                   1   Male
## 11   2011             Nepal          Taplejung                   1 Female
## 12   2012             Nepal          Taplejung                   1 Female
## 13   2013             Nepal          Taplejung                   1   Male
## 14   2014             Nepal          Taplejung                   1   Male
## 15   2015             Nepal          Taplejung                   1   Male
## 16   2016             Nepal          Taplejung                   1   Male
## 17   2017             Nepal          Taplejung                   1 Female
## 18   2018             Nepal          Taplejung                   1   Male
## 19   2019             Nepal          Taplejung                   1 Female
## 20   2020             Nepal          Taplejung                   1   Male
## 21   2021             Nepal          Taplejung                   1   Male
## 22   2022             Nepal          Taplejung                   1   Male
## 23   2023             Nepal          Taplejung                   1 Female
## 24   2024             Nepal          Taplejung                   1   Male
## 25   2025             Nepal          Taplejung                   1   Male
## 26   2026             Nepal          Taplejung                   1   Male
## 27   2027             Nepal          Taplejung                   1   Male
## 28   2028             Nepal          Taplejung                   1 Female
## 29   2029             Nepal          Taplejung                   1 Female
## 30   2030             Nepal          Taplejung                   1   Male
## 31   2031             Nepal          Taplejung                   1   Male
## 32   2032             Nepal          Taplejung                   1 Female
## 33   2033             Nepal          Taplejung                   1   Male
## 34   2034             Nepal          Taplejung                   1   Male
## 35   2035             Nepal          Taplejung                   1 Female
## 36   2036             Nepal          Taplejung                   1   Male
## 37   2037             Nepal          Taplejung                   1   Male
## 38   2038             Nepal          Taplejung                   1   Male
## 39   2039             Nepal          Taplejung                   1 Female
## 40   2040             Nepal          Taplejung                   1 Female
## 41   2041             Nepal          Taplejung                   1   Male
## 42   2042             Nepal          Taplejung                   1   Male
## 43   2043             Nepal          Taplejung                   1   Male
## 44   2044             Nepal          Taplejung                   1 Female
## 45   2045             Nepal          Taplejung                   1 Female
## 46   2046             Nepal          Taplejung                   1   Male
## 47   2047             Nepal          Taplejung                   1 Female
## 48   2048             Nepal          Taplejung                   1   Male
## 49   2049             Nepal          Taplejung                   1 Female
## 50   2050             Nepal          Taplejung                   1 Female
## 51    701             Nepal            Udaypur                   3   Male
## 52    702             Nepal            Udaypur                   3 Female
## 53    703             Nepal            Udaypur                   3 Female
## 54    704             Nepal            Udaypur                   3   Male
## 55    705             Nepal            Udaypur                   3 Female
## 56    706             Nepal            Udaypur                   3 Female
## 57    707             Nepal            Udaypur                   3 Female
## 58    708             Nepal            Udaypur                   3   Male
## 59    709             Nepal            Udaypur                   3   Male
## 60    710             Nepal            Udaypur                   3   Male
## 61    711             Nepal            Udaypur                   3 Female
## 62    712             Nepal            Udaypur                   3   Male
## 63    713             Nepal            Udaypur                   3   Male
## 64    714             Nepal            Udaypur                   3 Female
## 65    715             Nepal            Udaypur                   3 Female
## 66    716             Nepal            Udaypur                   3 Female
## 67    717             Nepal            Udaypur                   3 Female
## 68    718             Nepal            Udaypur                   3 Female
## 69    719             Nepal            Udaypur                   3 Female
## 70    720             Nepal            Udaypur                   3 Female
## 71    721             Nepal            Udaypur                   3 Female
## 72    722             Nepal            Udaypur                   3 Female
## 73    723             Nepal            Udaypur                   3   Male
## 74    724             Nepal            Udaypur                   3   Male
## 75    725             Nepal            Udaypur                   3   Male
## 76    726             Nepal            Udaypur                   3   Male
## 77    727             Nepal            Udaypur                   3   Male
## 78    728             Nepal            Udaypur                   3   Male
## 79    729             Nepal            Udaypur                   3   Male
## 80    730             Nepal            Udaypur                   3   Male
## 81    731             Nepal            Udaypur                   3   Male
## 82    732             Nepal            Udaypur                   3   Male
## 83    733             Nepal            Udaypur                   3   Male
## 84    734             Nepal            Udaypur                   3 Female
## 85    735             Nepal            Udaypur                   3 Female
## 86    736             Nepal            Udaypur                   3 Female
## 87    737             Nepal            Udaypur                   3 Female
## 88    738             Nepal            Udaypur                   3 Female
## 89    739             Nepal            Udaypur                   3 Female
## 90    740             Nepal            Udaypur                   3 Female
## 91    741             Nepal            Udaypur                   3 Female
## 92    742             Nepal            Udaypur                   3 Female
## 93    743             Nepal            Udaypur                   3 Female
## 94    744             Nepal            Udaypur                   3   Male
## 95    745             Nepal            Udaypur                   3   Male
## 96    746             Nepal            Udaypur                   3   Male
## 97    747             Nepal            Udaypur                   3   Male
## 98    748             Nepal            Udaypur                   3   Male
## 99    749             Nepal            Udaypur                   3   Male
## 100   750             Nepal            Udaypur                   3 Female
## 101   751             Nepal             Siraha                   1 Female
## 102   752             Nepal             Siraha                   1 Female
## 103   753             Nepal             Siraha                   1   Male
## 104   754             Nepal             Siraha                   1 Female
## 105   755             Nepal             Siraha                   1 Female
## 106   756             Nepal             Siraha                   1 Female
## 107   757             Nepal             Siraha                   1   Male
## 108   758             Nepal             Siraha                   1 Female
## 109   759             Nepal             Siraha                   1 Female
## 110   760             Nepal             Siraha                   1 Female
## 111   761             Nepal             Siraha                   1   Male
## 112   762             Nepal             Siraha                   1 Female
## 113   763             Nepal             Siraha                   1   Male
## 114   764             Nepal             Siraha                   1   Male
## 115   765             Nepal             Siraha                   1   Male
## 116   766             Nepal             Siraha                   1 Female
## 117   767             Nepal             Siraha                   1 Female
## 118   768             Nepal             Siraha                   1 Female
## 119   769             Nepal             Siraha                   1   Male
## 120   770             Nepal             Siraha                   1   Male
## 121   771             Nepal             Siraha                   1 Female
## 122   772             Nepal             Siraha                   1 Female
## 123   773             Nepal             Siraha                   1 Female
## 124   774             Nepal             Siraha                   1 Female
## 125   775             Nepal             Siraha                   1   Male
## 126   776             Nepal             Siraha                   1 Female
## 127   777             Nepal             Siraha                   1   Male
## 128   778             Nepal             Siraha                   1   Male
## 129   779             Nepal             Siraha                   1   Male
## 130   780             Nepal             Siraha                   1   Male
## 131   781             Nepal             Siraha                   1   Male
## 132   782             Nepal             Siraha                   1   Male
## 133   783             Nepal             Siraha                   1   Male
## 134   784             Nepal             Siraha                   1 Female
## 135   785             Nepal             Siraha                   1 Female
## 136   786             Nepal             Siraha                   1   Male
## 137   787             Nepal             Siraha                   1   Male
## 138   788             Nepal             Siraha                   1 Female
## 139   789             Nepal             Siraha                   1   Male
## 140   790             Nepal             Siraha                   1 Female
## 141   791             Nepal             Siraha                   1 Female
## 142   792             Nepal             Siraha                   1 Female
## 143   793             Nepal             Siraha                   1 Female
## 144   794             Nepal             Siraha                   1   Male
## 145   795             Nepal             Siraha                   1 Female
## 146   796             Nepal             Siraha                   1   Male
## 147   797             Nepal             Siraha                   1 Female
## 148   798             Nepal             Siraha                   1   Male
## 149   799             Nepal             Siraha                   1 Female
## 150   800             Nepal             Siraha                   1   Male
## 151   801             Nepal             Siraha                   2 Female
## 152   802             Nepal             Siraha                   2   Male
## 153   803             Nepal             Siraha                   2 Female
## 154   804             Nepal             Siraha                   2   Male
## 155   805             Nepal             Siraha                   2 Female
## 156   806             Nepal             Siraha                   2   Male
## 157   807             Nepal             Siraha                   2 Female
## 158   808             Nepal             Siraha                   2   Male
## 159   809             Nepal             Siraha                   2 Female
## 160   810             Nepal             Siraha                   2   Male
## 161   811             Nepal             Siraha                   2   Male
## 162   812             Nepal             Siraha                   3   Male
## 163   813             Nepal             Siraha                   3 Female
## 164   814             Nepal             Siraha                   3 Female
## 165   815             Nepal             Siraha                   3   Male
## 166   816             Nepal             Siraha                   3   Male
## 167   817             Nepal             Siraha                   3   Male
## 168   818             Nepal             Siraha                   3   Male
## 169   819             Nepal             Siraha                   3   Male
## 170   820             Nepal             Siraha                   3   Male
## 171   821             Nepal             Siraha                   3 Female
## 172   822             Nepal             Siraha                   3 Female
## 173   823             Nepal             Siraha                   3 Female
## 174   824             Nepal             Siraha                   3   Male
## 175   825             Nepal             Siraha                   3   Male
## 176   826             Nepal             Siraha                   3   Male
## 177   827             Nepal             Siraha                   3 Female
## 178   828             Nepal             Siraha                   3   Male
## 179   829             Nepal             Siraha                   3 Female
## 180   830             Nepal             Siraha                   3   Male
## 181   831             Nepal             Siraha                   3   Male
## 182   832             Nepal             Siraha                   3   Male
## 183   833             Nepal             Siraha                   3 Female
## 184   834             Nepal             Siraha                   3 Female
## 185   835             Nepal             Siraha                   3 Female
## 186   836             Nepal             Siraha                   3 Female
## 187   837             Nepal             Siraha                   3 Female
## 188   838             Nepal             Siraha                   3 Female
## 189   839             Nepal             Siraha                   3 Female
## 190   840             Nepal             Siraha                   3 Female
## 191   841             Nepal             Siraha                   3   Male
## 192   842             Nepal             Siraha                   3   Male
## 193   843             Nepal             Siraha                   3   Male
## 194   844             Nepal             Siraha                   3 Female
## 195   845             Nepal             Siraha                   3 Female
## 196   846             Nepal             Siraha                   3   Male
## 197   847             Nepal             Siraha                   3 Female
## 198   848             Nepal             Siraha                   3 Female
## 199   849             Nepal             Siraha                   3 Female
## 200   850             Nepal             Siraha                   3   Male
## 201  1201             Nepal           Dhanusha                   5   Male
## 202  1202             Nepal           Dhanusha                   5   Male
## 203  1203             Nepal           Dhanusha                   5 Female
## 204  1204             Nepal           Dhanusha                   5   Male
## 205  1205             Nepal           Dhanusha                   5   Male
## 206  1206             Nepal           Dhanusha                   5   Male
## 207  1207             Nepal           Dhanusha                   5 Female
## 208  1208             Nepal           Dhanusha                   5 Female
## 209  1209             Nepal           Dhanusha                   5   Male
## 210  1210             Nepal           Dhanusha                   5   Male
## 211  1211             Nepal           Dhanusha                   5   Male
## 212  1212             Nepal           Dhanusha                   5   Male
## 213  1213             Nepal           Dhanusha                   5   Male
## 214  1214             Nepal           Dhanusha                   5   Male
## 215  1215             Nepal           Dhanusha                   5   Male
## 216  1216             Nepal           Dhanusha                   5   Male
## 217  1217             Nepal           Dhanusha                   5   Male
## 218  1218             Nepal           Dhanusha                   5 Female
## 219  1219             Nepal           Dhanusha                   5   Male
## 220  1220             Nepal           Dhanusha                   5   Male
## 221  1221             Nepal           Dhanusha                   5   Male
## 222  1222             Nepal           Dhanusha                   5   Male
## 223  1223             Nepal           Dhanusha                   5   Male
## 224  1224             Nepal           Dhanusha                   5   Male
## 225  1225             Nepal           Dhanusha                   5   Male
## 226  1226             Nepal           Dhanusha                   5   Male
## 227  1227             Nepal           Dhanusha                   5   Male
## 228  1228             Nepal           Dhanusha                   5   Male
## 229  1229             Nepal           Dhanusha                   5   Male
## 230  1230             Nepal           Dhanusha                   5 Female
## 231  1231             Nepal           Dhanusha                   5 Female
## 232  1232             Nepal           Dhanusha                   5 Female
## 233  1233             Nepal           Dhanusha                   5 Female
## 234  1234             Nepal           Dhanusha                   5 Female
## 235  1235             Nepal           Dhanusha                   5 Female
## 236  1236             Nepal           Dhanusha                   5 Female
## 237  1237             Nepal           Dhanusha                   5 Female
## 238  1238             Nepal           Dhanusha                   5 Female
## 239  1239             Nepal           Dhanusha                   5 Female
## 240  1240             Nepal           Dhanusha                   5 Female
## 241  1241             Nepal           Dhanusha                   5 Female
## 242  1242             Nepal           Dhanusha                   5 Female
## 243  1243             Nepal           Dhanusha                   5 Female
## 244  1244             Nepal           Dhanusha                   5 Female
## 245  1245             Nepal           Dhanusha                   5 Female
## 246  1246             Nepal           Dhanusha                   5 Female
## 247  1247             Nepal           Dhanusha                   5 Female
## 248  1248             Nepal           Dhanusha                   5 Female
## 249  1249             Nepal           Dhanusha                   5 Female
## 250  1250             Nepal           Dhanusha                   5 Female
## 251   951             Nepal           Sindhuli                   2   Male
## 252   952             Nepal           Sindhuli                   2   Male
## 253   953             Nepal           Sindhuli                   2   Male
## 254   954             Nepal           Sindhuli                   2   Male
## 255   955             Nepal           Sindhuli                   2   Male
## 256   956             Nepal           Sindhuli                   2   Male
## 257   957             Nepal           Sindhuli                   2 Female
## 258   958             Nepal           Sindhuli                   2   Male
## 259   959             Nepal           Sindhuli                   2 Female
## 260   960             Nepal           Sindhuli                   2   Male
## 261   961             Nepal           Sindhuli                   2 Female
## 262   962             Nepal           Sindhuli                   2   Male
## 263   963             Nepal           Sindhuli                   2   Male
## 264   964             Nepal           Sindhuli                   2   Male
## 265   965             Nepal           Sindhuli                   2 Female
## 266   966             Nepal           Sindhuli                   2   Male
## 267   967             Nepal           Sindhuli                   2 Female
## 268   968             Nepal           Sindhuli                   2   Male
## 269   969             Nepal           Sindhuli                   2 Female
## 270   970             Nepal           Sindhuli                   2   Male
## 271   971             Nepal           Sindhuli                   2 Female
## 272   972             Nepal           Sindhuli                   2   Male
## 273   973             Nepal           Sindhuli                   2   Male
## 274   974             Nepal           Sindhuli                   2   Male
## 275   975             Nepal           Sindhuli                   2 Female
## 276   976             Nepal           Sindhuli                   2 Female
## 277   977             Nepal           Sindhuli                   2 Female
## 278   978             Nepal           Sindhuli                   2   Male
## 279   979             Nepal           Sindhuli                   2 Female
## 280   980             Nepal           Sindhuli                   2   Male
## 281   981             Nepal           Sindhuli                   2   Male
## 282   982             Nepal           Sindhuli                   2 Female
## 283   983             Nepal           Sindhuli                   2 Female
## 284   984             Nepal           Sindhuli                   2   Male
## 285   985             Nepal           Sindhuli                   2   Male
## 286   986             Nepal           Sindhuli                   2 Female
## 287   987             Nepal           Sindhuli                   2   Male
## 288   988             Nepal           Sindhuli                   2 Female
## 289   989             Nepal           Sindhuli                   2   Male
## 290   990             Nepal           Sindhuli                   2   Male
## 291   991             Nepal           Sindhuli                   2 Female
## 292   992             Nepal           Sindhuli                   2 Female
## 293   993             Nepal           Sindhuli                   2   Male
## 294   994             Nepal           Sindhuli                   2 Female
## 295   995             Nepal           Sindhuli                   2 Female
## 296   996             Nepal           Sindhuli                   2 Female
## 297   997             Nepal           Sindhuli                   2 Female
## 298   998             Nepal           Sindhuli                   2   Male
## 299   999             Nepal           Sindhuli                   2 Female
## 300  1000             Nepal           Sindhuli                   2 Female
## 302  1551             Nepal            Dolakha                   2   Male
## 303  1552             Nepal            Dolakha                   2 Female
## 304  1553             Nepal            Dolakha                   2   Male
## 305  1554             Nepal            Dolakha                   2   Male
## 306  1555             Nepal            Dolakha                   2 Female
## 307  1556             Nepal            Dolakha                   2   Male
## 308  1557             Nepal            Dolakha                   2   Male
## 309  1558             Nepal            Dolakha                   2   Male
## 310  1559             Nepal            Dolakha                   2 Female
## 311  1560             Nepal            Dolakha                   2   Male
## 312  1561             Nepal            Dolakha                   2 Female
## 313  1562             Nepal            Dolakha                   2   Male
## 314  1563             Nepal            Dolakha                   2   Male
## 315  1564             Nepal            Dolakha                   2   Male
## 316  1565             Nepal            Dolakha                   2   Male
## 317  1566             Nepal            Dolakha                   2 Female
## 318  1567             Nepal            Dolakha                   2 Female
## 319  1568             Nepal            Dolakha                   2   Male
## 320  1569             Nepal            Dolakha                   2 Female
## 321  1570             Nepal            Dolakha                   2 Female
## 322  1571             Nepal            Dolakha                   2 Female
## 323  1572             Nepal            Dolakha                   2 Female
## 324  1573             Nepal            Dolakha                   2 Female
## 325  1574             Nepal            Dolakha                   2 Female
## 326  1575             Nepal            Dolakha                   2 Female
## 327  1576             Nepal            Dolakha                   2 Female
## 328  1577             Nepal            Dolakha                   2   Male
## 329  1578             Nepal            Dolakha                   2 Female
## 330  1579             Nepal            Dolakha                   2   Male
## 331  1580             Nepal            Dolakha                   2   Male
## 332  1581             Nepal            Dolakha                   2   Male
## 333  1582             Nepal            Dolakha                   2 Female
## 334  1583             Nepal            Dolakha                   2 Female
## 335  1584             Nepal            Dolakha                   2 Female
## 336  1585             Nepal            Dolakha                   2 Female
## 337  1586             Nepal            Dolakha                   2   Male
## 338  1587             Nepal            Dolakha                   2   Male
## 339  1588             Nepal            Dolakha                   2   Male
## 340  1589             Nepal            Dolakha                   2 Female
## 341  1590             Nepal            Dolakha                   2   Male
## 342  1591             Nepal            Dolakha                   2   Male
## 343  1592             Nepal            Dolakha                   2   Male
## 344  1593             Nepal            Dolakha                   2 Female
## 345  1594             Nepal            Dolakha                   2 Female
## 346  1595             Nepal            Dolakha                   2 Female
## 347  1596             Nepal            Dolakha                   2 Female
## 348  1597             Nepal            Dolakha                   2   Male
## 349  1598             Nepal            Dolakha                   2 Female
## 350  1599             Nepal            Dolakha                   2   Male
## 351  1600             Nepal            Dolakha                   2 Female
## 352  1501             Nepal           Lalitpur                   1 Female
## 353  1502             Nepal           Lalitpur                   1   Male
## 354  1503             Nepal           Lalitpur                   1 Female
## 355  1504             Nepal           Lalitpur                   1   Male
## 356  1505             Nepal           Lalitpur                   1 Female
## 357  1506             Nepal           Lalitpur                   1   Male
## 358  1507             Nepal           Lalitpur                   1   Male
## 359  1508             Nepal           Lalitpur                   1   Male
## 360  1509             Nepal           Lalitpur                   1 Female
## 361  1510             Nepal           Lalitpur                   1   Male
## 362  1511             Nepal           Lalitpur                   1 Female
## 363  1512             Nepal           Lalitpur                   1   Male
## 364  1513             Nepal           Lalitpur                   1   Male
## 365  1514             Nepal           Lalitpur                   1 Female
## 366  1515             Nepal           Lalitpur                   1   Male
## 367  1516             Nepal           Lalitpur                   1 Female
## 368  1517             Nepal           Lalitpur                   1 Female
## 369  1518             Nepal           Lalitpur                   1   Male
## 370  1519             Nepal           Lalitpur                   1 Female
## 371  1520             Nepal           Lalitpur                   1 Female
## 372  1521             Nepal           Lalitpur                   1   Male
## 373  1522             Nepal           Lalitpur                   1 Female
## 374  1523             Nepal           Lalitpur                   1 Female
## 375  1524             Nepal           Lalitpur                   1 Female
## 376  1525             Nepal           Lalitpur                   1 Female
## 377  2276             Nepal           Lalitpur                   1   Male
## 378  2277             Nepal           Lalitpur                   1   Male
## 379  2278             Nepal           Lalitpur                   1 Female
## 380  2279             Nepal           Lalitpur                   1   Male
## 381  2280             Nepal           Lalitpur                   1 Female
## 382  2281             Nepal           Lalitpur                   1 Female
## 383  2282             Nepal           Lalitpur                   1   Male
## 384  2283             Nepal           Lalitpur                   1 Female
## 385  2284             Nepal           Lalitpur                   1   Male
## 386  2285             Nepal           Lalitpur                   1   Male
## 387  2286             Nepal           Lalitpur                   1   Male
## 388  2287             Nepal           Lalitpur                   1 Female
## 389  2288             Nepal           Lalitpur                   1   Male
## 390  2289             Nepal           Lalitpur                   1   Male
## 391  2290             Nepal           Lalitpur                   1   Male
## 392  2291             Nepal           Lalitpur                   1 Female
## 393  2292             Nepal           Lalitpur                   1 Female
## 394  2293             Nepal           Lalitpur                   1 Female
## 395  2294             Nepal           Lalitpur                   1   Male
## 396  2295             Nepal           Lalitpur                   1   Male
## 397  2296             Nepal           Lalitpur                   1   Male
## 398  2297             Nepal           Lalitpur                   1 Female
## 399  2298             Nepal           Lalitpur                   1 Female
## 400  2299             Nepal           Lalitpur                   1 Female
## 401  2300             Nepal           Lalitpur                   1   Male
## 402  1651             Nepal           Lalitpur                   2 Female
## 403  1652             Nepal           Lalitpur                   2   Male
## 404  1653             Nepal           Lalitpur                   2   Male
## 405  1654             Nepal           Lalitpur                   2   Male
## 406  1655             Nepal           Lalitpur                   2   Male
## 407  1656             Nepal           Lalitpur                   2   Male
## 408  1657             Nepal           Lalitpur                   2   Male
## 409  1658             Nepal           Lalitpur                   2   Male
## 410  1659             Nepal           Lalitpur                   2   Male
## 411  1660             Nepal           Lalitpur                   2 Female
## 412  1661             Nepal           Lalitpur                   2   Male
## 413  1662             Nepal           Lalitpur                   2   Male
## 414  1663             Nepal           Lalitpur                   2 Female
## 415  1664             Nepal           Lalitpur                   2 Female
## 416  1665             Nepal           Lalitpur                   2 Female
## 417  1666             Nepal           Lalitpur                   2 Female
## 418  1667             Nepal           Lalitpur                   2   Male
## 419  1668             Nepal           Lalitpur                   2   Male
## 420  1669             Nepal           Lalitpur                   2 Female
## 421  1670             Nepal           Lalitpur                   2   Male
## 422  1671             Nepal           Lalitpur                   2 Female
## 423  1672             Nepal           Lalitpur                   2   Male
## 424  1673             Nepal           Lalitpur                   2 Female
## 425  1674             Nepal           Lalitpur                   2 Female
## 426  1675             Nepal           Lalitpur                   2   Male
## 427  1676             Nepal           Lalitpur                   2 Female
## 428  1677             Nepal           Lalitpur                   2 Female
## 429  1678             Nepal           Lalitpur                   2   Male
## 430  1679             Nepal           Lalitpur                   2   Male
## 431  1680             Nepal           Lalitpur                   2   Male
## 432  1681             Nepal           Lalitpur                   2 Female
## 433  1682             Nepal           Lalitpur                   2 Female
## 434  1683             Nepal           Lalitpur                   2 Female
## 435  1684             Nepal           Lalitpur                   2 Female
## 436  1685             Nepal           Lalitpur                   2 Female
## 437  1686             Nepal           Lalitpur                   2 Female
## 438  1687             Nepal           Lalitpur                   2 Female
## 439  1688             Nepal           Lalitpur                   2   Male
## 440  1689             Nepal           Lalitpur                   2 Female
## 441  1690             Nepal           Lalitpur                   2   Male
## 442  1691             Nepal           Lalitpur                   2 Female
## 443  1692             Nepal           Lalitpur                   2 Female
## 444  1693             Nepal           Lalitpur                   2 Female
## 445  1694             Nepal           Lalitpur                   2   Male
## 446  1695             Nepal           Lalitpur                   2   Male
## 447  1696             Nepal           Lalitpur                   2 Female
## 448  1697             Nepal           Lalitpur                   2   Male
## 449  1698             Nepal           Lalitpur                   2 Female
## 450  1699             Nepal           Lalitpur                   2   Male
## 451  1700             Nepal           Lalitpur                   2   Male
## 452    NA             Nepal           Lalitpur                   2 Female
## 453    NA             Nepal           Lalitpur                   2   Male
## 454  1601             Nepal          Kathmandu                   2   Male
## 455  1602             Nepal          Kathmandu                   2 Female
## 456  1603             Nepal          Kathmandu                   2   Male
## 457  1604             Nepal          Kathmandu                   2   Male
## 458  1605             Nepal          Kathmandu                   2 Female
## 459  1606             Nepal          Kathmandu                   2   Male
## 460  1607             Nepal          Kathmandu                   2   Male
## 461  1608             Nepal          Kathmandu                   2 Female
## 462  1610             Nepal          Kathmandu                   2   <NA>
## 463  1611             Nepal          Kathmandu                   2   Male
## 464  1612             Nepal          Kathmandu                   2   <NA>
## 465  1613             Nepal          Kathmandu                   2 Female
## 466  1614             Nepal          Kathmandu                   2   Male
## 467  1615             Nepal          Kathmandu                   2   Male
## 468  1617             Nepal          Kathmandu                   2 Female
## 469  1618             Nepal          Kathmandu                   2   <NA>
## 470  1619             Nepal          Kathmandu                   2 Female
## 471  1620             Nepal          Kathmandu                   2   <NA>
## 472  1621             Nepal          Kathmandu                   2   <NA>
## 473  1622             Nepal          Kathmandu                   2 Female
## 474  1623             Nepal          Kathmandu                   2 Female
## 475  1624             Nepal          Kathmandu                   2 Female
## 476  1625             Nepal          Kathmandu                   2   Male
## 477  1626             Nepal          Kathmandu                   2 Female
## 478  1627             Nepal          Kathmandu                   2   Male
## 479  1628             Nepal          Kathmandu                   2 Female
## 480  1629             Nepal          Kathmandu                   2 Female
## 481  1630             Nepal          Kathmandu                   2 Female
## 482  1631             Nepal          Kathmandu                   2   Male
## 483  1632             Nepal          Kathmandu                   2 Female
## 484  1633             Nepal          Kathmandu                   2 Female
## 485  1634             Nepal          Kathmandu                   2 Female
## 486  1635             Nepal          Kathmandu                   2   Male
## 487  1636             Nepal          Kathmandu                   2   Male
## 488  1637             Nepal          Kathmandu                   2 Female
## 489  1638             Nepal          Kathmandu                   2   Male
## 490  1639             Nepal          Kathmandu                   2   Male
## 491  1640             Nepal          Kathmandu                   2   Male
## 492  1641             Nepal          Kathmandu                   2   Male
## 493  1643             Nepal          Kathmandu                   2   Male
## 494  1644             Nepal          Kathmandu                   2   Male
## 495  1645             Nepal          Kathmandu                   2   Male
## 496  1646             Nepal          Kathmandu                   2   Male
##      Age..Current.  Religion Migrant.status                 Education
## 1               36    Others       Migrated           Secondary Level
## 2               28  Buddhist   Not Migrated     Lower Secondary Level
## 3               35     Hindu   Not Migrated             Primary Level
## 4               33     Hindu   Not Migrated Master's Degree or Higher
## 5               40  Buddhist   Not Migrated                  Literate
## 6               19     Hindu   Not Migrated     Lower Secondary Level
## 7               29    Others   Not Migrated           Secondary Level
## 8               44  Buddhist   Not Migrated                  Literate
## 9               41     Hindu   Not Migrated     Lower Secondary Level
## 10              22    Others   Not Migrated    Higher Secondary Level
## 11              NA  Buddhist   Not Migrated                  Literate
## 12              61     Hindu   Not Migrated                Illiterate
## 13              56  Buddhist   Not Migrated     Lower Secondary Level
## 14              42     Hindu   Not Migrated     Lower Secondary Level
## 15              43     Hindu   Not Migrated                  Literate
## 16              40  Buddhist   Not Migrated                  Literate
## 17              30  Buddhist   Not Migrated             Primary Level
## 18              37     Hindu   Not Migrated     Lower Secondary Level
## 19              66     Hindu   Not Migrated           Secondary Level
## 20              48 Christian   Not Migrated                  Literate
## 21              49     Hindu   Not Migrated           Graduate Degree
## 22              48     Hindu   Not Migrated             Primary Level
## 23              38     Hindu   Not Migrated    Higher Secondary Level
## 24              49     Hindu   Not Migrated    Higher Secondary Level
## 25              45     Hindu       Migrated                  Literate
## 26              60     Hindu   Not Migrated                Illiterate
## 27              36    Others   Not Migrated Master's Degree or Higher
## 28              46    Others   Not Migrated                  Literate
## 29              54     Hindu   Not Migrated                  Literate
## 30              42     Hindu   Not Migrated Master's Degree or Higher
## 31              33     Hindu   Not Migrated     Lower Secondary Level
## 32              31 Christian   Not Migrated                Illiterate
## 33              44     Hindu   Not Migrated     Lower Secondary Level
## 34              45    Others   Not Migrated    Higher Secondary Level
## 35              51    Others       Migrated    Higher Secondary Level
## 36              30     Hindu   Not Migrated    Higher Secondary Level
## 37              27    Others   Not Migrated    Higher Secondary Level
## 38              31  Buddhist   Not Migrated                  Literate
## 39              46     Hindu   Not Migrated           Secondary Level
## 40              32     Hindu   Not Migrated    Higher Secondary Level
## 41              56    Others   Not Migrated                  Literate
## 42              59    Others       Migrated                  Literate
## 43              49  Buddhist   Not Migrated    Higher Secondary Level
## 44              31     Hindu   Not Migrated                  Literate
## 45              28     Hindu   Not Migrated           Secondary Level
## 46              34     Hindu   Not Migrated           Graduate Degree
## 47              NA    Others   Not Migrated           Secondary Level
## 48              NA     Hindu   Not Migrated           Secondary Level
## 49              NA      <NA>   Not Migrated    Higher Secondary Level
## 50              28  Buddhist   Not Migrated    Higher Secondary Level
## 51              36     Hindu       Migrated           Secondary Level
## 52              59     Hindu       Migrated                Illiterate
## 53              43     Hindu       Migrated                  Literate
## 54              51     Hindu       Migrated           Secondary Level
## 55              37     Hindu       Migrated           Secondary Level
## 56              35     Hindu       Migrated           Secondary Level
## 57              29     Hindu   Not Migrated                  Literate
## 58              26     Hindu   Not Migrated Master's Degree or Higher
## 59              55     Hindu       Migrated                  Literate
## 60              19     Hindu   Not Migrated    Higher Secondary Level
## 61              42     Hindu       Migrated                  Literate
## 62              65     Hindu       Migrated             Primary Level
## 63              71     Hindu           <NA>                Illiterate
## 64              52     Hindu       Migrated                  Literate
## 65              21     Hindu   Not Migrated    Higher Secondary Level
## 66              37     Hindu       Migrated                Illiterate
## 67              20     Hindu   Not Migrated    Higher Secondary Level
## 68              60     Hindu       Migrated                  Literate
## 69              47     Hindu       Migrated                Illiterate
## 70              38     Hindu   Not Migrated                Illiterate
## 71              26     Hindu       Migrated    Higher Secondary Level
## 72              23     Hindu   Not Migrated    Higher Secondary Level
## 73              37     Hindu   Not Migrated     Lower Secondary Level
## 74              23     Hindu   Not Migrated     Lower Secondary Level
## 75              47     Hindu   Not Migrated     Lower Secondary Level
## 76              27     Hindu   Not Migrated     Lower Secondary Level
## 77              61     Hindu   Not Migrated                Illiterate
## 78              43     Hindu       Migrated                  Literate
## 79              62     Hindu   Not Migrated                Illiterate
## 80              26     Hindu   Not Migrated     Lower Secondary Level
## 81              27     Hindu   Not Migrated     Lower Secondary Level
## 82              22     Hindu   Not Migrated    Higher Secondary Level
## 83              26     Hindu   Not Migrated           Graduate Degree
## 84              31     Hindu   Not Migrated                  Literate
## 85              33     Hindu       Migrated           Secondary Level
## 86              24     Hindu   Not Migrated    Higher Secondary Level
## 87              29     Hindu       Migrated                  Literate
## 88              23     Hindu       Migrated           Secondary Level
## 89              34     Hindu       Migrated     Lower Secondary Level
## 90              61     Hindu   Not Migrated                      <NA>
## 91              25     Hindu   Not Migrated    Higher Secondary Level
## 92              33     Hindu       Migrated                  Literate
## 93              42     Hindu   Not Migrated                  Literate
## 94              55     Hindu       Migrated     Lower Secondary Level
## 95              49     Hindu   Not Migrated                Illiterate
## 96              42     Hindu   Not Migrated           Secondary Level
## 97              26     Hindu   Not Migrated           Secondary Level
## 98              26     Hindu   Not Migrated             Primary Level
## 99              74     Hindu   Not Migrated                Illiterate
## 100             29      <NA>       Migrated           Secondary Level
## 101             61     Hindu   Not Migrated                Illiterate
## 102             43     Hindu   Not Migrated                Illiterate
## 103             22     Hindu   Not Migrated    Higher Secondary Level
## 104             45     Hindu   Not Migrated                Illiterate
## 105             26     Hindu   Not Migrated                  Literate
## 106             51     Hindu   Not Migrated                Illiterate
## 107             46     Hindu   Not Migrated                  Literate
## 108             22     Hindu   Not Migrated    Higher Secondary Level
## 109             47     Hindu   Not Migrated                Illiterate
## 110             40     Hindu   Not Migrated    Higher Secondary Level
## 111             36     Hindu   Not Migrated                  Literate
## 112             48     Hindu   Not Migrated                  Literate
## 113             55     Hindu   Not Migrated                  Literate
## 114             39     Hindu   Not Migrated                Illiterate
## 115             23     Hindu   Not Migrated           Secondary Level
## 116             26     Hindu   Not Migrated                Illiterate
## 117             54     Hindu   Not Migrated                  Literate
## 118             65     Hindu   Not Migrated                Illiterate
## 119             44     Hindu   Not Migrated     Lower Secondary Level
## 120             49     Hindu   Not Migrated                  Literate
## 121             28     Hindu   Not Migrated    Higher Secondary Level
## 122             56     Hindu   Not Migrated                Illiterate
## 123             22     Hindu   Not Migrated                Illiterate
## 124             22     Hindu   Not Migrated           Secondary Level
## 125             61     Hindu   Not Migrated           Secondary Level
## 126             85     Hindu   Not Migrated                Illiterate
## 127             24     Hindu   Not Migrated     Lower Secondary Level
## 128             44     Hindu   Not Migrated           Secondary Level
## 129             29     Hindu   Not Migrated           Secondary Level
## 130             54     Hindu   Not Migrated    Higher Secondary Level
## 131             62     Hindu   Not Migrated           Secondary Level
## 132             51     Hindu   Not Migrated                Illiterate
## 133             66     Hindu   Not Migrated                Illiterate
## 134             28     Hindu   Not Migrated                      <NA>
## 135             22     Hindu   Not Migrated                  Literate
## 136             28     Hindu   Not Migrated           Secondary Level
## 137             39     Hindu   Not Migrated    Higher Secondary Level
## 138             43     Hindu   Not Migrated                Illiterate
## 139             29     Hindu   Not Migrated           Secondary Level
## 140             42     Hindu   Not Migrated                Illiterate
## 141             23     Hindu   Not Migrated           Secondary Level
## 142             55     Hindu   Not Migrated                Illiterate
## 143             55     Hindu   Not Migrated                Illiterate
## 144             56     Hindu   Not Migrated    Higher Secondary Level
## 145             33     Hindu   Not Migrated                Illiterate
## 146             43     Hindu   Not Migrated           Secondary Level
## 147             35     Hindu   Not Migrated Master's Degree or Higher
## 148             28     Hindu       Migrated    Higher Secondary Level
## 149             54     Hindu   Not Migrated           Secondary Level
## 150             33     Hindu       Migrated           Graduate Degree
## 151             62     Hindu   Not Migrated                Illiterate
## 152             38     Hindu   Not Migrated           Secondary Level
## 153             44     Hindu   Not Migrated                Illiterate
## 154             32     Hindu       Migrated           Secondary Level
## 155             75    Others   Not Migrated                Illiterate
## 156             36    Others   Not Migrated                Illiterate
## 157             35    Others       Migrated                Illiterate
## 158             42    Others   Not Migrated    Higher Secondary Level
## 159             38    Others       Migrated     Lower Secondary Level
## 160             19     Hindu   Not Migrated             Primary Level
## 161             49     Hindu   Not Migrated           Secondary Level
## 162             41    Others   Not Migrated                  Literate
## 163             78     Hindu   Not Migrated                Illiterate
## 164             68    Others   Not Migrated                Illiterate
## 165             31    Others   Not Migrated           Graduate Degree
## 166             39    Others   Not Migrated           Secondary Level
## 167             36     Hindu   Not Migrated    Higher Secondary Level
## 168             28    Others   Not Migrated     Lower Secondary Level
## 169             62    Others   Not Migrated                  Literate
## 170             58    Others   Not Migrated                Illiterate
## 171             50    Others   Not Migrated                Illiterate
## 172             24    Others   Not Migrated                Illiterate
## 173             61    Others       Migrated                Illiterate
## 174             69    Others   Not Migrated     Lower Secondary Level
## 175             47    Others   Not Migrated                  Literate
## 176             35    Others   Not Migrated             Primary Level
## 177             28    Others   Not Migrated                Illiterate
## 178             42    Others   Not Migrated           Secondary Level
## 179             30    Others   Not Migrated                Illiterate
## 180             30    Others   Not Migrated                  Literate
## 181             34    Others   Not Migrated     Lower Secondary Level
## 182             58    Others   Not Migrated                  Literate
## 183             71    Others   Not Migrated                Illiterate
## 184             56    Others   Not Migrated                Illiterate
## 185             36    Others   Not Migrated           Secondary Level
## 186             50    Others       Migrated                  Literate
## 187             21    Others       Migrated    Higher Secondary Level
## 188             39    Others       Migrated                Illiterate
## 189             53    Others   Not Migrated                Illiterate
## 190             41    Others   Not Migrated     Lower Secondary Level
## 191             51     Hindu   Not Migrated                  Literate
## 192             61    Others   Not Migrated                Illiterate
## 193             28     Hindu   Not Migrated           Secondary Level
## 194             42    Others   Not Migrated                Illiterate
## 195             62    Others       Migrated                Illiterate
## 196             61    Others   Not Migrated                Illiterate
## 197             32    Others       Migrated             Primary Level
## 198             45    Others   Not Migrated                Illiterate
## 199             19     Hindu       Migrated    Higher Secondary Level
## 200             65    Others   Not Migrated                Illiterate
## 201             26     Hindu   Not Migrated    Higher Secondary Level
## 202             47     Hindu   Not Migrated     Lower Secondary Level
## 203             48     Hindu   Not Migrated                Illiterate
## 204             42     Hindu   Not Migrated                Illiterate
## 205             60     Hindu   Not Migrated                Illiterate
## 206             22     Hindu   Not Migrated    Higher Secondary Level
## 207             33     Hindu       Migrated           Secondary Level
## 208             39     Hindu       Migrated                Illiterate
## 209             45     Hindu   Not Migrated    Higher Secondary Level
## 210             25     Hindu   Not Migrated           Graduate Degree
## 211             60     Hindu   Not Migrated                Illiterate
## 212             41     Hindu   Not Migrated    Higher Secondary Level
## 213             69     Hindu   Not Migrated                Illiterate
## 214             43     Hindu   Not Migrated     Lower Secondary Level
## 215             59     Hindu   Not Migrated                Illiterate
## 216             55     Hindu   Not Migrated                  Literate
## 217             47     Hindu   Not Migrated                Illiterate
## 218             39     Hindu       Migrated                Illiterate
## 219             37     Hindu       Migrated    Higher Secondary Level
## 220             57     Hindu   Not Migrated     Lower Secondary Level
## 221             37     Hindu   Not Migrated           Secondary Level
## 222             25     Hindu   Not Migrated           Graduate Degree
## 223             45     Hindu   Not Migrated     Lower Secondary Level
## 224             30     Hindu   Not Migrated    Higher Secondary Level
## 225             36     Hindu       Migrated    Higher Secondary Level
## 226             18     Hindu   Not Migrated           Secondary Level
## 227             26     Hindu   Not Migrated           Graduate Degree
## 228             47     Hindu   Not Migrated                Illiterate
## 229             53     Hindu   Not Migrated                Illiterate
## 230             57     Hindu   Not Migrated                Illiterate
## 231             40     Hindu   Not Migrated                Illiterate
## 232             63     Hindu   Not Migrated                Illiterate
## 233             39     Hindu   Not Migrated             Primary Level
## 234             38     Hindu       Migrated                Illiterate
## 235             39     Hindu   Not Migrated     Lower Secondary Level
## 236             56     Hindu   Not Migrated                Illiterate
## 237             37     Hindu       Migrated                Illiterate
## 238             29     Hindu   Not Migrated             Primary Level
## 239             38     Hindu       Migrated                Illiterate
## 240             27     Hindu   Not Migrated     Lower Secondary Level
## 241             31     Hindu   Not Migrated                Illiterate
## 242             29     Hindu       Migrated                Illiterate
## 243             59     Hindu   Not Migrated                Illiterate
## 244             46     Hindu   Not Migrated                  Literate
## 245             31     Hindu   Not Migrated     Lower Secondary Level
## 246             28     Hindu   Not Migrated             Primary Level
## 247             47     Hindu   Not Migrated                Illiterate
## 248             32     Hindu   Not Migrated                Illiterate
## 249             29     Hindu   Not Migrated             Primary Level
## 250             31     Hindu       Migrated                Illiterate
## 251             27     Hindu   Not Migrated           Graduate Degree
## 252             27     Hindu   Not Migrated           Graduate Degree
## 253             51     Hindu   Not Migrated                Illiterate
## 254             58     Hindu   Not Migrated           Secondary Level
## 255             64     Hindu   Not Migrated    Higher Secondary Level
## 256             35     Hindu   Not Migrated                Illiterate
## 257             39     Hindu   Not Migrated             Primary Level
## 258             47     Hindu   Not Migrated             Primary Level
## 259             57     Hindu   Not Migrated                Illiterate
## 260             20     Hindu   Not Migrated    Higher Secondary Level
## 261             36     Hindu   Not Migrated     Lower Secondary Level
## 262             42     Hindu   Not Migrated           Graduate Degree
## 263             42     Hindu   Not Migrated                  Literate
## 264             21     Hindu       Migrated    Higher Secondary Level
## 265             70     Hindu   Not Migrated                Illiterate
## 266             34     Hindu   Not Migrated             Primary Level
## 267             38     Hindu   Not Migrated     Lower Secondary Level
## 268             40     Hindu       Migrated           Secondary Level
## 269             69     Hindu       Migrated                Illiterate
## 270             29     Hindu       Migrated                  Literate
## 271             58 Christian   Not Migrated     Lower Secondary Level
## 272             26     Hindu   Not Migrated           Graduate Degree
## 273             20     Hindu   Not Migrated    Higher Secondary Level
## 274             42     Hindu   Not Migrated             Primary Level
## 275             35     Hindu   Not Migrated    Higher Secondary Level
## 276             47     Hindu   Not Migrated           Secondary Level
## 277             55     Hindu       Migrated                  Literate
## 278             75     Hindu   Not Migrated    Higher Secondary Level
## 279             19 Christian   Not Migrated    Higher Secondary Level
## 280             52     Hindu   Not Migrated Master's Degree or Higher
## 281             24     Hindu   Not Migrated           Graduate Degree
## 282             32     Hindu   Not Migrated Master's Degree or Higher
## 283             24     Hindu   Not Migrated             Primary Level
## 284             36     Hindu       Migrated    Higher Secondary Level
## 285             23     Hindu   Not Migrated                  Literate
## 286             39     Hindu   Not Migrated             Primary Level
## 287             28     Hindu   Not Migrated           Secondary Level
## 288             24     Hindu   Not Migrated                  Literate
## 289             64     Hindu   Not Migrated                Illiterate
## 290             27     Hindu   Not Migrated           Graduate Degree
## 291             23     Hindu       Migrated           Graduate Degree
## 292             38     Hindu   Not Migrated                  Literate
## 293             39     Hindu   Not Migrated     Lower Secondary Level
## 294             22     Hindu   Not Migrated           Graduate Degree
## 295             42  Buddhist       Migrated             Primary Level
## 296             37  Buddhist       Migrated     Lower Secondary Level
## 297             43     Hindu   Not Migrated                  Literate
## 298             38     Hindu   Not Migrated Master's Degree or Higher
## 299             53 Christian       Migrated                  Literate
## 300             48     Hindu       Migrated           Secondary Level
## 302             49     Hindu   Not Migrated Master's Degree or Higher
## 303             47     Hindu   Not Migrated    Higher Secondary Level
## 304             58     Hindu       Migrated           Graduate Degree
## 305             45     Hindu       Migrated    Higher Secondary Level
## 306             20     Hindu   Not Migrated    Higher Secondary Level
## 307             64     Hindu   Not Migrated           Secondary Level
## 308             47     Hindu   Not Migrated    Higher Secondary Level
## 309             53     Hindu   Not Migrated           Secondary Level
## 310             54     Hindu   Not Migrated     Lower Secondary Level
## 311             53     Hindu   Not Migrated           Secondary Level
## 312             39     Hindu   Not Migrated           Graduate Degree
## 313             56     Hindu   Not Migrated           Secondary Level
## 314             54     Hindu   Not Migrated                  Literate
## 315             75     Hindu   Not Migrated                Illiterate
## 316             62     Hindu   Not Migrated           Graduate Degree
## 317             70     Hindu       Migrated                  Literate
## 318             69     Hindu   Not Migrated                Illiterate
## 319             46     Hindu   Not Migrated           Graduate Degree
## 320             46     Hindu       Migrated           Graduate Degree
## 321             45     Hindu   Not Migrated    Higher Secondary Level
## 322             39     Hindu   Not Migrated     Lower Secondary Level
## 323             68     Hindu   Not Migrated                  Literate
## 324             47     Hindu   Not Migrated     Lower Secondary Level
## 325             33     Hindu   Not Migrated                  Literate
## 326             24     Hindu   Not Migrated           Secondary Level
## 327             43     Hindu   Not Migrated           Graduate Degree
## 328             24     Hindu   Not Migrated           Secondary Level
## 329             75     Hindu   Not Migrated                Illiterate
## 330             71     Hindu   Not Migrated                  Literate
## 331             66     Hindu   Not Migrated                  Literate
## 332             65     Hindu   Not Migrated             Primary Level
## 333             46     Hindu   Not Migrated                Illiterate
## 334             55     Hindu   Not Migrated                Illiterate
## 335             25     Hindu   Not Migrated                Illiterate
## 336             44     Hindu   Not Migrated     Lower Secondary Level
## 337             72     Hindu   Not Migrated     Lower Secondary Level
## 338             66     Hindu   Not Migrated                  Literate
## 339             25     Hindu   Not Migrated           Graduate Degree
## 340             45     Hindu   Not Migrated     Lower Secondary Level
## 341             52     Hindu   Not Migrated           Secondary Level
## 342             46     Hindu   Not Migrated           Secondary Level
## 343             40     Hindu   Not Migrated    Higher Secondary Level
## 344             52     Hindu   Not Migrated           Secondary Level
## 345             66     Hindu   Not Migrated                  Literate
## 346             41     Hindu       Migrated    Higher Secondary Level
## 347             59     Hindu   Not Migrated                  Literate
## 348             63     Hindu   Not Migrated           Secondary Level
## 349             44     Hindu   Not Migrated           Secondary Level
## 350             28     Hindu       Migrated           Graduate Degree
## 351             50     Hindu   Not Migrated                  Literate
## 352             54     Hindu   Not Migrated                Illiterate
## 353             21     Hindu       Migrated           Secondary Level
## 354             80     Hindu       Migrated                Illiterate
## 355             38     Hindu   Not Migrated     Lower Secondary Level
## 356             38 Christian   Not Migrated                  Literate
## 357             60     Hindu   Not Migrated           Secondary Level
## 358             26     Hindu   Not Migrated           Secondary Level
## 359             35     Hindu   Not Migrated           Secondary Level
## 360             32     Hindu       Migrated    Higher Secondary Level
## 361             57     Hindu   Not Migrated                  Literate
## 362             33     Hindu       Migrated     Lower Secondary Level
## 363             21     Hindu   Not Migrated    Higher Secondary Level
## 364             27     Hindu       Migrated           Graduate Degree
## 365             61     Hindu   Not Migrated                Illiterate
## 366             37     Hindu   Not Migrated           Secondary Level
## 367             30     Hindu       Migrated     Lower Secondary Level
## 368             22     Hindu       Migrated     Lower Secondary Level
## 369             83     Hindu   Not Migrated                  Literate
## 370             36     Hindu   Not Migrated           Secondary Level
## 371             41     Hindu       Migrated                  Literate
## 372             26     Hindu   Not Migrated           Graduate Degree
## 373             43     Hindu       Migrated                  Literate
## 374             20     Hindu   Not Migrated           Graduate Degree
## 375             34     Hindu   Not Migrated     Lower Secondary Level
## 376             60     Hindu       Migrated                  Literate
## 377             53     Hindu   Not Migrated    Higher Secondary Level
## 378             74     Hindu   Not Migrated                  Literate
## 379             28     Hindu       Migrated                  Literate
## 380             22     Hindu       Migrated    Higher Secondary Level
## 381             57     Hindu       Migrated                Illiterate
## 382             48     Hindu       Migrated                  Literate
## 383             53     Hindu   Not Migrated     Lower Secondary Level
## 384             27     Hindu       Migrated                  Literate
## 385             29     Hindu   Not Migrated           Secondary Level
## 386             33     Hindu   Not Migrated           Secondary Level
## 387             44     Hindu   Not Migrated    Higher Secondary Level
## 388             70     Hindu       Migrated                  Literate
## 389             21     Hindu       Migrated    Higher Secondary Level
## 390             20     Hindu   Not Migrated           Graduate Degree
## 391             29     Hindu   Not Migrated           Secondary Level
## 392             39     Hindu       Migrated           Secondary Level
## 393             48     Hindu       Migrated                  Literate
## 394             70     Hindu       Migrated                Illiterate
## 395             64     Hindu   Not Migrated           Secondary Level
## 396             35     Hindu       Migrated    Higher Secondary Level
## 397             54     Hindu   Not Migrated           Secondary Level
## 398             28     Hindu   Not Migrated           Secondary Level
## 399             27     Hindu       Migrated                  Literate
## 400             27     Hindu   Not Migrated    Higher Secondary Level
## 401             49     Hindu   Not Migrated           Secondary Level
## 402             19  Buddhist           <NA>    Higher Secondary Level
## 403             32     Hindu   Not Migrated           Graduate Degree
## 404             40     Hindu   Not Migrated           Graduate Degree
## 405             75     Hindu   Not Migrated           Graduate Degree
## 406             51  Buddhist   Not Migrated                Illiterate
## 407             56  Buddhist   Not Migrated             Primary Level
## 408             55     Hindu   Not Migrated           Graduate Degree
## 409             92  Buddhist           <NA>                Illiterate
## 410             76     Hindu   Not Migrated             Primary Level
## 411             28  Buddhist   Not Migrated           Graduate Degree
## 412             36     Hindu   Not Migrated           Graduate Degree
## 413             23  Buddhist   Not Migrated Master's Degree or Higher
## 414             61  Buddhist   Not Migrated             Primary Level
## 415             65     Hindu   Not Migrated                Illiterate
## 416             45  Buddhist   Not Migrated           Secondary Level
## 417             66     Hindu   Not Migrated                Illiterate
## 418             56  Buddhist   Not Migrated             Primary Level
## 419             30     Hindu   Not Migrated    Higher Secondary Level
## 420             76     Hindu       Migrated                  Literate
## 421             23  Buddhist   Not Migrated           Graduate Degree
## 422             63     Hindu   Not Migrated                Illiterate
## 423             44  Buddhist   Not Migrated             Primary Level
## 424             52     Hindu   Not Migrated           Graduate Degree
## 425             31     Hindu   Not Migrated           Graduate Degree
## 426             26     Hindu   Not Migrated           Graduate Degree
## 427             50     Hindu       Migrated           Graduate Degree
## 428             56  Buddhist   Not Migrated           Graduate Degree
## 429             45     Hindu   Not Migrated     Lower Secondary Level
## 430             43  Buddhist   Not Migrated           Secondary Level
## 431             71     Hindu   Not Migrated Master's Degree or Higher
## 432             18     Hindu   Not Migrated           Secondary Level
## 433             33     Hindu   Not Migrated           Graduate Degree
## 434             43  Buddhist   Not Migrated                  Literate
## 435             20     Hindu   Not Migrated                  Literate
## 436             51      <NA>       Migrated     Lower Secondary Level
## 437             41     Hindu       Migrated           Graduate Degree
## 438             42     Hindu   Not Migrated                  Literate
## 439             47     Hindu   Not Migrated Master's Degree or Higher
## 440             65  Buddhist       Migrated                Illiterate
## 441             26  Buddhist   Not Migrated    Higher Secondary Level
## 442             52     Hindu   Not Migrated                Illiterate
## 443             41     Hindu   Not Migrated             Primary Level
## 444             41     Hindu   Not Migrated                  Literate
## 445             54     Hindu   Not Migrated Master's Degree or Higher
## 446             27  Buddhist   Not Migrated           Graduate Degree
## 447             31     Hindu   Not Migrated                      <NA>
## 448             39     Hindu   Not Migrated           Graduate Degree
## 449             34  Buddhist   Not Migrated Master's Degree or Higher
## 450             44     Hindu   Not Migrated                Illiterate
## 451             48     Hindu   Not Migrated                      <NA>
## 452             66     Hindu   Not Migrated Master's Degree or Higher
## 453             22     Hindu   Not Migrated    Higher Secondary Level
## 454             35     Hindu       Migrated Master's Degree or Higher
## 455             35     Hindu   Not Migrated                      <NA>
## 456             30     Hindu   Not Migrated    Higher Secondary Level
## 457             58     Hindu       Migrated           Graduate Degree
## 458             32     Hindu       Migrated Master's Degree or Higher
## 459             29     Hindu       Migrated    Higher Secondary Level
## 460             18     Hindu       Migrated           Secondary Level
## 461             28  Buddhist   Not Migrated    Higher Secondary Level
## 462             29     Hindu       Migrated    Higher Secondary Level
## 463             21     Hindu   Not Migrated    Higher Secondary Level
## 464             20     Hindu       Migrated           Secondary Level
## 465             28     Hindu       Migrated    Higher Secondary Level
## 466             35     Hindu       Migrated Master's Degree or Higher
## 467             28     Hindu       Migrated                      <NA>
## 468             19  Buddhist       Migrated           Secondary Level
## 469             20     Hindu       Migrated    Higher Secondary Level
## 470             40     Hindu           <NA>     Lower Secondary Level
## 471             26     Hindu   Not Migrated    Higher Secondary Level
## 472             35     Hindu   Not Migrated           Graduate Degree
## 473             47     Hindu           <NA>    Higher Secondary Level
## 474             29     Hindu           <NA>           Secondary Level
## 475             21     Hindu   Not Migrated           Graduate Degree
## 476             79     Hindu   Not Migrated                  Literate
## 477             21     Hindu       Migrated           Graduate Degree
## 478             39     Hindu   Not Migrated           Graduate Degree
## 479             55     Hindu   Not Migrated                Illiterate
## 480             70     Hindu       Migrated                  Literate
## 481             40  Buddhist   Not Migrated           Secondary Level
## 482             27     Hindu       Migrated Master's Degree or Higher
## 483             32     Hindu   Not Migrated           Graduate Degree
## 484             35     Hindu   Not Migrated Master's Degree or Higher
## 485             36     Hindu       Migrated    Higher Secondary Level
## 486             NA     Hindu       Migrated           Graduate Degree
## 487             39     Hindu       Migrated Master's Degree or Higher
## 488             36  Buddhist       Migrated           Secondary Level
## 489             25     Hindu       Migrated           Graduate Degree
## 490             26     Hindu       Migrated Master's Degree or Higher
## 491             23     Hindu       Migrated Master's Degree or Higher
## 492             45     Hindu       Migrated    Higher Secondary Level
## 493             34     Hindu       Migrated Master's Degree or Higher
## 494             49     Hindu       Migrated           Graduate Degree
## 495             27     Hindu       Migrated    Higher Secondary Level
## 496             32     Hindu       Migrated           Graduate Degree
##      Occupational.Status                        Occupation.if.Working
## 1             House wife                                         <NA>
## 2             House wife                                         <NA>
## 3          Self-employed                              Labor (skilled)
## 4                Working                             Teacher - School
## 5             Unemployed                                         <NA>
## 6                Student                                         <NA>
## 7          Self-employed                                        Other
## 8             House wife                                         <NA>
## 9                Working                             Teacher - School
## 10               Student                                         <NA>
## 11         Self-employed                              Labor (skilled)
## 12            House wife                                       Farmer
## 13               Retired                             Teacher - School
## 14         Self-employed                                         <NA>
## 15               Working                                       Farmer
## 16         Self-employed                                         <NA>
## 17               Working                                       Farmer
## 18         Self-employed                                         <NA>
## 19               Student                                       Farmer
## 20               Working                                       Farmer
## 21               Student                       Professor - University
## 22               Working                               Public Servant
## 23               Working                                        Other
## 24               Working                               Public Servant
## 25         Self-employed                              Labor (skilled)
## 26            Unemployed                                       Farmer
## 27               Working Professional Lawyer, Doctor, Accountant, etc
## 28            House wife                                         <NA>
## 29            House wife                                       Farmer
## 30               Working                               Public Servant
## 31         Self-employed                           Laborr (unskilled)
## 32            House wife                                       Farmer
## 33         Self-employed                              Labor (skilled)
## 34               Working                                        Other
## 35               Working                                        Other
## 36         Self-employed                              Labor (skilled)
## 37            Unemployed                                         <NA>
## 38         Self-employed                              Labor (skilled)
## 39            House wife                                         <NA>
## 40               Working                             Teacher - School
## 41               Retired                             Teacher - School
## 42         Self-employed                              Labor (skilled)
## 43         Self-employed                              Labor (skilled)
## 44            House wife                                         <NA>
## 45            House wife                                         <NA>
## 46               Working                             Teacher - School
## 47               Working                             Teacher - School
## 48               Working                             Teacher - School
## 49            House wife                                         <NA>
## 50            House wife                                         <NA>
## 51               Working             Military service/police/security
## 52            House wife                                       Farmer
## 53            House wife                                         <NA>
## 54               Working                             Teacher - School
## 55            House wife                                       Farmer
## 56            House wife                                       Farmer
## 57            House wife                                       Farmer
## 58               Working Professional Lawyer, Doctor, Accountant, etc
## 59               Retired             Military service/police/security
## 60               Student                                         <NA>
## 61            House wife                                         <NA>
## 62                  <NA>                                       Farmer
## 63                  <NA>                                       Farmer
## 64            House wife                                         <NA>
## 65               Student                                         <NA>
## 66            House wife                                         <NA>
## 67               Student                                         <NA>
## 68            House wife                                         <NA>
## 69            House wife                                         <NA>
## 70            House wife                                         <NA>
## 71               Student                                         <NA>
## 72               Student                                         <NA>
## 73                  <NA>                                       Farmer
## 74               Working                              Labor (skilled)
## 75                  <NA>                                       Farmer
## 76                  <NA>                                       Farmer
## 77                  <NA>                                       Farmer
## 78                  <NA>                                       Farmer
## 79                  <NA>                                       Farmer
## 80                  <NA>                           Laborr (unskilled)
## 81               Working                              Labor (skilled)
## 82               Student                                         <NA>
## 83               Working Professional Lawyer, Doctor, Accountant, etc
## 84            House wife                                         <NA>
## 85            House wife                                         <NA>
## 86            House wife                                       Farmer
## 87            House wife                                         <NA>
## 88               Working             Military service/police/security
## 89            House wife                                         <NA>
## 90            House wife                                         <NA>
## 91               Student                                         <NA>
## 92            House wife                                         <NA>
## 93            House wife                                         <NA>
## 94                  <NA>                                       Farmer
## 95                  <NA>                                       Farmer
## 96               Working                             Teacher - School
## 97               Working             Military service/police/security
## 98               Working                              Labor (skilled)
## 99            Unemployed                                       Farmer
## 100           House wife                                         <NA>
## 101              Working                              Labor (skilled)
## 102           House wife                                       Farmer
## 103              Working             Military service/police/security
## 104        Self-employed                                       Farmer
## 105           House wife                                       Farmer
## 106              Working                                       Farmer
## 107              Working                                       Farmer
## 108              Student                                        Other
## 109           House wife                                       Farmer
## 110           House wife                           Laborr (unskilled)
## 111              Working                              Labor (skilled)
## 112           House wife                                       Farmer
## 113              Working                              Labor (skilled)
## 114              Working                                       Farmer
## 115        Self-employed                              Labor (skilled)
## 116           House wife                                       Farmer
## 117           House wife                           Laborr (unskilled)
## 118           Unemployed                                        Other
## 119              Working                                       Farmer
## 120              Working                           Laborr (unskilled)
## 121           House wife                                        Other
## 122              Working                                       Farmer
## 123              Student                                       Farmer
## 124              Working                                       Farmer
## 125              Working                                       Farmer
## 126              Retired                                         <NA>
## 127              Working                                       Farmer
## 128              Working                              Labor (skilled)
## 129              Working                                       Farmer
## 130              Working                                       Farmer
## 131              Working                                       Farmer
## 132           House wife                                         <NA>
## 133           Unemployed                                         <NA>
## 134        Self-employed                       Professor - University
## 135           House wife                                         <NA>
## 136        Self-employed                                         <NA>
## 137        Self-employed                                         <NA>
## 138           House wife                                         <NA>
## 139              Working             Military service/police/security
## 140           House wife                                         <NA>
## 141              Working                               Public Servant
## 142           House wife                                         <NA>
## 143           House wife                                         <NA>
## 144              Working                             Teacher - School
## 145              Working                           Laborr (unskilled)
## 146              Working                                       Farmer
## 147        Self-employed                                         <NA>
## 148           House wife                                         <NA>
## 149           Unemployed                                         <NA>
## 150              Working                             Teacher - School
## 151           House wife                                         <NA>
## 152              Working                              Labor (skilled)
## 153           House wife                                         <NA>
## 154              Working                                       Farmer
## 155              Working                                       Farmer
## 156              Working                                       Farmer
## 157              Working                                       Farmer
## 158              Working                                       Farmer
## 159           House wife                                         <NA>
## 160              Working                                       Farmer
## 161              Working                             Teacher - School
## 162              Working                                       Farmer
## 163           Unemployed                                         <NA>
## 164           Unemployed                                         <NA>
## 165              Working                             Teacher - School
## 166              Working                                       Farmer
## 167              Working                                        Other
## 168              Working                                       Farmer
## 169              Working                                       Farmer
## 170              Working                                       Farmer
## 171           Unemployed                                         <NA>
## 172           House wife                                         <NA>
## 173           Unemployed                                         <NA>
## 174           Unemployed                                         <NA>
## 175        Self-employed                                        Other
## 176              Working             Military service/police/security
## 177           House wife                                         <NA>
## 178              Working                              Labor (skilled)
## 179           House wife                                         <NA>
## 180              Working                              Labor (skilled)
## 181              Working                                       Farmer
## 182           Unemployed                                         <NA>
## 183           Unemployed                                         <NA>
## 184           House wife                                         <NA>
## 185        Self-employed                                         <NA>
## 186              Working                               Public Servant
## 187           Unemployed                                         <NA>
## 188           House wife                                         <NA>
## 189           Unemployed                                         <NA>
## 190        Self-employed                                         <NA>
## 191              Working                                       Farmer
## 192           Unemployed                                         <NA>
## 193        Self-employed                                         <NA>
## 194           House wife                                         <NA>
## 195           Unemployed                                         <NA>
## 196              Working                                       Farmer
## 197           House wife                                         <NA>
## 198        Self-employed                                         <NA>
## 199           Unemployed                                         <NA>
## 200              Working                                       Farmer
## 201              Working                              Labor (skilled)
## 202              Working                                       Farmer
## 203           House wife                                         <NA>
## 204              Working                                       Farmer
## 205              Working                                       Farmer
## 206              Student                                         <NA>
## 207           House wife                                         <NA>
## 208           Unemployed                                         <NA>
## 209              Working                             Teacher - School
## 210           Unemployed                                         <NA>
## 211              Working                                       Farmer
## 212              Working                             Teacher - School
## 213           Unemployed                                         <NA>
## 214              Working                              Labor (skilled)
## 215              Working                                       Farmer
## 216              Working                                       Farmer
## 217              Working                                       Farmer
## 218           House wife                                         <NA>
## 219              Working                                        Other
## 220              Working                              Labor (skilled)
## 221              Working                             Teacher - School
## 222              Student                                         <NA>
## 223              Working                                       Farmer
## 224              Working                             Teacher - School
## 225              Working             Military service/police/security
## 226              Student                                         <NA>
## 227              Working                               Public Servant
## 228              Working                                       Farmer
## 229              Working                                       Farmer
## 230           House wife                                       Farmer
## 231           House wife                                         <NA>
## 232           House wife                                         <NA>
## 233           House wife                                         <NA>
## 234              Working                                       Farmer
## 235              Working                           Laborr (unskilled)
## 236           House wife                                         <NA>
## 237              Working                                       Farmer
## 238           House wife                                         <NA>
## 239           House wife                                       Farmer
## 240           House wife                                         <NA>
## 241           House wife                                         <NA>
## 242           House wife                                         <NA>
## 243              Working                                       Farmer
## 244              Working                              Labor (skilled)
## 245              Working                           Laborr (unskilled)
## 246              Working                           Laborr (unskilled)
## 247           Unemployed                                         <NA>
## 248           Unemployed                                         <NA>
## 249              Working                           Laborr (unskilled)
## 250              Working                                       Farmer
## 251              Working                              Labor (skilled)
## 252              Student                                         <NA>
## 253           Unemployed                                         <NA>
## 254        Self-employed                              Labor (skilled)
## 255              Working                              Labor (skilled)
## 256        Self-employed                           Laborr (unskilled)
## 257           House wife                                         <NA>
## 258           Unemployed                                         <NA>
## 259           Unemployed                                         <NA>
## 260              Student                                         <NA>
## 261        Self-employed                                         <NA>
## 262              Working                             Teacher - School
## 263        Self-employed                                         <NA>
## 264              Student                                         <NA>
## 265           House wife                                         <NA>
## 266        Self-employed                                         <NA>
## 267           Unemployed                                         <NA>
## 268        Self-employed                                         <NA>
## 269           House wife                                         <NA>
## 270        Self-employed                                         <NA>
## 271        Self-employed                                         <NA>
## 272              Retired                               Public Servant
## 273              Student                                         <NA>
## 274        Self-employed                           Laborr (unskilled)
## 275              Working                             Teacher - School
## 276           Unemployed                                        Other
## 277           House wife                                         <NA>
## 278              Retired                                         <NA>
## 279              Student                                         <NA>
## 280              Working                             Teacher - School
## 281              Student                                         <NA>
## 282              Working          Executive, Top management, Director
## 283           House wife                                         <NA>
## 284        Self-employed                                        Other
## 285           House wife                                         <NA>
## 286           House wife                                         <NA>
## 287           Unemployed                                         <NA>
## 288        Self-employed                                         <NA>
## 289        Self-employed                                         <NA>
## 290        Self-employed                                         <NA>
## 291              Working                                         <NA>
## 292           House wife                                         <NA>
## 293              Working                             Teacher - School
## 294              Student                                         <NA>
## 295           Unemployed                                         <NA>
## 296           House wife                                         <NA>
## 297           House wife                                         <NA>
## 298              Working                             Teacher - School
## 299           House wife                                         <NA>
## 300           House wife                                         <NA>
## 302              Working                               Public Servant
## 303              Working                             Teacher - School
## 304        Self-employed                                         <NA>
## 305        Self-employed Professional Lawyer, Doctor, Accountant, etc
## 306              Working                              Labor (skilled)
## 307              Retired                               Public Servant
## 308        Self-employed                                         <NA>
## 309        Self-employed                                         <NA>
## 310           House wife                                         <NA>
## 311              Working                               Public Servant
## 312              Working                               Public Servant
## 313              Working                                       Farmer
## 314              Retired                                       Farmer
## 315              Working                                       Farmer
## 316              Working                                       Farmer
## 317           House wife                                         <NA>
## 318           House wife                                         <NA>
## 319        Self-employed Professional Lawyer, Doctor, Accountant, etc
## 320              Working                             Teacher - School
## 321              Working                             Teacher - School
## 322           Unemployed                                         <NA>
## 323           House wife                                         <NA>
## 324           House wife                                         <NA>
## 325           House wife                                         <NA>
## 326              Working                                       Farmer
## 327              Working                               Public Servant
## 328        Self-employed                                         <NA>
## 329           Unemployed                                       Farmer
## 330           Unemployed                                       Farmer
## 331           Unemployed                                       Farmer
## 332           Unemployed                                       Farmer
## 333           Unemployed                                       Farmer
## 334        Self-employed                                       Farmer
## 335           Unemployed                                       Farmer
## 336           Unemployed                                       Farmer
## 337           Unemployed                                       Farmer
## 338           Unemployed                                       Farmer
## 339              Student                                         <NA>
## 340              Working                                       Farmer
## 341              Retired                               Public Servant
## 342              Working                             Teacher - School
## 343              Working                                        Other
## 344           House wife                                         <NA>
## 345           House wife                                         <NA>
## 346              Working                             Teacher - School
## 347           House wife                                         <NA>
## 348              Retired                               Public Servant
## 349           House wife                                         <NA>
## 350           Unemployed                                         <NA>
## 351           House wife                                         <NA>
## 352           House wife                                         <NA>
## 353              Student                                         <NA>
## 354           House wife                                         <NA>
## 355        Self-employed                              Labor (skilled)
## 356           House wife                                         <NA>
## 357           Unemployed                                         <NA>
## 358              Working                                        Other
## 359           Unemployed                                         <NA>
## 360           House wife                                         <NA>
## 361              Retired             Military service/police/security
## 362           House wife                                         <NA>
## 363           Unemployed                                         <NA>
## 364              Working                              Labor (skilled)
## 365           House wife                                         <NA>
## 366              Working                                        Other
## 367           House wife                                         <NA>
## 368           House wife                                         <NA>
## 369           Unemployed                                         <NA>
## 370           Unemployed                                         <NA>
## 371           House wife                                         <NA>
## 372              Student                                         <NA>
## 373           House wife                                         <NA>
## 374              Student                                         <NA>
## 375           House wife                                         <NA>
## 376           House wife                                         <NA>
## 377              Working                               Public Servant
## 378              Retired                                         <NA>
## 379           House wife                                         <NA>
## 380              Student                                         <NA>
## 381           House wife                                         <NA>
## 382           House wife                                         <NA>
## 383              Working             Military service/police/security
## 384           House wife                                         <NA>
## 385           Unemployed                                         <NA>
## 386        Self-employed                                        Other
## 387              Working                                        Other
## 388           House wife                                         <NA>
## 389              Student                                         <NA>
## 390              Student                                         <NA>
## 391           Unemployed                                         <NA>
## 392           House wife                                         <NA>
## 393           House wife                                         <NA>
## 394           House wife                                         <NA>
## 395              Retired                                         <NA>
## 396           Unemployed                                         <NA>
## 397           Unemployed                                         <NA>
## 398           Unemployed                                         <NA>
## 399              Working                           Laborr (unskilled)
## 400              Working                                        Other
## 401           Unemployed                                         <NA>
## 402              Student                                         <NA>
## 403           Unemployed                                       Farmer
## 404              Working Professional Lawyer, Doctor, Accountant, etc
## 405              Retired                                        Other
## 406        Self-employed                                       Farmer
## 407           House wife                              Labor (skilled)
## 408              Working                             Teacher - School
## 409           Unemployed                                         <NA>
## 410              Retired                               Public Servant
## 411           Unemployed                                         <NA>
## 412              Working                             Teacher - School
## 413              Working                               Public Servant
## 414           House wife                                        Other
## 415           House wife                                        Other
## 416           House wife                                         <NA>
## 417           Unemployed                                        Other
## 418        Self-employed                                       Farmer
## 419              Student                       Professor - University
## 420              Retired                               Public Servant
## 421              Working                               Public Servant
## 422           House wife                                         <NA>
## 423           Unemployed                                         <NA>
## 424           House wife                                         <NA>
## 425           House wife                                        Other
## 426              Working                               Public Servant
## 427              Working                             Teacher - School
## 428           Unemployed                                         <NA>
## 429        Self-employed                              Labor (skilled)
## 430        Self-employed                              Labor (skilled)
## 431              Retired                               Public Servant
## 432              Student                                         <NA>
## 433              Working Professional Lawyer, Doctor, Accountant, etc
## 434           House wife                                         <NA>
## 435              Student                                         <NA>
## 436           House wife                                         <NA>
## 437              Working                               Public Servant
## 438              Student                                        Other
## 439              Working                       Professor - University
## 440           House wife                                         <NA>
## 441        Self-employed                                         <NA>
## 442              Retired                                        Other
## 443           House wife                                         <NA>
## 444              Working                               Public Servant
## 445              Working                               Public Servant
## 446        Self-employed                                         <NA>
## 447              Working                       Professor - University
## 448              Working                               Public Servant
## 449              Working                               Public Servant
## 450           Unemployed                                       Farmer
## 451           Unemployed                                       Farmer
## 452              Retired                               Public Servant
## 453              Student                                        Other
## 454              Working                               Public Servant
## 455              Student                                         <NA>
## 456              Working Professional Lawyer, Doctor, Accountant, etc
## 457              Working                             Teacher - School
## 458              Working                              Labor (skilled)
## 459           Unemployed                                         <NA>
## 460           Unemployed                                         <NA>
## 461           House wife                                         <NA>
## 462              Student                                         <NA>
## 463           Unemployed                                         <NA>
## 464              Student                                         <NA>
## 465              Working                             Teacher - School
## 466        Self-employed                                         <NA>
## 467              Student                                         <NA>
## 468           House wife                                         <NA>
## 469              Student                                         <NA>
## 470           House wife                                         <NA>
## 471           Unemployed                                         <NA>
## 472              Retired                                         <NA>
## 473           House wife                                         <NA>
## 474           House wife                                         <NA>
## 475              Student                                         <NA>
## 476           Unemployed                                         <NA>
## 477              Student                                         <NA>
## 478        Self-employed                                         <NA>
## 479        Self-employed                                         <NA>
## 480           House wife                                         <NA>
## 481           House wife                                         <NA>
## 482        Self-employed                                         <NA>
## 483              Working                             Teacher - School
## 484              Working                             Teacher - School
## 485           House wife                                         <NA>
## 486           House wife                                         <NA>
## 487              Working                               Public Servant
## 488           House wife                                         <NA>
## 489              Student                                         <NA>
## 490        Self-employed                                         <NA>
## 491              Student                                         <NA>
## 492              Retired                                         <NA>
## 493              Working          Executive, Top management, Director
## 494              Student                                         <NA>
## 495              Student                                         <NA>
## 496              Working                                         <NA>
##                                   Occupational.Sector Monthly.Income
## 1                                        Private Firm          30000
## 2                                               Other          20000
## 3                                        Private Firm          15000
## 4                                       Public Sector          40000
## 5                                                <NA>             NA
## 6                                                <NA>             NA
## 7                                        Private Firm          20000
## 8                                                <NA>          10000
## 9                                       Public Sector          15000
## 10   NGOs/Foundations/CBOs/Trade Unions/Civil Society          15000
## 11                                       Private Firm          20000
## 12                                       Private Firm             NA
## 13                                               <NA>          25000
## 14                                       Private Firm          15000
## 15                                       Private Firm          20000
## 16                                       Private Firm          12000
## 17                                      Public Sector           5000
## 18                                       Private Firm          15000
## 19                                       Private Firm           5000
## 20                                               <NA>           8000
## 21   NGOs/Foundations/CBOs/Trade Unions/Civil Society           5000
## 22                                              Other          10000
## 23   NGOs/Foundations/CBOs/Trade Unions/Civil Society           1500
## 24                                       Private Firm          70000
## 25                                       Private Firm             NA
## 26                                               <NA>           5000
## 27   NGOs/Foundations/CBOs/Trade Unions/Civil Society          20000
## 28                                               <NA>          50000
## 29                                               <NA>          15000
## 30                                               <NA>          20000
## 31                                      Public Sector          24000
## 32                                               <NA>           5000
## 33                                       Private Firm          30000
## 34                                      Public Sector          50000
## 35   NGOs/Foundations/CBOs/Trade Unions/Civil Society          20000
## 36                                       Private Firm             NA
## 37                                               <NA>             NA
## 38                                       Private Firm             NA
## 39                                       Private Firm          15000
## 40                                      Public Sector          18000
## 41                                       Private Firm             NA
## 42                                       Private Firm             NA
## 43                                       Private Firm          10000
## 44                                               <NA>          15000
## 45                                               <NA>          10000
## 46                                       Private Firm          30000
## 47                                       Private Firm          20000
## 48                                      Public Sector          25000
## 49   NGOs/Foundations/CBOs/Trade Unions/Civil Society          15000
## 50                                              Other          20000
## 51                                      Public Sector          10000
## 52                                              Other           4000
## 53                                               <NA>           2500
## 54                                               <NA>          17000
## 55                                               <NA>           2500
## 56                                               <NA>          15000
## 57                                               <NA>          10000
## 58                                       Private Firm          12000
## 59                                      Public Sector           8000
## 60                                       Private Firm           5000
## 61                                               <NA>           2500
## 62                                               <NA>           7000
## 63                                               <NA>           4500
## 64                                               <NA>           4000
## 65                                               <NA>           2500
## 66                                               <NA>           3000
## 67                                               <NA>           2500
## 68                                               <NA>           1500
## 69                                               <NA>           2500
## 70                                               <NA>           2000
## 71                                               <NA>           3000
## 72                                               <NA>           2000
## 73                                               <NA>           7000
## 74                                               <NA>          11000
## 75                                               <NA>           8000
## 76                                               <NA>           9000
## 77                                               <NA>           5000
## 78                                               <NA>           9000
## 79                                               <NA>           3500
## 80                                               <NA>           7000
## 81                                               <NA>          15000
## 82                                               <NA>           2000
## 83                                               <NA>          21000
## 84                                               <NA>           2500
## 85                                               <NA>           2000
## 86                                               <NA>             NA
## 87                                               <NA>           1500
## 88                                               <NA>          12000
## 89                                               <NA>           2500
## 90                                               <NA>           2300
## 91                                               <NA>           1100
## 92                                               <NA>           2500
## 93                                               <NA>           2200
## 94                                               <NA>           6000
## 95                                               <NA>           5000
## 96                                               <NA>          18000
## 97                                               <NA>          12000
## 98                                               <NA>          10000
## 99                                               <NA>           4500
## 100                                              <NA>           3000
## 101                                              <NA>           5000
## 102                                              <NA>             NA
## 103                                              <NA>          14000
## 104  NGOs/Foundations/CBOs/Trade Unions/Civil Society          10000
## 105  NGOs/Foundations/CBOs/Trade Unions/Civil Society          11000
## 106  NGOs/Foundations/CBOs/Trade Unions/Civil Society             NA
## 107  NGOs/Foundations/CBOs/Trade Unions/Civil Society          14000
## 108                                              <NA>             NA
## 109                                              <NA>           5000
## 110                                              <NA>           6000
## 111  NGOs/Foundations/CBOs/Trade Unions/Civil Society          12000
## 112  NGOs/Foundations/CBOs/Trade Unions/Civil Society           8000
## 113                                              <NA>          15000
## 114                                              <NA>          10000
## 115  NGOs/Foundations/CBOs/Trade Unions/Civil Society          10000
## 116                                             Other              0
## 117                                              <NA>           5000
## 118                                             Other              0
## 119  NGOs/Foundations/CBOs/Trade Unions/Civil Society          10000
## 120                                              <NA>          10000
## 121                                             Other              0
## 122                                             Other              0
## 123                                      Private Firm              0
## 124                                              <NA>              0
## 125                                              <NA>          10000
## 126                                             Other             NA
## 127  NGOs/Foundations/CBOs/Trade Unions/Civil Society          10000
## 128                                              <NA>          15000
## 129                                              <NA>          10000
## 130                                              <NA>          15000
## 131                                              <NA>           8000
## 132                                              <NA>             NA
## 133                                              <NA>              0
## 134  NGOs/Foundations/CBOs/Trade Unions/Civil Society             NA
## 135                                              <NA>              0
## 136                                              <NA>          10000
## 137                                              <NA>             NA
## 138                                              <NA>           5000
## 139                                              <NA>          13000
## 140                                              <NA>              0
## 141                                              <NA>           5000
## 142                                              <NA>              0
## 143                                              <NA>             NA
## 144                                              <NA>          20000
## 145                                              <NA>           4000
## 146                                              <NA>           5000
## 147                                     Public Sector          28000
## 148                                              <NA>             NA
## 149                                              <NA>             NA
## 150                                     Public Sector          18000
## 151                                      Private Firm            500
## 152                                             Other           5000
## 153                                             Other            400
## 154                                             Other           3000
## 155                                      Private Firm            500
## 156                                      Private Firm            500
## 157                                      Private Firm            200
## 158                                      Private Firm           1000
## 159                                              <NA>            200
## 160                                      Private Firm            600
## 161                                             Other          10000
## 162                                             Other            600
## 163                                              <NA>             NA
## 164                                              <NA>             NA
## 165  NGOs/Foundations/CBOs/Trade Unions/Civil Society          10000
## 166                                             Other            500
## 167  NGOs/Foundations/CBOs/Trade Unions/Civil Society          15000
## 168                                             Other            500
## 169                                             Other           1000
## 170                                             Other           2000
## 171                                              <NA>             NA
## 172                                             Other            200
## 173                                              <NA>             NA
## 174                                              <NA>             NA
## 175                                             Other           5000
## 176                                             Other          13000
## 177                                             Other            300
## 178                                              <NA>          10000
## 179                                             Other            500
## 180                                             Other          10000
## 181                                             Other            500
## 182                                              <NA>             NA
## 183                                              <NA>             NA
## 184                                             Other           2000
## 185                                             Other            200
## 186                                             Other            500
## 187                                              <NA>             NA
## 188                                             Other            200
## 189                                              <NA>             NA
## 190                                             Other            500
## 191                                             Other            200
## 192                                              <NA>             NA
## 193                                             Other          20000
## 194                                             Other            200
## 195                                              <NA>             NA
## 196                                             Other             NA
## 197                                             Other             NA
## 198                                             Other            600
## 199                                              <NA>             NA
## 200                                             Other             NA
## 201  NGOs/Foundations/CBOs/Trade Unions/Civil Society          12000
## 202                                      Private Firm          10000
## 203                                      Private Firm           8000
## 204                                      Private Firm           9000
## 205                                      Private Firm          15000
## 206                                              <NA>           3000
## 207                                      Private Firm           7000
## 208                                      Private Firm           3000
## 209                                     Public Sector          20000
## 210                                      Private Firm             NA
## 211                                      Private Firm          55000
## 212  NGOs/Foundations/CBOs/Trade Unions/Civil Society          25000
## 213                                              <NA>             NA
## 214                                      Private Firm          10000
## 215                                      Private Firm           8000
## 216                                      Private Firm           9000
## 217                                      Private Firm           5000
## 218                                      Private Firm           7000
## 219                                      Private Firm          20000
## 220                                      Private Firm          15000
## 221                                      Private Firm          16000
## 222                                      Private Firm          21000
## 223                                      Private Firm          12000
## 224  NGOs/Foundations/CBOs/Trade Unions/Civil Society          18000
## 225                                     Public Sector          20000
## 226  NGOs/Foundations/CBOs/Trade Unions/Civil Society          13000
## 227                                     Public Sector          20000
## 228                                      Private Firm           8000
## 229                                      Private Firm          10000
## 230                                      Private Firm          25000
## 231                                      Private Firm          10000
## 232                                      Private Firm           7000
## 233                                      Private Firm           7000
## 234                                      Private Firm           8000
## 235  NGOs/Foundations/CBOs/Trade Unions/Civil Society          10000
## 236                                      Private Firm           5000
## 237                                      Private Firm           7000
## 238                                      Private Firm           3000
## 239                                      Private Firm          11000
## 240                                      Private Firm          10000
## 241                                      Private Firm           5000
## 242                                      Private Firm           5000
## 243                                      Private Firm          11000
## 244                                      Private Firm          16000
## 245  NGOs/Foundations/CBOs/Trade Unions/Civil Society          12000
## 246  NGOs/Foundations/CBOs/Trade Unions/Civil Society          10000
## 247                                      Private Firm           5000
## 248                                             Other             NA
## 249  NGOs/Foundations/CBOs/Trade Unions/Civil Society          12000
## 250                                      Private Firm           5000
## 251                                              <NA>          19000
## 252                                              <NA>             NA
## 253                                              <NA>             NA
## 254                                      Private Firm          42000
## 255                                              <NA>              1
## 256                                              <NA>          16000
## 257                                              <NA>             NA
## 258                                              <NA>             NA
## 259                                              <NA>             NA
## 260                                              <NA>             NA
## 261                                              <NA>          12000
## 262                                              <NA>          23000
## 263                                      Private Firm          19000
## 264                                              <NA>             NA
## 265                                              <NA>             NA
## 266                                      Private Firm          17000
## 267                                              <NA>             NA
## 268                                      Private Firm          22000
## 269                                              <NA>             NA
## 270                                      Private Firm          19000
## 271                                              <NA>             NA
## 272                                     Public Sector          17000
## 273                                              <NA>             NA
## 274                                              <NA>          15000
## 275                                              <NA>          16000
## 276                                     Public Sector             NA
## 277                                              <NA>             NA
## 278                                             Other             NA
## 279                                              <NA>             NA
## 280                                     Public Sector          30000
## 281                                              <NA>             NA
## 282                                              <NA>          30000
## 283                                              <NA>             NA
## 284                                             Other          20000
## 285                                      Private Firm              1
## 286                                              <NA>             NA
## 287                                              <NA>             NA
## 288                                              <NA>             NA
## 289                                      Private Firm             NA
## 290                                      Private Firm          32000
## 291                                              <NA>          18000
## 292                                             Other           8000
## 293                                              <NA>          17500
## 294                                              <NA>             NA
## 295                                              <NA>             NA
## 296                                              <NA>          12000
## 297                                      Private Firm          13000
## 298                                             Other             NA
## 299                                      Private Firm         130000
## 300                                              <NA>             NA
## 302                                     Public Sector          20000
## 303                                              <NA>          15000
## 304                                      Private Firm             NA
## 305                                      Private Firm          20000
## 306                                      Private Firm          10000
## 307                                              <NA>             NA
## 308                                      Private Firm          40000
## 309                                      Private Firm          25000
## 310                                              <NA>             NA
## 311                                     Public Sector          18600
## 312                                              <NA>          22000
## 313                                      Private Firm             NA
## 314                                              <NA>          21000
## 315                                      Private Firm             NA
## 316                                              <NA>             NA
## 317                                              <NA>             NA
## 318                                              <NA>             NA
## 319                                      Private Firm             NA
## 320                                     Public Sector          17000
## 321                                     Public Sector           1790
## 322                                              <NA>             NA
## 323                                              <NA>             NA
## 324                                              <NA>             NA
## 325                                              <NA>             NA
## 326                                              <NA>           5000
## 327                                     Public Sector          22000
## 328                                      Private Firm          15000
## 329                                              <NA>             NA
## 330                                              <NA>            500
## 331                                              <NA>             NA
## 332                                              <NA>             NA
## 333                                              <NA>             NA
## 334                                              <NA>             NA
## 335                                              <NA>             NA
## 336                                              <NA>             NA
## 337                                              <NA>             NA
## 338                                              <NA>             NA
## 339                                              <NA>             NA
## 340                                      Private Firm          25000
## 341                                     Public Sector          15000
## 342                                              <NA>          20000
## 343  NGOs/Foundations/CBOs/Trade Unions/Civil Society          22500
## 344                                              <NA>             NA
## 345                                              <NA>             NA
## 346                                     Public Sector             NA
## 347                                              <NA>             NA
## 348                                     Public Sector          10000
## 349                                              <NA>             NA
## 350                                              <NA>             NA
## 351                                              <NA>             NA
## 352                                              <NA>             NA
## 353                                              <NA>             NA
## 354                                              <NA>             NA
## 355                                              <NA>          12000
## 356                                              <NA>             NA
## 357                                              <NA>             NA
## 358                                              <NA>           8000
## 359                                              <NA>             NA
## 360                                              <NA>             NA
## 361                                              <NA>           8000
## 362                                              <NA>             NA
## 363                                              <NA>             NA
## 364                                              <NA>          10000
## 365                                              <NA>             NA
## 366                                              <NA>          12000
## 367                                              <NA>             NA
## 368                                              <NA>             NA
## 369                                              <NA>             NA
## 370                                              <NA>             NA
## 371                                              <NA>             NA
## 372                                              <NA>             NA
## 373                                              <NA>             NA
## 374                                              <NA>             NA
## 375                                              <NA>             NA
## 376                                              <NA>             NA
## 377                                              <NA>          25000
## 378                                              <NA>          10000
## 379                                              <NA>             NA
## 380                                              <NA>             NA
## 381                                              <NA>             NA
## 382                                              <NA>             NA
## 383                                              <NA>          13000
## 384                                              <NA>             NA
## 385                                              <NA>             NA
## 386                                              <NA>          15000
## 387                                              <NA>          15000
## 388                                              <NA>             NA
## 389                                              <NA>             NA
## 390                                              <NA>             NA
## 391                                              <NA>             NA
## 392                                              <NA>             NA
## 393                                              <NA>             NA
## 394                                              <NA>             NA
## 395                                              <NA>           9000
## 396                                              <NA>             NA
## 397                                              <NA>             NA
## 398                                              <NA>             NA
## 399                                      Private Firm           7000
## 400                                              <NA>          12000
## 401                                              <NA>             NA
## 402                                              <NA>             NA
## 403                                              <NA>             NA
## 404                                      Private Firm          15000
## 405                                             Other          16000
## 406                                              <NA>             NA
## 407                                              <NA>          20000
## 408                                     Public Sector          10000
## 409                                              <NA>             NA
## 410  NGOs/Foundations/CBOs/Trade Unions/Civil Society          15000
## 411                                              <NA>             NA
## 412                                      Private Firm          10000
## 413  NGOs/Foundations/CBOs/Trade Unions/Civil Society             NA
## 414                                             Other             NA
## 415                                             Other             NA
## 416                                              <NA>             NA
## 417                                              <NA>             NA
## 418                                              <NA>             NA
## 419                                              <NA>             NA
## 420                                             Other          18000
## 421                                              <NA>             NA
## 422                                              <NA>             NA
## 423                                              <NA>             NA
## 424                                              <NA>             NA
## 425                                              <NA>             NA
## 426                                              <NA>          20224
## 427                                              <NA>             NA
## 428                                              <NA>             NA
## 429                                              <NA>          30000
## 430                                              <NA>          10000
## 431                                              <NA>             NA
## 432                                              <NA>             NA
## 433                                              <NA>          20000
## 434                                              <NA>             NA
## 435                                              <NA>             NA
## 436                                              <NA>             NA
## 437                                              <NA>             NA
## 438  NGOs/Foundations/CBOs/Trade Unions/Civil Society             NA
## 439                                              <NA>             NA
## 440                                              <NA>             NA
## 441                                      Private Firm          30000
## 442                                              <NA>          18000
## 443                                              <NA>             NA
## 444                                     Public Sector          20000
## 445                                              <NA>          22000
## 446                                      Private Firm          40000
## 447                                              <NA>          30000
## 448                                              <NA>             NA
## 449                                              <NA>          30000
## 450                                              <NA>             NA
## 451                                              <NA>             NA
## 452                                              <NA>          20000
## 453                                              <NA>             NA
## 454                                              <NA>          35000
## 455                                              <NA>             NA
## 456                                              <NA>          15000
## 457                                              <NA>          25000
## 458                                              <NA>          35000
## 459                                              <NA>             NA
## 460                                              <NA>             NA
## 461                                              <NA>          15000
## 462                                              <NA>              0
## 463                                              <NA>              0
## 464                                              <NA>             NA
## 465                                              <NA>          10000
## 466                                              <NA>          60000
## 467                                              <NA>          10000
## 468                                              <NA>             NA
## 469                                              <NA>              0
## 470                                              <NA>             NA
## 471                                              <NA>              0
## 472                                              <NA>             NA
## 473                                              <NA>             NA
## 474                                              <NA>             NA
## 475                                              <NA>             NA
## 476                                              <NA>             NA
## 477                                              <NA>             NA
## 478                                              <NA>          50000
## 479                                              <NA>          15000
## 480                                              <NA>             NA
## 481                                              <NA>             NA
## 482                                              <NA>             NA
## 483                                              <NA>          10000
## 484                                              <NA>             NA
## 485                                              <NA>             NA
## 486                                              <NA>             NA
## 487                                              <NA>          19000
## 488                                              <NA>             NA
## 489                                              <NA>             NA
## 490                                              <NA>          25000
## 491                                              <NA>             NA
## 492                                              <NA>          15000
## 493                                              <NA>          50000
## 494                                              <NA>             NA
## 495                                              <NA>              0
## 496                                              <NA>          55000
##      Member.or.associated.with.any.social.Organization
## 1                                                  Yes
## 2                                                   No
## 3                                                 <NA>
## 4                                                  Yes
## 5                                                   No
## 6                                                  Yes
## 7                                                  Yes
## 8                                                  Yes
## 9                                                   No
## 10                                                 Yes
## 11                                                  No
## 12                                                 Yes
## 13                                                 Yes
## 14                                                  No
## 15                                                  No
## 16                                                  No
## 17                                                 Yes
## 18                                                 Yes
## 19                                                 Yes
## 20                                                  No
## 21                                                 Yes
## 22                                                 Yes
## 23                                                 Yes
## 24                                                 Yes
## 25                                                  No
## 26                                                  No
## 27                                                 Yes
## 28                                                  No
## 29                                                  No
## 30                                                 Yes
## 31                                                  No
## 32                                                  No
## 33                                                 Yes
## 34                                                <NA>
## 35                                                 Yes
## 36                                                 Yes
## 37                                                 Yes
## 38                                                  No
## 39                                                <NA>
## 40                                                 Yes
## 41                                                 Yes
## 42                                                 Yes
## 43                                                 Yes
## 44                                                  No
## 45                                                  No
## 46                                                 Yes
## 47                                                 Yes
## 48                                                 Yes
## 49                                                 Yes
## 50                                                <NA>
## 51                                                  No
## 52                                                 Yes
## 53                                                 Yes
## 54                                                 Yes
## 55                                                 Yes
## 56                                                 Yes
## 57                                                 Yes
## 58                                                 Yes
## 59                                                 Yes
## 60                                                 Yes
## 61                                                 Yes
## 62                                                 Yes
## 63                                                 Yes
## 64                                                 Yes
## 65                                                 Yes
## 66                                                 Yes
## 67                                                 Yes
## 68                                                 Yes
## 69                                                  No
## 70                                                 Yes
## 71                                                 Yes
## 72                                                 Yes
## 73                                                 Yes
## 74                                                  No
## 75                                                 Yes
## 76                                                 Yes
## 77                                                 Yes
## 78                                                 Yes
## 79                                                  No
## 80                                                  No
## 81                                                  No
## 82                                                  No
## 83                                                 Yes
## 84                                                 Yes
## 85                                                 Yes
## 86                                                  No
## 87                                                 Yes
## 88                                                 Yes
## 89                                                 Yes
## 90                                                 Yes
## 91                                                 Yes
## 92                                                 Yes
## 93                                                 Yes
## 94                                                 Yes
## 95                                                  No
## 96                                                 Yes
## 97                                                  No
## 98                                                  No
## 99                                                 Yes
## 100                                                Yes
## 101                                               <NA>
## 102                                               <NA>
## 103                                               <NA>
## 104                                               <NA>
## 105                                               <NA>
## 106                                               <NA>
## 107                                               <NA>
## 108                                               <NA>
## 109                                               <NA>
## 110                                               <NA>
## 111                                               <NA>
## 112                                               <NA>
## 113                                               <NA>
## 114                                               <NA>
## 115                                               <NA>
## 116                                               <NA>
## 117                                               <NA>
## 118                                               <NA>
## 119                                               <NA>
## 120                                               <NA>
## 121                                               <NA>
## 122                                               <NA>
## 123                                               <NA>
## 124                                               <NA>
## 125                                               <NA>
## 126                                               <NA>
## 127                                               <NA>
## 128                                               <NA>
## 129                                               <NA>
## 130                                               <NA>
## 131                                               <NA>
## 132                                               <NA>
## 133                                               <NA>
## 134                                               <NA>
## 135                                               <NA>
## 136                                               <NA>
## 137                                               <NA>
## 138                                               <NA>
## 139                                               <NA>
## 140                                               <NA>
## 141                                               <NA>
## 142                                               <NA>
## 143                                               <NA>
## 144                                               <NA>
## 145                                               <NA>
## 146                                               <NA>
## 147                                               <NA>
## 148                                               <NA>
## 149                                               <NA>
## 150                                               <NA>
## 151                                                 No
## 152                                                 No
## 153                                                 No
## 154                                                Yes
## 155                                                 No
## 156                                                 No
## 157                                                 No
## 158                                                 No
## 159                                                 No
## 160                                                 No
## 161                                                 No
## 162                                                 No
## 163                                                 No
## 164                                                 No
## 165                                                 No
## 166                                                 No
## 167                                                Yes
## 168                                                 No
## 169                                                 No
## 170                                                 No
## 171                                                 No
## 172                                                 No
## 173                                                Yes
## 174                                                 No
## 175                                                 No
## 176                                                 No
## 177                                                 No
## 178                                                 No
## 179                                                 No
## 180                                                 No
## 181                                                 No
## 182                                                Yes
## 183                                                 No
## 184                                                 No
## 185                                                 No
## 186                                                 No
## 187                                                 No
## 188                                                Yes
## 189                                                 No
## 190                                                 No
## 191                                                 No
## 192                                                 No
## 193                                                 No
## 194                                                 No
## 195                                                 No
## 196                                                 No
## 197                                                 No
## 198                                                 No
## 199                                                 No
## 200                                                 No
## 201                                                Yes
## 202                                                Yes
## 203                                                 No
## 204                                                 No
## 205                                                 No
## 206                                                Yes
## 207                                                 No
## 208                                                 No
## 209                                                 No
## 210                                                 No
## 211                                                 No
## 212                                                Yes
## 213                                                 No
## 214                                                Yes
## 215                                                 No
## 216                                                Yes
## 217                                                Yes
## 218                                                 No
## 219                                                Yes
## 220                                                Yes
## 221                                                 No
## 222                                                Yes
## 223                                                Yes
## 224                                                Yes
## 225                                                 No
## 226                                                Yes
## 227                                                 No
## 228                                                 No
## 229                                                Yes
## 230                                                 No
## 231                                                 No
## 232                                                Yes
## 233                                                 No
## 234                                                 No
## 235                                                Yes
## 236                                                Yes
## 237                                                 No
## 238                                                Yes
## 239                                                 No
## 240                                                 No
## 241                                                Yes
## 242                                                 No
## 243                                                 No
## 244                                                Yes
## 245                                                Yes
## 246                                                Yes
## 247                                                 No
## 248                                                 No
## 249                                                Yes
## 250                                                 No
## 251                                                Yes
## 252                                                Yes
## 253                                                Yes
## 254                                                Yes
## 255                                                Yes
## 256                                                Yes
## 257                                                 No
## 258                                                 No
## 259                                                 No
## 260                                                Yes
## 261                                                Yes
## 262                                                Yes
## 263                                                Yes
## 264                                               <NA>
## 265                                                 No
## 266                                                Yes
## 267                                                 No
## 268                                                Yes
## 269                                                Yes
## 270                                                 No
## 271                                                Yes
## 272                                                Yes
## 273                                                Yes
## 274                                                Yes
## 275                                                Yes
## 276                                                Yes
## 277                                               <NA>
## 278                                                Yes
## 279                                                 No
## 280                                                Yes
## 281                                                Yes
## 282                                                Yes
## 283                                                 No
## 284                                                Yes
## 285                                               <NA>
## 286                                                Yes
## 287                                                 No
## 288                                                 No
## 289                                                 No
## 290                                                Yes
## 291                                                Yes
## 292                                                Yes
## 293                                                Yes
## 294                                                Yes
## 295                                                 No
## 296                                                 No
## 297                                                Yes
## 298                                                Yes
## 299                                                Yes
## 300                                                Yes
## 302                                                 No
## 303                                                Yes
## 304                                                Yes
## 305                                                Yes
## 306                                                 No
## 307                                                 No
## 308                                                 No
## 309                                                 No
## 310                                               <NA>
## 311                                                Yes
## 312                                                Yes
## 313                                                Yes
## 314                                                Yes
## 315                                                 No
## 316                                                Yes
## 317                                                Yes
## 318                                                 No
## 319                                               <NA>
## 320                                                Yes
## 321                                                Yes
## 322                                                 No
## 323                                                 No
## 324                                                 No
## 325                                                 No
## 326                                                 No
## 327                                                Yes
## 328                                                 No
## 329                                                 No
## 330                                                 No
## 331                                                Yes
## 332                                                 No
## 333                                                 No
## 334                                                 No
## 335                                                 No
## 336                                                 No
## 337                                                 No
## 338                                                Yes
## 339                                                Yes
## 340                                                Yes
## 341                                                 No
## 342                                                Yes
## 343                                                Yes
## 344                                               <NA>
## 345                                               <NA>
## 346                                                 No
## 347                                                 No
## 348                                                Yes
## 349                                                 No
## 350                                                Yes
## 351                                                 No
## 352                                                 No
## 353                                                 No
## 354                                                 No
## 355                                                 No
## 356                                                Yes
## 357                                                 No
## 358                                                Yes
## 359                                                 No
## 360                                                Yes
## 361                                                 No
## 362                                                Yes
## 363                                                 No
## 364                                                 No
## 365                                                 No
## 366                                                 No
## 367                                                Yes
## 368                                                 No
## 369                                                 No
## 370                                                Yes
## 371                                                Yes
## 372                                                Yes
## 373                                                 No
## 374                                                 No
## 375                                                Yes
## 376                                                 No
## 377                                                 No
## 378                                                 No
## 379                                                 No
## 380                                                 No
## 381                                                 No
## 382                                                Yes
## 383                                                 No
## 384                                                 No
## 385                                                 No
## 386                                                 No
## 387                                                 No
## 388                                                 No
## 389                                                 No
## 390                                                 No
## 391                                                 No
## 392                                                 No
## 393                                                 No
## 394                                                 No
## 395                                                 No
## 396                                                 No
## 397                                                 No
## 398                                                 No
## 399                                                 No
## 400                                                 No
## 401                                                 No
## 402                                                 No
## 403                                                 No
## 404                                                 No
## 405                                                Yes
## 406                                                 No
## 407                                                 No
## 408                                                 No
## 409                                                 No
## 410                                                 No
## 411                                                 No
## 412                                                 No
## 413                                                 No
## 414                                                 No
## 415                                                 No
## 416                                                 No
## 417                                                 No
## 418                                                 No
## 419                                                 No
## 420                                                 No
## 421                                                 No
## 422                                                 No
## 423                                                 No
## 424                                                 No
## 425                                                 No
## 426                                                 No
## 427                                                 No
## 428                                                 No
## 429                                                 No
## 430                                                 No
## 431                                                 No
## 432                                                 No
## 433                                                 No
## 434                                                 No
## 435                                                 No
## 436                                                 No
## 437                                                 No
## 438                                                 No
## 439                                                 No
## 440                                                 No
## 441                                                 No
## 442                                                 No
## 443                                                 No
## 444                                                 No
## 445                                                 No
## 446                                                 No
## 447                                                 No
## 448                                                Yes
## 449                                                 No
## 450                                                 No
## 451                                                 No
## 452                                                 No
## 453                                                 No
## 454                                                Yes
## 455                                                 No
## 456                                                 No
## 457                                                 No
## 458                                                 No
## 459                                                 No
## 460                                                 No
## 461                                                 No
## 462                                                Yes
## 463                                                 No
## 464                                                 No
## 465                                                 No
## 466                                                 No
## 467                                                Yes
## 468                                                 No
## 469                                                Yes
## 470                                                 No
## 471                                                Yes
## 472                                                Yes
## 473                                                 No
## 474                                                 No
## 475                                                 No
## 476                                                 No
## 477                                                 No
## 478                                                 No
## 479                                                 No
## 480                                                 No
## 481                                                 No
## 482                                                 No
## 483                                                 No
## 484                                                 No
## 485                                                Yes
## 486                                                Yes
## 487                                                 No
## 488                                               <NA>
## 489                                                 No
## 490                                                Yes
## 491                                                Yes
## 492                                                Yes
## 493                                                 No
## 494                                                 No
## 495                                                Yes
## 496                                                 No
##      Associated.to.National.NGO Associated.to.INGO
## 1                          <NA>               <NA>
## 2                          <NA>               <NA>
## 3                          <NA>               <NA>
## 4                           Yes               <NA>
## 5                          <NA>               <NA>
## 6                          <NA>               <NA>
## 7                          <NA>               <NA>
## 8                          <NA>               <NA>
## 9                          <NA>               <NA>
## 10                          Yes               <NA>
## 11                         <NA>               <NA>
## 12                         <NA>               <NA>
## 13                         <NA>               <NA>
## 14                         <NA>               <NA>
## 15                         <NA>               <NA>
## 16                         <NA>               <NA>
## 17                         <NA>               <NA>
## 18                         <NA>               <NA>
## 19                         <NA>               <NA>
## 20                         <NA>               <NA>
## 21                          Yes               <NA>
## 22                         <NA>               <NA>
## 23                          Yes               <NA>
## 24                         <NA>               <NA>
## 25                         <NA>               <NA>
## 26                         <NA>               <NA>
## 27                         <NA>               <NA>
## 28                         <NA>               <NA>
## 29                         <NA>               <NA>
## 30                         <NA>               <NA>
## 31                         <NA>               <NA>
## 32                         <NA>               <NA>
## 33                         <NA>               <NA>
## 34                         <NA>               <NA>
## 35                          Yes               <NA>
## 36                         <NA>               <NA>
## 37                         <NA>               <NA>
## 38                         <NA>               <NA>
## 39                          Yes               <NA>
## 40                         <NA>               <NA>
## 41                         <NA>               <NA>
## 42                         <NA>               <NA>
## 43                         <NA>               <NA>
## 44                         <NA>               <NA>
## 45                         <NA>               <NA>
## 46                         <NA>               <NA>
## 47                         <NA>                Yes
## 48                         <NA>               <NA>
## 49                         <NA>               <NA>
## 50                         <NA>               <NA>
## 51                         <NA>               <NA>
## 52                           No                 No
## 53                           No                 No
## 54                           No                 No
## 55                           No                 No
## 56                           No                 No
## 57                           No                 No
## 58                           No                 No
## 59                           No                 No
## 60                           No                 No
## 61                           No                 No
## 62                           No                 No
## 63                           No                 No
## 64                           No                 No
## 65                           No                 No
## 66                           No                 No
## 67                           No                 No
## 68                           No                 No
## 69                         <NA>               <NA>
## 70                           No                 No
## 71                           No                 No
## 72                           No                 No
## 73                           No                 No
## 74                         <NA>               <NA>
## 75                           No                 No
## 76                           No                 No
## 77                           No                 No
## 78                           No                 No
## 79                         <NA>               <NA>
## 80                         <NA>               <NA>
## 81                         <NA>               <NA>
## 82                         <NA>               <NA>
## 83                           No                 No
## 84                           No                 No
## 85                           No                 No
## 86                         <NA>               <NA>
## 87                           No                 No
## 88                           No                 No
## 89                           No                 No
## 90                           No                 No
## 91                           No                 No
## 92                           No                 No
## 93                           No                 No
## 94                           No                 No
## 95                         <NA>               <NA>
## 96                           No                 No
## 97                         <NA>               <NA>
## 98                         <NA>               <NA>
## 99                           No                 No
## 100                          No                 No
## 101                         Yes                 No
## 102                         Yes                 No
## 103                          No                 No
## 104                         Yes                 No
## 105                          No                 No
## 106                          No                 No
## 107                          No                 No
## 108                          No                 No
## 109                          No                 No
## 110                         Yes                 No
## 111                          No                 No
## 112                          No                 No
## 113                          No                 No
## 114                          No                 No
## 115                         Yes                 No
## 116                          No                 No
## 117                          No                 No
## 118                          No                 No
## 119                          No                 No
## 120                          No                 No
## 121                          No                 No
## 122                          No                 No
## 123                          No                Yes
## 124                          No                 No
## 125                          No                 No
## 126                          No                 No
## 127                          No                 No
## 128                          No                 No
## 129                          No                 No
## 130                          No                 No
## 131                          No                 No
## 132                          No                 No
## 133                          No                 No
## 134                          No                 No
## 135                          No                 No
## 136                          No                 No
## 137                          No                 No
## 138                          No                 No
## 139                          No                 No
## 140                          No                 No
## 141                          No                 No
## 142                          No                 No
## 143                          No                 No
## 144                          No                 No
## 145                          No                 No
## 146                          No                 No
## 147                          No                 No
## 148                          No                 No
## 149                          No                 No
## 150                          No                 No
## 151                        <NA>                 No
## 152                        <NA>                 No
## 153                        <NA>                 No
## 154                        <NA>                 No
## 155                        <NA>                 No
## 156                        <NA>                 No
## 157                        <NA>                 No
## 158                        <NA>                 No
## 159                        <NA>                 No
## 160                        <NA>                 No
## 161                        <NA>                 No
## 162                        <NA>                 No
## 163                        <NA>                 No
## 164                        <NA>                 No
## 165                        <NA>                 No
## 166                        <NA>                 No
## 167                        <NA>                 No
## 168                        <NA>                 No
## 169                        <NA>                 No
## 170                        <NA>                 No
## 171                        <NA>                 No
## 172                        <NA>                 No
## 173                        <NA>                 No
## 174                        <NA>                 No
## 175                        <NA>                 No
## 176                        <NA>                 No
## 177                        <NA>                 No
## 178                        <NA>                 No
## 179                        <NA>                 No
## 180                        <NA>                 No
## 181                        <NA>                 No
## 182                        <NA>                 No
## 183                        <NA>                 No
## 184                        <NA>                 No
## 185                        <NA>                 No
## 186                        <NA>                 No
## 187                        <NA>                 No
## 188                        <NA>                 No
## 189                        <NA>                 No
## 190                        <NA>                 No
## 191                        <NA>                 No
## 192                        <NA>                 No
## 193                        <NA>                 No
## 194                        <NA>                 No
## 195                        <NA>                 No
## 196                        <NA>                 No
## 197                        <NA>                 No
## 198                        <NA>                 No
## 199                        <NA>                 No
## 200                        <NA>                 No
## 201                         Yes                 No
## 202                          No                 No
## 203                        <NA>               <NA>
## 204                        <NA>               <NA>
## 205                        <NA>               <NA>
## 206                          No                 No
## 207                        <NA>               <NA>
## 208                        <NA>               <NA>
## 209                        <NA>               <NA>
## 210                        <NA>               <NA>
## 211                        <NA>               <NA>
## 212                          No                 No
## 213                        <NA>               <NA>
## 214                          No                 No
## 215                        <NA>               <NA>
## 216                          No                 No
## 217                          No                 No
## 218                        <NA>               <NA>
## 219                         Yes                 No
## 220                          No                 No
## 221                        <NA>               <NA>
## 222                         Yes                 No
## 223                          No                 No
## 224                         Yes                 No
## 225                        <NA>               <NA>
## 226                         Yes                 No
## 227                        <NA>               <NA>
## 228                        <NA>               <NA>
## 229                          No                 No
## 230                        <NA>               <NA>
## 231                        <NA>               <NA>
## 232                          No                 No
## 233                        <NA>               <NA>
## 234                        <NA>               <NA>
## 235                          No                 No
## 236                          No                 No
## 237                        <NA>               <NA>
## 238                          No                 No
## 239                        <NA>               <NA>
## 240                        <NA>               <NA>
## 241                          No                 No
## 242                        <NA>               <NA>
## 243                        <NA>               <NA>
## 244                         Yes                 No
## 245                          No                 No
## 246                         Yes                 No
## 247                        <NA>               <NA>
## 248                        <NA>               <NA>
## 249                          No                 No
## 250                        <NA>               <NA>
## 251                        <NA>               <NA>
## 252                        <NA>               <NA>
## 253                        <NA>               <NA>
## 254                        <NA>               <NA>
## 255                        <NA>               <NA>
## 256                        <NA>               <NA>
## 257                        <NA>               <NA>
## 258                        <NA>               <NA>
## 259                        <NA>               <NA>
## 260                        <NA>               <NA>
## 261                        <NA>               <NA>
## 262                        <NA>               <NA>
## 263                        <NA>               <NA>
## 264                        <NA>               <NA>
## 265                        <NA>               <NA>
## 266                        <NA>               <NA>
## 267                        <NA>               <NA>
## 268                        <NA>               <NA>
## 269                        <NA>               <NA>
## 270                        <NA>               <NA>
## 271                        <NA>               <NA>
## 272                        <NA>               <NA>
## 273                        <NA>               <NA>
## 274                        <NA>               <NA>
## 275                        <NA>               <NA>
## 276                        <NA>               <NA>
## 277                        <NA>               <NA>
## 278                        <NA>                Yes
## 279                        <NA>               <NA>
## 280                        <NA>               <NA>
## 281                        <NA>               <NA>
## 282                        <NA>               <NA>
## 283                        <NA>               <NA>
## 284                        <NA>               <NA>
## 285                        <NA>               <NA>
## 286                        <NA>               <NA>
## 287                        <NA>               <NA>
## 288                        <NA>               <NA>
## 289                        <NA>               <NA>
## 290                        <NA>               <NA>
## 291                        <NA>               <NA>
## 292                        <NA>               <NA>
## 293                        <NA>               <NA>
## 294                        <NA>               <NA>
## 295                        <NA>               <NA>
## 296                        <NA>               <NA>
## 297                        <NA>               <NA>
## 298                        <NA>               <NA>
## 299                        <NA>               <NA>
## 300                        <NA>               <NA>
## 302                        <NA>               <NA>
## 303                          No                 No
## 304                          No                 No
## 305                          No                 No
## 306                        <NA>               <NA>
## 307                        <NA>               <NA>
## 308                        <NA>               <NA>
## 309                        <NA>               <NA>
## 310                          No               <NA>
## 311                          No                 No
## 312                         Yes                 No
## 313                          No                 No
## 314                          No                 No
## 315                        <NA>               <NA>
## 316                         Yes                 No
## 317                         Yes                 No
## 318                        <NA>               <NA>
## 319                        <NA>               <NA>
## 320                         Yes                 No
## 321                          No                 No
## 322                        <NA>               <NA>
## 323                        <NA>               <NA>
## 324                        <NA>               <NA>
## 325                        <NA>               <NA>
## 326                        <NA>               <NA>
## 327                          No                 No
## 328                        <NA>               <NA>
## 329                        <NA>               <NA>
## 330                        <NA>               <NA>
## 331                         Yes                 No
## 332                        <NA>               <NA>
## 333                        <NA>               <NA>
## 334                        <NA>               <NA>
## 335                        <NA>               <NA>
## 336                        <NA>               <NA>
## 337                        <NA>               <NA>
## 338                         Yes                 No
## 339                         Yes                 No
## 340                          No                 No
## 341                        <NA>               <NA>
## 342                         Yes                 No
## 343                         Yes                 No
## 344                        <NA>               <NA>
## 345                        <NA>               <NA>
## 346                        <NA>               <NA>
## 347                        <NA>               <NA>
## 348                         Yes                 No
## 349                        <NA>               <NA>
## 350                          No                 No
## 351                        <NA>               <NA>
## 352                        <NA>               <NA>
## 353                        <NA>               <NA>
## 354                        <NA>               <NA>
## 355                        <NA>               <NA>
## 356                          No                 No
## 357                        <NA>               <NA>
## 358                          No                 No
## 359                        <NA>               <NA>
## 360                          No                 No
## 361                        <NA>               <NA>
## 362                          No                 No
## 363                        <NA>               <NA>
## 364                        <NA>               <NA>
## 365                        <NA>               <NA>
## 366                        <NA>               <NA>
## 367                          No                 No
## 368                        <NA>               <NA>
## 369                        <NA>               <NA>
## 370                          No                 No
## 371                          No                 No
## 372                          No                 No
## 373                        <NA>               <NA>
## 374                        <NA>               <NA>
## 375                          No                 No
## 376                        <NA>               <NA>
## 377                        <NA>               <NA>
## 378                        <NA>               <NA>
## 379                        <NA>               <NA>
## 380                        <NA>               <NA>
## 381                        <NA>               <NA>
## 382                          No                 No
## 383                        <NA>               <NA>
## 384                        <NA>               <NA>
## 385                        <NA>               <NA>
## 386                        <NA>               <NA>
## 387                        <NA>               <NA>
## 388                        <NA>               <NA>
## 389                        <NA>               <NA>
## 390                        <NA>               <NA>
## 391                        <NA>               <NA>
## 392                        <NA>               <NA>
## 393                        <NA>               <NA>
## 394                        <NA>               <NA>
## 395                        <NA>               <NA>
## 396                        <NA>               <NA>
## 397                        <NA>               <NA>
## 398                        <NA>               <NA>
## 399                        <NA>               <NA>
## 400                        <NA>               <NA>
## 401                        <NA>               <NA>
## 402                          No                 No
## 403                          No                 No
## 404                          No                 No
## 405                          No                 No
## 406                          No                 No
## 407                          No                 No
## 408                          No                 No
## 409                          No                 No
## 410                          No                 No
## 411                          No                 No
## 412                          No                 No
## 413                          No                 No
## 414                          No                 No
## 415                          No                 No
## 416                          No                 No
## 417                          No                 No
## 418                          No                 No
## 419                          No                 No
## 420                          No                 No
## 421                          No                 No
## 422                          No                 No
## 423                          No                 No
## 424                          No                 No
## 425                          No                 No
## 426                          No                 No
## 427                          No                 No
## 428                          No                 No
## 429                          No                 No
## 430                          No                 No
## 431                          No                 No
## 432                          No                 No
## 433                          No                 No
## 434                          No                 No
## 435                          No                 No
## 436                          No                 No
## 437                          No                 No
## 438                          No                 No
## 439                          No                 No
## 440                          No                 No
## 441                          No                 No
## 442                          No                 No
## 443                          No                 No
## 444                          No                 No
## 445                          No                 No
## 446                          No                 No
## 447                          No                 No
## 448                          No                 No
## 449                          No                 No
## 450                          No                 No
## 451                          No                 No
## 452                          No                 No
## 453                          No                 No
## 454                          No                 No
## 455                        <NA>               <NA>
## 456                        <NA>               <NA>
## 457                        <NA>               <NA>
## 458                        <NA>               <NA>
## 459                        <NA>               <NA>
## 460                        <NA>               <NA>
## 461                        <NA>               <NA>
## 462                          No                 No
## 463                        <NA>               <NA>
## 464                        <NA>               <NA>
## 465                        <NA>               <NA>
## 466                        <NA>               <NA>
## 467                          No                 No
## 468                        <NA>               <NA>
## 469                          No                 No
## 470                        <NA>               <NA>
## 471                          No                 No
## 472                          No                Yes
## 473                        <NA>               <NA>
## 474                        <NA>               <NA>
## 475                        <NA>               <NA>
## 476                        <NA>               <NA>
## 477                        <NA>               <NA>
## 478                        <NA>               <NA>
## 479                        <NA>               <NA>
## 480                        <NA>               <NA>
## 481                        <NA>               <NA>
## 482                        <NA>               <NA>
## 483                        <NA>               <NA>
## 484                        <NA>               <NA>
## 485                          No                 No
## 486                          No                 No
## 487                        <NA>               <NA>
## 488                        <NA>               <NA>
## 489                        <NA>               <NA>
## 490                          No                 No
## 491                          No                 No
## 492                          No                 No
## 493                        <NA>               <NA>
## 494                        <NA>               <NA>
## 495                         Yes                 No
## 496                          No               <NA>
##      Associated.to.Trade.Union Associated.to.Student.Organization
## 1                         <NA>                               <NA>
## 2                         <NA>                               <NA>
## 3                         <NA>                               <NA>
## 4                         <NA>                               <NA>
## 5                         <NA>                               <NA>
## 6                         <NA>                                Yes
## 7                         <NA>                               <NA>
## 8                         <NA>                               <NA>
## 9                         <NA>                               <NA>
## 10                        <NA>                               <NA>
## 11                        <NA>                               <NA>
## 12                        <NA>                               <NA>
## 13                        <NA>                               <NA>
## 14                        <NA>                               <NA>
## 15                        <NA>                               <NA>
## 16                        <NA>                               <NA>
## 17                        <NA>                               <NA>
## 18                        <NA>                               <NA>
## 19                        <NA>                               <NA>
## 20                        <NA>                               <NA>
## 21                        <NA>                               <NA>
## 22                        <NA>                               <NA>
## 23                        <NA>                               <NA>
## 24                        <NA>                               <NA>
## 25                        <NA>                               <NA>
## 26                        <NA>                               <NA>
## 27                        <NA>                               <NA>
## 28                        <NA>                               <NA>
## 29                        <NA>                               <NA>
## 30                        <NA>                               <NA>
## 31                        <NA>                               <NA>
## 32                        <NA>                               <NA>
## 33                        <NA>                               <NA>
## 34                        <NA>                               <NA>
## 35                        <NA>                               <NA>
## 36                         Yes                               <NA>
## 37                        <NA>                                Yes
## 38                        <NA>                               <NA>
## 39                        <NA>                               <NA>
## 40                        <NA>                               <NA>
## 41                        <NA>                               <NA>
## 42                        <NA>                               <NA>
## 43                        <NA>                               <NA>
## 44                        <NA>                               <NA>
## 45                        <NA>                               <NA>
## 46                        <NA>                               <NA>
## 47                        <NA>                               <NA>
## 48                        <NA>                               <NA>
## 49                        <NA>                               <NA>
## 50                        <NA>                               <NA>
## 51                        <NA>                               <NA>
## 52                          No                                 No
## 53                          No                                 No
## 54                          No                                 No
## 55                          No                                 No
## 56                          No                                 No
## 57                          No                                 No
## 58                          No                                Yes
## 59                          No                                 No
## 60                          No                                 No
## 61                          No                                 No
## 62                          No                                 No
## 63                          No                                 No
## 64                          No                                 No
## 65                          No                                Yes
## 66                          No                                 No
## 67                          No                                Yes
## 68                          No                                 No
## 69                        <NA>                               <NA>
## 70                          No                                 No
## 71                          No                                 No
## 72                          No                                 No
## 73                          No                                Yes
## 74                        <NA>                               <NA>
## 75                          No                                 No
## 76                          No                                 No
## 77                          No                                 No
## 78                          No                                 No
## 79                        <NA>                               <NA>
## 80                        <NA>                               <NA>
## 81                        <NA>                               <NA>
## 82                        <NA>                               <NA>
## 83                          No                                 No
## 84                          No                                 No
## 85                          No                                 No
## 86                        <NA>                               <NA>
## 87                          No                                 No
## 88                          No                                 No
## 89                          No                                 No
## 90                          No                                 No
## 91                          No                                Yes
## 92                          No                                 No
## 93                          No                                 No
## 94                          No                                 No
## 95                        <NA>                               <NA>
## 96                          No                                 No
## 97                        <NA>                               <NA>
## 98                        <NA>                               <NA>
## 99                          No                                 No
## 100                         No                                 No
## 101                         No                                 No
## 102                         No                                 No
## 103                         No                                 No
## 104                         No                                 No
## 105                         No                                 No
## 106                         No                                 No
## 107                         No                                 No
## 108                         No                                Yes
## 109                         No                                 No
## 110                         No                                 No
## 111                         No                                 No
## 112                         No                                 No
## 113                         No                                 No
## 114                         No                                 No
## 115                         No                                 No
## 116                         No                                 No
## 117                         No                                 No
## 118                         No                                 No
## 119                         No                                 No
## 120                         No                                 No
## 121                         No                                 No
## 122                         No                                 No
## 123                         No                                 No
## 124                         No                                 No
## 125                         No                                 No
## 126                         No                                 No
## 127                         No                                 No
## 128                         No                                 No
## 129                         No                                 No
## 130                         No                                 No
## 131                         No                                 No
## 132                         No                                 No
## 133                         No                                 No
## 134                         No                                 No
## 135                         No                                 No
## 136                         No                                 No
## 137                         No                                 No
## 138                         No                                 No
## 139                         No                                 No
## 140                         No                                 No
## 141                         No                                 No
## 142                         No                                 No
## 143                         No                                 No
## 144                         No                                 No
## 145                         No                                 No
## 146                         No                                 No
## 147                         No                                 No
## 148                         No                                 No
## 149                         No                                 No
## 150                         No                                 No
## 151                         No                                 No
## 152                         No                                 No
## 153                         No                                 No
## 154                         No                                 No
## 155                         No                                 No
## 156                         No                                 No
## 157                         No                                 No
## 158                         No                                 No
## 159                         No                                 No
## 160                         No                                 No
## 161                         No                                 No
## 162                         No                                 No
## 163                         No                                 No
## 164                         No                                 No
## 165                         No                                 No
## 166                         No                                 No
## 167                         No                                 No
## 168                         No                                 No
## 169                         No                                 No
## 170                         No                                 No
## 171                         No                                 No
## 172                         No                                 No
## 173                         No                                 No
## 174                         No                                 No
## 175                         No                                 No
## 176                         No                                 No
## 177                         No                                 No
## 178                         No                                 No
## 179                         No                                 No
## 180                         No                                 No
## 181                         No                                 No
## 182                         No                                 No
## 183                         No                                 No
## 184                         No                                 No
## 185                         No                                 No
## 186                         No                                 No
## 187                         No                                 No
## 188                         No                                 No
## 189                         No                                 No
## 190                         No                                 No
## 191                         No                                 No
## 192                         No                                 No
## 193                         No                                 No
## 194                         No                                 No
## 195                         No                                 No
## 196                         No                                 No
## 197                         No                                 No
## 198                         No                                 No
## 199                         No                                 No
## 200                         No                                 No
## 201                         No                                 No
## 202                         No                                 No
## 203                       <NA>                               <NA>
## 204                       <NA>                               <NA>
## 205                       <NA>                               <NA>
## 206                         No                                 No
## 207                       <NA>                               <NA>
## 208                       <NA>                               <NA>
## 209                       <NA>                               <NA>
## 210                       <NA>                               <NA>
## 211                       <NA>                               <NA>
## 212                         No                                 No
## 213                       <NA>                               <NA>
## 214                         No                                 No
## 215                       <NA>                               <NA>
## 216                         No                                 No
## 217                         No                                 No
## 218                       <NA>                               <NA>
## 219                         No                                 No
## 220                         No                                 No
## 221                       <NA>                               <NA>
## 222                         No                                 No
## 223                         No                                 No
## 224                         No                                 No
## 225                       <NA>                               <NA>
## 226                         No                                 No
## 227                       <NA>                               <NA>
## 228                       <NA>                               <NA>
## 229                         No                                 No
## 230                       <NA>                               <NA>
## 231                       <NA>                               <NA>
## 232                         No                                 No
## 233                       <NA>                               <NA>
## 234                       <NA>                               <NA>
## 235                         No                                 No
## 236                         No                                 No
## 237                       <NA>                               <NA>
## 238                         No                                 No
## 239                       <NA>                               <NA>
## 240                       <NA>                               <NA>
## 241                         No                                 No
## 242                       <NA>                               <NA>
## 243                       <NA>                               <NA>
## 244                         No                                 No
## 245                         No                                 No
## 246                         No                                 No
## 247                       <NA>                               <NA>
## 248                       <NA>                               <NA>
## 249                         No                                 No
## 250                       <NA>                               <NA>
## 251                       <NA>                               <NA>
## 252                       <NA>                               <NA>
## 253                       <NA>                               <NA>
## 254                       <NA>                               <NA>
## 255                       <NA>                               <NA>
## 256                       <NA>                               <NA>
## 257                       <NA>                               <NA>
## 258                       <NA>                               <NA>
## 259                       <NA>                               <NA>
## 260                       <NA>                               <NA>
## 261                       <NA>                               <NA>
## 262                       <NA>                               <NA>
## 263                       <NA>                               <NA>
## 264                       <NA>                               <NA>
## 265                       <NA>                               <NA>
## 266                       <NA>                               <NA>
## 267                       <NA>                               <NA>
## 268                       <NA>                               <NA>
## 269                       <NA>                               <NA>
## 270                       <NA>                               <NA>
## 271                       <NA>                               <NA>
## 272                       <NA>                               <NA>
## 273                       <NA>                               <NA>
## 274                       <NA>                               <NA>
## 275                       <NA>                               <NA>
## 276                       <NA>                               <NA>
## 277                       <NA>                               <NA>
## 278                       <NA>                               <NA>
## 279                       <NA>                               <NA>
## 280                       <NA>                               <NA>
## 281                       <NA>                               <NA>
## 282                       <NA>                               <NA>
## 283                       <NA>                               <NA>
## 284                        Yes                               <NA>
## 285                       <NA>                               <NA>
## 286                       <NA>                               <NA>
## 287                       <NA>                               <NA>
## 288                       <NA>                               <NA>
## 289                       <NA>                               <NA>
## 290                       <NA>                               <NA>
## 291                       <NA>                               <NA>
## 292                       <NA>                               <NA>
## 293                       <NA>                               <NA>
## 294                       <NA>                               <NA>
## 295                       <NA>                               <NA>
## 296                       <NA>                               <NA>
## 297                       <NA>                               <NA>
## 298                       <NA>                               <NA>
## 299                       <NA>                               <NA>
## 300                       <NA>                               <NA>
## 302                       <NA>                               <NA>
## 303                         No                                 No
## 304                         No                                 No
## 305                         No                                 No
## 306                       <NA>                               <NA>
## 307                       <NA>                               <NA>
## 308                       <NA>                               <NA>
## 309                       <NA>                               <NA>
## 310                       <NA>                               <NA>
## 311                        Yes                                 No
## 312                         No                                 No
## 313                         No                                 No
## 314                         No                                 No
## 315                       <NA>                               <NA>
## 316                         No                                 No
## 317                         No                                 No
## 318                       <NA>                               <NA>
## 319                       <NA>                               <NA>
## 320                        Yes                                 No
## 321                         No                                 No
## 322                       <NA>                               <NA>
## 323                       <NA>                               <NA>
## 324                       <NA>                               <NA>
## 325                       <NA>                               <NA>
## 326                       <NA>                               <NA>
## 327                        Yes                                 No
## 328                       <NA>                               <NA>
## 329                       <NA>                               <NA>
## 330                       <NA>                               <NA>
## 331                         No                                 No
## 332                       <NA>                               <NA>
## 333                       <NA>                               <NA>
## 334                       <NA>                               <NA>
## 335                       <NA>                               <NA>
## 336                       <NA>                               <NA>
## 337                       <NA>                               <NA>
## 338                         No                                 No
## 339                         No                                 No
## 340                         No                                 No
## 341                       <NA>                               <NA>
## 342                         No                                 No
## 343                         No                                 No
## 344                       <NA>                               <NA>
## 345                       <NA>                               <NA>
## 346                       <NA>                               <NA>
## 347                       <NA>                               <NA>
## 348                         No                                 No
## 349                       <NA>                               <NA>
## 350                         No                                 No
## 351                       <NA>                               <NA>
## 352                       <NA>                               <NA>
## 353                       <NA>                               <NA>
## 354                       <NA>                               <NA>
## 355                       <NA>                               <NA>
## 356                         No                                 No
## 357                       <NA>                               <NA>
## 358                         No                                 No
## 359                       <NA>                               <NA>
## 360                         No                                 No
## 361                       <NA>                               <NA>
## 362                         No                                 No
## 363                       <NA>                               <NA>
## 364                       <NA>                               <NA>
## 365                       <NA>                               <NA>
## 366                       <NA>                               <NA>
## 367                         No                                 No
## 368                       <NA>                               <NA>
## 369                       <NA>                               <NA>
## 370                         No                                 No
## 371                         No                                 No
## 372                         No                                 No
## 373                       <NA>                               <NA>
## 374                       <NA>                               <NA>
## 375                         No                                 No
## 376                       <NA>                               <NA>
## 377                       <NA>                               <NA>
## 378                       <NA>                               <NA>
## 379                       <NA>                               <NA>
## 380                       <NA>                               <NA>
## 381                       <NA>                               <NA>
## 382                         No                                 No
## 383                       <NA>                               <NA>
## 384                       <NA>                               <NA>
## 385                       <NA>                               <NA>
## 386                       <NA>                               <NA>
## 387                       <NA>                               <NA>
## 388                       <NA>                               <NA>
## 389                       <NA>                               <NA>
## 390                       <NA>                               <NA>
## 391                       <NA>                               <NA>
## 392                       <NA>                               <NA>
## 393                       <NA>                               <NA>
## 394                       <NA>                               <NA>
## 395                       <NA>                               <NA>
## 396                       <NA>                               <NA>
## 397                       <NA>                               <NA>
## 398                       <NA>                               <NA>
## 399                       <NA>                               <NA>
## 400                       <NA>                               <NA>
## 401                       <NA>                               <NA>
## 402                         No                                 No
## 403                         No                                 No
## 404                         No                                 No
## 405                         No                                 No
## 406                         No                                 No
## 407                         No                                 No
## 408                         No                                 No
## 409                         No                                 No
## 410                         No                                 No
## 411                         No                                 No
## 412                         No                                 No
## 413                         No                                 No
## 414                         No                                 No
## 415                         No                                 No
## 416                         No                                 No
## 417                         No                                 No
## 418                         No                                 No
## 419                         No                                 No
## 420                         No                                 No
## 421                         No                                 No
## 422                         No                                 No
## 423                         No                                 No
## 424                         No                                 No
## 425                         No                                 No
## 426                         No                                 No
## 427                        Yes                                 No
## 428                         No                                 No
## 429                         No                                 No
## 430                         No                                 No
## 431                         No                                 No
## 432                         No                                 No
## 433                         No                                 No
## 434                         No                                 No
## 435                         No                                 No
## 436                         No                                 No
## 437                         No                                 No
## 438                         No                                 No
## 439                         No                                 No
## 440                         No                                 No
## 441                        Yes                                 No
## 442                         No                                 No
## 443                         No                                 No
## 444                         No                                 No
## 445                         No                                 No
## 446                        Yes                                 No
## 447                         No                                 No
## 448                         No                                 No
## 449                         No                                 No
## 450                         No                                 No
## 451                         No                                 No
## 452                         No                                 No
## 453                         No                                 No
## 454                         No                                 No
## 455                       <NA>                               <NA>
## 456                       <NA>                               <NA>
## 457                       <NA>                               <NA>
## 458                       <NA>                               <NA>
## 459                       <NA>                               <NA>
## 460                       <NA>                               <NA>
## 461                       <NA>                               <NA>
## 462                         No                                Yes
## 463                       <NA>                               <NA>
## 464                       <NA>                               <NA>
## 465                       <NA>                               <NA>
## 466                       <NA>                               <NA>
## 467                         No                                 No
## 468                       <NA>                               <NA>
## 469                         No                                Yes
## 470                       <NA>                               <NA>
## 471                         No                                 No
## 472                         No                                 No
## 473                       <NA>                               <NA>
## 474                       <NA>                               <NA>
## 475                       <NA>                               <NA>
## 476                       <NA>                               <NA>
## 477                       <NA>                               <NA>
## 478                       <NA>                               <NA>
## 479                       <NA>                               <NA>
## 480                       <NA>                               <NA>
## 481                       <NA>                               <NA>
## 482                       <NA>                               <NA>
## 483                       <NA>                               <NA>
## 484                       <NA>                               <NA>
## 485                         No                                 No
## 486                         No                                 No
## 487                       <NA>                               <NA>
## 488                       <NA>                               <NA>
## 489                       <NA>                               <NA>
## 490                         No                                Yes
## 491                         No                                 No
## 492                         No                                 No
## 493                       <NA>                               <NA>
## 494                       <NA>                               <NA>
## 495                         No                                 No
## 496                       <NA>                               <NA>
##      Associated.to.Voluntary.Organization
## 1                                    <NA>
## 2                                    <NA>
## 3                                     Yes
## 4                                    <NA>
## 5                                    <NA>
## 6                                    <NA>
## 7                                    <NA>
## 8                                    <NA>
## 9                                    <NA>
## 10                                   <NA>
## 11                                   <NA>
## 12                                   <NA>
## 13                                   <NA>
## 14                                   <NA>
## 15                                   <NA>
## 16                                   <NA>
## 17                                   <NA>
## 18                                   <NA>
## 19                                   <NA>
## 20                                   <NA>
## 21                                   <NA>
## 22                                   <NA>
## 23                                   <NA>
## 24                                   <NA>
## 25                                   <NA>
## 26                                   <NA>
## 27                                   <NA>
## 28                                   <NA>
## 29                                   <NA>
## 30                                   <NA>
## 31                                   <NA>
## 32                                   <NA>
## 33                                    Yes
## 34                                   <NA>
## 35                                   <NA>
## 36                                   <NA>
## 37                                   <NA>
## 38                                   <NA>
## 39                                   <NA>
## 40                                   <NA>
## 41                                   <NA>
## 42                                   <NA>
## 43                                   <NA>
## 44                                   <NA>
## 45                                   <NA>
## 46                                   <NA>
## 47                                   <NA>
## 48                                   <NA>
## 49                                   <NA>
## 50                                   <NA>
## 51                                   <NA>
## 52                                     No
## 53                                     No
## 54                                     No
## 55                                     No
## 56                                     No
## 57                                     No
## 58                                     No
## 59                                     No
## 60                                     No
## 61                                     No
## 62                                     No
## 63                                     No
## 64                                     No
## 65                                     No
## 66                                     No
## 67                                     No
## 68                                     No
## 69                                   <NA>
## 70                                     No
## 71                                     No
## 72                                     No
## 73                                     No
## 74                                   <NA>
## 75                                     No
## 76                                     No
## 77                                     No
## 78                                     No
## 79                                   <NA>
## 80                                   <NA>
## 81                                   <NA>
## 82                                   <NA>
## 83                                     No
## 84                                     No
## 85                                     No
## 86                                   <NA>
## 87                                     No
## 88                                     No
## 89                                     No
## 90                                     No
## 91                                     No
## 92                                     No
## 93                                     No
## 94                                     No
## 95                                   <NA>
## 96                                     No
## 97                                   <NA>
## 98                                   <NA>
## 99                                     No
## 100                                    No
## 101                                    No
## 102                                    No
## 103                                    No
## 104                                    No
## 105                                    No
## 106                                    No
## 107                                    No
## 108                                    No
## 109                                    No
## 110                                    No
## 111                                    No
## 112                                    No
## 113                                    No
## 114                                    No
## 115                                    No
## 116                                    No
## 117                                    No
## 118                                    No
## 119                                    No
## 120                                    No
## 121                                    No
## 122                                    No
## 123                                    No
## 124                                    No
## 125                                    No
## 126                                    No
## 127                                    No
## 128                                    No
## 129                                    No
## 130                                    No
## 131                                    No
## 132                                    No
## 133                                    No
## 134                                    No
## 135                                    No
## 136                                    No
## 137                                    No
## 138                                    No
## 139                                    No
## 140                                    No
## 141                                    No
## 142                                    No
## 143                                    No
## 144                                    No
## 145                                    No
## 146                                    No
## 147                                    No
## 148                                    No
## 149                                    No
## 150                                    No
## 151                                    No
## 152                                    No
## 153                                    No
## 154                                    No
## 155                                    No
## 156                                    No
## 157                                    No
## 158                                    No
## 159                                    No
## 160                                    No
## 161                                    No
## 162                                    No
## 163                                    No
## 164                                    No
## 165                                    No
## 166                                    No
## 167                                    No
## 168                                    No
## 169                                    No
## 170                                    No
## 171                                    No
## 172                                    No
## 173                                    No
## 174                                    No
## 175                                    No
## 176                                    No
## 177                                    No
## 178                                    No
## 179                                    No
## 180                                    No
## 181                                    No
## 182                                    No
## 183                                    No
## 184                                    No
## 185                                    No
## 186                                    No
## 187                                    No
## 188                                    No
## 189                                    No
## 190                                    No
## 191                                    No
## 192                                    No
## 193                                    No
## 194                                    No
## 195                                    No
## 196                                    No
## 197                                    No
## 198                                    No
## 199                                    No
## 200                                    No
## 201                                    No
## 202                                    No
## 203                                  <NA>
## 204                                  <NA>
## 205                                  <NA>
## 206                                    No
## 207                                  <NA>
## 208                                  <NA>
## 209                                  <NA>
## 210                                  <NA>
## 211                                  <NA>
## 212                                    No
## 213                                  <NA>
## 214                                    No
## 215                                  <NA>
## 216                                    No
## 217                                    No
## 218                                  <NA>
## 219                                    No
## 220                                   Yes
## 221                                  <NA>
## 222                                    No
## 223                                    No
## 224                                    No
## 225                                  <NA>
## 226                                    No
## 227                                  <NA>
## 228                                  <NA>
## 229                                    No
## 230                                  <NA>
## 231                                  <NA>
## 232                                    No
## 233                                  <NA>
## 234                                  <NA>
## 235                                    No
## 236                                    No
## 237                                  <NA>
## 238                                    No
## 239                                  <NA>
## 240                                  <NA>
## 241                                    No
## 242                                  <NA>
## 243                                  <NA>
## 244                                    No
## 245                                   Yes
## 246                                    No
## 247                                  <NA>
## 248                                  <NA>
## 249                                    No
## 250                                  <NA>
## 251                                  <NA>
## 252                                  <NA>
## 253                                  <NA>
## 254                                   Yes
## 255                                  <NA>
## 256                                   Yes
## 257                                  <NA>
## 258                                  <NA>
## 259                                  <NA>
## 260                                  <NA>
## 261                                  <NA>
## 262                                  <NA>
## 263                                  <NA>
## 264                                  <NA>
## 265                                  <NA>
## 266                                  <NA>
## 267                                  <NA>
## 268                                  <NA>
## 269                                  <NA>
## 270                                  <NA>
## 271                                  <NA>
## 272                                  <NA>
## 273                                  <NA>
## 274                                  <NA>
## 275                                  <NA>
## 276                                  <NA>
## 277                                  <NA>
## 278                                  <NA>
## 279                                  <NA>
## 280                                  <NA>
## 281                                  <NA>
## 282                                  <NA>
## 283                                  <NA>
## 284                                  <NA>
## 285                                  <NA>
## 286                                  <NA>
## 287                                  <NA>
## 288                                  <NA>
## 289                                  <NA>
## 290                                  <NA>
## 291                                  <NA>
## 292                                  <NA>
## 293                                  <NA>
## 294                                  <NA>
## 295                                  <NA>
## 296                                  <NA>
## 297                                  <NA>
## 298                                  <NA>
## 299                                  <NA>
## 300                                  <NA>
## 302                                  <NA>
## 303                                    No
## 304                                    No
## 305                                    No
## 306                                  <NA>
## 307                                  <NA>
## 308                                  <NA>
## 309                                  <NA>
## 310                                  <NA>
## 311                                    No
## 312                                    No
## 313                                    No
## 314                                    No
## 315                                  <NA>
## 316                                    No
## 317                                    No
## 318                                  <NA>
## 319                                  <NA>
## 320                                    No
## 321                                    No
## 322                                  <NA>
## 323                                  <NA>
## 324                                  <NA>
## 325                                  <NA>
## 326                                  <NA>
## 327                                    No
## 328                                  <NA>
## 329                                  <NA>
## 330                                  <NA>
## 331                                    No
## 332                                  <NA>
## 333                                  <NA>
## 334                                  <NA>
## 335                                  <NA>
## 336                                  <NA>
## 337                                  <NA>
## 338                                    No
## 339                                    No
## 340                                    No
## 341                                  <NA>
## 342                                    No
## 343                                    No
## 344                                  <NA>
## 345                                  <NA>
## 346                                  <NA>
## 347                                  <NA>
## 348                                    No
## 349                                  <NA>
## 350                                    No
## 351                                  <NA>
## 352                                  <NA>
## 353                                  <NA>
## 354                                  <NA>
## 355                                  <NA>
## 356                                    No
## 357                                  <NA>
## 358                                    No
## 359                                  <NA>
## 360                                    No
## 361                                  <NA>
## 362                                    No
## 363                                  <NA>
## 364                                  <NA>
## 365                                  <NA>
## 366                                  <NA>
## 367                                    No
## 368                                  <NA>
## 369                                  <NA>
## 370                                    No
## 371                                    No
## 372                                    No
## 373                                  <NA>
## 374                                  <NA>
## 375                                    No
## 376                                  <NA>
## 377                                  <NA>
## 378                                  <NA>
## 379                                  <NA>
## 380                                  <NA>
## 381                                  <NA>
## 382                                    No
## 383                                  <NA>
## 384                                  <NA>
## 385                                  <NA>
## 386                                  <NA>
## 387                                  <NA>
## 388                                  <NA>
## 389                                  <NA>
## 390                                  <NA>
## 391                                  <NA>
## 392                                  <NA>
## 393                                  <NA>
## 394                                  <NA>
## 395                                  <NA>
## 396                                  <NA>
## 397                                  <NA>
## 398                                  <NA>
## 399                                  <NA>
## 400                                  <NA>
## 401                                  <NA>
## 402                                    No
## 403                                    No
## 404                                    No
## 405                                    No
## 406                                    No
## 407                                    No
## 408                                    No
## 409                                    No
## 410                                    No
## 411                                    No
## 412                                    No
## 413                                    No
## 414                                    No
## 415                                    No
## 416                                    No
## 417                                    No
## 418                                    No
## 419                                    No
## 420                                    No
## 421                                    No
## 422                                    No
## 423                                    No
## 424                                    No
## 425                                    No
## 426                                    No
## 427                                    No
## 428                                    No
## 429                                    No
## 430                                    No
## 431                                    No
## 432                                    No
## 433                                    No
## 434                                    No
## 435                                    No
## 436                                    No
## 437                                    No
## 438                                    No
## 439                                    No
## 440                                    No
## 441                                    No
## 442                                    No
## 443                                    No
## 444                                    No
## 445                                    No
## 446                                    No
## 447                                    No
## 448                                    No
## 449                                    No
## 450                                    No
## 451                                    No
## 452                                    No
## 453                                    No
## 454                                    No
## 455                                  <NA>
## 456                                  <NA>
## 457                                  <NA>
## 458                                  <NA>
## 459                                  <NA>
## 460                                  <NA>
## 461                                  <NA>
## 462                                    No
## 463                                  <NA>
## 464                                  <NA>
## 465                                  <NA>
## 466                                  <NA>
## 467                                   Yes
## 468                                  <NA>
## 469                                    No
## 470                                  <NA>
## 471                                    No
## 472                                    No
## 473                                  <NA>
## 474                                  <NA>
## 475                                  <NA>
## 476                                  <NA>
## 477                                  <NA>
## 478                                  <NA>
## 479                                  <NA>
## 480                                  <NA>
## 481                                  <NA>
## 482                                  <NA>
## 483                                  <NA>
## 484                                  <NA>
## 485                                    No
## 486                                    No
## 487                                  <NA>
## 488                                  <NA>
## 489                                  <NA>
## 490                                    No
## 491                                    No
## 492                                    No
## 493                                  <NA>
## 494                                  <NA>
## 495                                    No
## 496                                  <NA>
##      Associated.to.Community.Based.Organization
## 1                                           Yes
## 2                                          <NA>
## 3                                          <NA>
## 4                                          <NA>
## 5                                          <NA>
## 6                                          <NA>
## 7                                           Yes
## 8                                           Yes
## 9                                          <NA>
## 10                                         <NA>
## 11                                         <NA>
## 12                                         <NA>
## 13                                         <NA>
## 14                                         <NA>
## 15                                         <NA>
## 16                                         <NA>
## 17                                         <NA>
## 18                                          Yes
## 19                                          Yes
## 20                                         <NA>
## 21                                         <NA>
## 22                                         <NA>
## 23                                         <NA>
## 24                                          Yes
## 25                                         <NA>
## 26                                         <NA>
## 27                                         <NA>
## 28                                         <NA>
## 29                                         <NA>
## 30                                         <NA>
## 31                                         <NA>
## 32                                         <NA>
## 33                                         <NA>
## 34                                         <NA>
## 35                                         <NA>
## 36                                         <NA>
## 37                                         <NA>
## 38                                         <NA>
## 39                                         <NA>
## 40                                          Yes
## 41                                         <NA>
## 42                                         <NA>
## 43                                          Yes
## 44                                         <NA>
## 45                                         <NA>
## 46                                          Yes
## 47                                         <NA>
## 48                                          Yes
## 49                                          Yes
## 50                                          Yes
## 51                                         <NA>
## 52                                           No
## 53                                          Yes
## 54                                          Yes
## 55                                          Yes
## 56                                          Yes
## 57                                          Yes
## 58                                           No
## 59                                          Yes
## 60                                           No
## 61                                          Yes
## 62                                           No
## 63                                          Yes
## 64                                          Yes
## 65                                           No
## 66                                          Yes
## 67                                           No
## 68                                           No
## 69                                         <NA>
## 70                                          Yes
## 71                                          Yes
## 72                                          Yes
## 73                                           No
## 74                                         <NA>
## 75                                          Yes
## 76                                          Yes
## 77                                          Yes
## 78                                          Yes
## 79                                         <NA>
## 80                                         <NA>
## 81                                         <NA>
## 82                                         <NA>
## 83                                           No
## 84                                          Yes
## 85                                          Yes
## 86                                         <NA>
## 87                                          Yes
## 88                                          Yes
## 89                                          Yes
## 90                                          Yes
## 91                                           No
## 92                                          Yes
## 93                                          Yes
## 94                                           No
## 95                                         <NA>
## 96                                          Yes
## 97                                         <NA>
## 98                                         <NA>
## 99                                          Yes
## 100                                         Yes
## 101                                          No
## 102                                          No
## 103                                          No
## 104                                          No
## 105                                         Yes
## 106                                         Yes
## 107                                         Yes
## 108                                          No
## 109                                          No
## 110                                          No
## 111                                          No
## 112                                         Yes
## 113                                          No
## 114                                         Yes
## 115                                          No
## 116                                          No
## 117                                          No
## 118                                          No
## 119                                          No
## 120                                          No
## 121                                          No
## 122                                          No
## 123                                          No
## 124                                          No
## 125                                          No
## 126                                          No
## 127                                         Yes
## 128                                          No
## 129                                          No
## 130                                          No
## 131                                          No
## 132                                          No
## 133                                          No
## 134                                         Yes
## 135                                          No
## 136                                          No
## 137                                          No
## 138                                         Yes
## 139                                          No
## 140                                          No
## 141                                          No
## 142                                          No
## 143                                          No
## 144                                         Yes
## 145                                          No
## 146                                          No
## 147                                          No
## 148                                          No
## 149                                          No
## 150                                          No
## 151                                          No
## 152                                          No
## 153                                          No
## 154                                          No
## 155                                          No
## 156                                          No
## 157                                          No
## 158                                          No
## 159                                          No
## 160                                          No
## 161                                          No
## 162                                          No
## 163                                          No
## 164                                          No
## 165                                          No
## 166                                          No
## 167                                          No
## 168                                          No
## 169                                          No
## 170                                          No
## 171                                          No
## 172                                          No
## 173                                         Yes
## 174                                          No
## 175                                          No
## 176                                          No
## 177                                          No
## 178                                          No
## 179                                          No
## 180                                          No
## 181                                          No
## 182                                         Yes
## 183                                          No
## 184                                          No
## 185                                          No
## 186                                          No
## 187                                          No
## 188                                          No
## 189                                          No
## 190                                          No
## 191                                          No
## 192                                          No
## 193                                          No
## 194                                          No
## 195                                          No
## 196                                          No
## 197                                          No
## 198                                          No
## 199                                          No
## 200                                          No
## 201                                          No
## 202                                         Yes
## 203                                        <NA>
## 204                                        <NA>
## 205                                        <NA>
## 206                                          No
## 207                                        <NA>
## 208                                        <NA>
## 209                                        <NA>
## 210                                        <NA>
## 211                                        <NA>
## 212                                         Yes
## 213                                        <NA>
## 214                                          No
## 215                                        <NA>
## 216                                          No
## 217                                          No
## 218                                        <NA>
## 219                                          No
## 220                                          No
## 221                                        <NA>
## 222                                          No
## 223                                          No
## 224                                          No
## 225                                        <NA>
## 226                                          No
## 227                                        <NA>
## 228                                        <NA>
## 229                                          No
## 230                                        <NA>
## 231                                        <NA>
## 232                                         Yes
## 233                                        <NA>
## 234                                        <NA>
## 235                                         Yes
## 236                                          No
## 237                                        <NA>
## 238                                         Yes
## 239                                        <NA>
## 240                                        <NA>
## 241                                          No
## 242                                        <NA>
## 243                                        <NA>
## 244                                          No
## 245                                          No
## 246                                          No
## 247                                        <NA>
## 248                                        <NA>
## 249                                         Yes
## 250                                        <NA>
## 251                                        <NA>
## 252                                        <NA>
## 253                                        <NA>
## 254                                        <NA>
## 255                                        <NA>
## 256                                        <NA>
## 257                                        <NA>
## 258                                        <NA>
## 259                                        <NA>
## 260                                        <NA>
## 261                                        <NA>
## 262                                        <NA>
## 263                                        <NA>
## 264                                        <NA>
## 265                                        <NA>
## 266                                        <NA>
## 267                                        <NA>
## 268                                        <NA>
## 269                                        <NA>
## 270                                        <NA>
## 271                                        <NA>
## 272                                        <NA>
## 273                                        <NA>
## 274                                        <NA>
## 275                                        <NA>
## 276                                        <NA>
## 277                                        <NA>
## 278                                        <NA>
## 279                                        <NA>
## 280                                        <NA>
## 281                                        <NA>
## 282                                        <NA>
## 283                                        <NA>
## 284                                        <NA>
## 285                                        <NA>
## 286                                        <NA>
## 287                                        <NA>
## 288                                        <NA>
## 289                                        <NA>
## 290                                        <NA>
## 291                                        <NA>
## 292                                        <NA>
## 293                                        <NA>
## 294                                        <NA>
## 295                                        <NA>
## 296                                        <NA>
## 297                                        <NA>
## 298                                        <NA>
## 299                                        <NA>
## 300                                        <NA>
## 302                                        <NA>
## 303                                         Yes
## 304                                          No
## 305                                          No
## 306                                        <NA>
## 307                                        <NA>
## 308                                        <NA>
## 309                                        <NA>
## 310                                        <NA>
## 311                                          No
## 312                                         Yes
## 313                                          No
## 314                                          No
## 315                                        <NA>
## 316                                          No
## 317                                          No
## 318                                        <NA>
## 319                                        <NA>
## 320                                          No
## 321                                          No
## 322                                        <NA>
## 323                                        <NA>
## 324                                        <NA>
## 325                                        <NA>
## 326                                        <NA>
## 327                                          No
## 328                                        <NA>
## 329                                        <NA>
## 330                                        <NA>
## 331                                          No
## 332                                        <NA>
## 333                                        <NA>
## 334                                        <NA>
## 335                                        <NA>
## 336                                        <NA>
## 337                                        <NA>
## 338                                          No
## 339                                          No
## 340                                          No
## 341                                        <NA>
## 342                                          No
## 343                                         Yes
## 344                                        <NA>
## 345                                        <NA>
## 346                                        <NA>
## 347                                        <NA>
## 348                                          No
## 349                                        <NA>
## 350                                         Yes
## 351                                        <NA>
## 352                                        <NA>
## 353                                        <NA>
## 354                                        <NA>
## 355                                        <NA>
## 356                                          No
## 357                                        <NA>
## 358                                          No
## 359                                        <NA>
## 360                                         Yes
## 361                                        <NA>
## 362                                         Yes
## 363                                        <NA>
## 364                                        <NA>
## 365                                        <NA>
## 366                                        <NA>
## 367                                         Yes
## 368                                        <NA>
## 369                                        <NA>
## 370                                         Yes
## 371                                         Yes
## 372                                         Yes
## 373                                        <NA>
## 374                                        <NA>
## 375                                         Yes
## 376                                        <NA>
## 377                                        <NA>
## 378                                        <NA>
## 379                                        <NA>
## 380                                        <NA>
## 381                                        <NA>
## 382                                         Yes
## 383                                        <NA>
## 384                                        <NA>
## 385                                        <NA>
## 386                                        <NA>
## 387                                        <NA>
## 388                                        <NA>
## 389                                        <NA>
## 390                                        <NA>
## 391                                        <NA>
## 392                                        <NA>
## 393                                        <NA>
## 394                                        <NA>
## 395                                        <NA>
## 396                                        <NA>
## 397                                        <NA>
## 398                                        <NA>
## 399                                        <NA>
## 400                                        <NA>
## 401                                        <NA>
## 402                                          No
## 403                                          No
## 404                                          No
## 405                                          No
## 406                                          No
## 407                                          No
## 408                                          No
## 409                                          No
## 410                                          No
## 411                                          No
## 412                                          No
## 413                                          No
## 414                                          No
## 415                                          No
## 416                                          No
## 417                                          No
## 418                                          No
## 419                                          No
## 420                                          No
## 421                                          No
## 422                                          No
## 423                                          No
## 424                                          No
## 425                                          No
## 426                                          No
## 427                                          No
## 428                                          No
## 429                                          No
## 430                                          No
## 431                                          No
## 432                                          No
## 433                                          No
## 434                                          No
## 435                                          No
## 436                                          No
## 437                                          No
## 438                                          No
## 439                                          No
## 440                                          No
## 441                                          No
## 442                                          No
## 443                                          No
## 444                                          No
## 445                                          No
## 446                                          No
## 447                                          No
## 448                                          No
## 449                                          No
## 450                                          No
## 451                                          No
## 452                                          No
## 453                                          No
## 454                                         Yes
## 455                                        <NA>
## 456                                        <NA>
## 457                                        <NA>
## 458                                        <NA>
## 459                                        <NA>
## 460                                        <NA>
## 461                                        <NA>
## 462                                          No
## 463                                        <NA>
## 464                                        <NA>
## 465                                        <NA>
## 466                                        <NA>
## 467                                          No
## 468                                        <NA>
## 469                                          No
## 470                                        <NA>
## 471                                          No
## 472                                          No
## 473                                        <NA>
## 474                                        <NA>
## 475                                        <NA>
## 476                                        <NA>
## 477                                        <NA>
## 478                                        <NA>
## 479                                        <NA>
## 480                                        <NA>
## 481                                        <NA>
## 482                                        <NA>
## 483                                        <NA>
## 484                                        <NA>
## 485                                          No
## 486                                          No
## 487                                        <NA>
## 488                                        <NA>
## 489                                        <NA>
## 490                                          No
## 491                                          No
## 492                                          No
## 493                                        <NA>
## 494                                        <NA>
## 495                                          No
## 496                                        <NA>
##      Associated.to.Religious.Organization
## 1                                    <NA>
## 2                                    <NA>
## 3                                    <NA>
## 4                                    <NA>
## 5                                    <NA>
## 6                                    <NA>
## 7                                    <NA>
## 8                                    <NA>
## 9                                    <NA>
## 10                                   <NA>
## 11                                   <NA>
## 12                                    Yes
## 13                                   <NA>
## 14                                   <NA>
## 15                                   <NA>
## 16                                   <NA>
## 17                                   <NA>
## 18                                   <NA>
## 19                                   <NA>
## 20                                   <NA>
## 21                                   <NA>
## 22                                   <NA>
## 23                                   <NA>
## 24                                   <NA>
## 25                                   <NA>
## 26                                   <NA>
## 27                                   <NA>
## 28                                   <NA>
## 29                                   <NA>
## 30                                   <NA>
## 31                                   <NA>
## 32                                   <NA>
## 33                                   <NA>
## 34                                   <NA>
## 35                                   <NA>
## 36                                   <NA>
## 37                                   <NA>
## 38                                   <NA>
## 39                                   <NA>
## 40                                   <NA>
## 41                                   <NA>
## 42                                   <NA>
## 43                                   <NA>
## 44                                   <NA>
## 45                                   <NA>
## 46                                   <NA>
## 47                                   <NA>
## 48                                   <NA>
## 49                                   <NA>
## 50                                   <NA>
## 51                                   <NA>
## 52                                    Yes
## 53                                     No
## 54                                     No
## 55                                     No
## 56                                     No
## 57                                     No
## 58                                     No
## 59                                     No
## 60                                    Yes
## 61                                     No
## 62                                    Yes
## 63                                     No
## 64                                     No
## 65                                     No
## 66                                     No
## 67                                     No
## 68                                    Yes
## 69                                   <NA>
## 70                                     No
## 71                                     No
## 72                                     No
## 73                                     No
## 74                                   <NA>
## 75                                     No
## 76                                     No
## 77                                     No
## 78                                     No
## 79                                   <NA>
## 80                                   <NA>
## 81                                   <NA>
## 82                                   <NA>
## 83                                     No
## 84                                     No
## 85                                     No
## 86                                   <NA>
## 87                                     No
## 88                                     No
## 89                                     No
## 90                                     No
## 91                                     No
## 92                                     No
## 93                                     No
## 94                                    Yes
## 95                                   <NA>
## 96                                     No
## 97                                   <NA>
## 98                                   <NA>
## 99                                     No
## 100                                    No
## 101                                    No
## 102                                    No
## 103                                    No
## 104                                    No
## 105                                    No
## 106                                    No
## 107                                    No
## 108                                    No
## 109                                    No
## 110                                    No
## 111                                    No
## 112                                    No
## 113                                    No
## 114                                    No
## 115                                    No
## 116                                    No
## 117                                    No
## 118                                    No
## 119                                    No
## 120                                    No
## 121                                    No
## 122                                    No
## 123                                    No
## 124                                    No
## 125                                    No
## 126                                    No
## 127                                    No
## 128                                    No
## 129                                    No
## 130                                    No
## 131                                    No
## 132                                    No
## 133                                    No
## 134                                    No
## 135                                    No
## 136                                    No
## 137                                    No
## 138                                    No
## 139                                    No
## 140                                    No
## 141                                    No
## 142                                    No
## 143                                    No
## 144                                    No
## 145                                    No
## 146                                    No
## 147                                    No
## 148                                    No
## 149                                    No
## 150                                    No
## 151                                    No
## 152                                    No
## 153                                    No
## 154                                   Yes
## 155                                    No
## 156                                    No
## 157                                    No
## 158                                    No
## 159                                    No
## 160                                    No
## 161                                    No
## 162                                    No
## 163                                    No
## 164                                    No
## 165                                    No
## 166                                    No
## 167                                    No
## 168                                    No
## 169                                    No
## 170                                    No
## 171                                    No
## 172                                    No
## 173                                    No
## 174                                    No
## 175                                    No
## 176                                    No
## 177                                    No
## 178                                    No
## 179                                    No
## 180                                    No
## 181                                    No
## 182                                    No
## 183                                    No
## 184                                    No
## 185                                    No
## 186                                    No
## 187                                    No
## 188                                    No
## 189                                    No
## 190                                    No
## 191                                    No
## 192                                    No
## 193                                    No
## 194                                    No
## 195                                    No
## 196                                    No
## 197                                    No
## 198                                    No
## 199                                    No
## 200                                    No
## 201                                    No
## 202                                    No
## 203                                  <NA>
## 204                                  <NA>
## 205                                  <NA>
## 206                                    No
## 207                                  <NA>
## 208                                  <NA>
## 209                                  <NA>
## 210                                  <NA>
## 211                                  <NA>
## 212                                    No
## 213                                  <NA>
## 214                                    No
## 215                                  <NA>
## 216                                    No
## 217                                   Yes
## 218                                  <NA>
## 219                                    No
## 220                                    No
## 221                                  <NA>
## 222                                    No
## 223                                   Yes
## 224                                    No
## 225                                  <NA>
## 226                                    No
## 227                                  <NA>
## 228                                  <NA>
## 229                                    No
## 230                                  <NA>
## 231                                  <NA>
## 232                                    No
## 233                                  <NA>
## 234                                  <NA>
## 235                                    No
## 236                                   Yes
## 237                                  <NA>
## 238                                    No
## 239                                  <NA>
## 240                                  <NA>
## 241                                   Yes
## 242                                  <NA>
## 243                                  <NA>
## 244                                    No
## 245                                    No
## 246                                    No
## 247                                  <NA>
## 248                                  <NA>
## 249                                    No
## 250                                  <NA>
## 251                                  <NA>
## 252                                  <NA>
## 253                                  <NA>
## 254                                  <NA>
## 255                                  <NA>
## 256                                  <NA>
## 257                                  <NA>
## 258                                  <NA>
## 259                                  <NA>
## 260                                  <NA>
## 261                                  <NA>
## 262                                  <NA>
## 263                                  <NA>
## 264                                  <NA>
## 265                                  <NA>
## 266                                  <NA>
## 267                                  <NA>
## 268                                  <NA>
## 269                                  <NA>
## 270                                  <NA>
## 271                                  <NA>
## 272                                  <NA>
## 273                                  <NA>
## 274                                  <NA>
## 275                                  <NA>
## 276                                  <NA>
## 277                                  <NA>
## 278                                  <NA>
## 279                                  <NA>
## 280                                  <NA>
## 281                                  <NA>
## 282                                  <NA>
## 283                                  <NA>
## 284                                  <NA>
## 285                                  <NA>
## 286                                  <NA>
## 287                                  <NA>
## 288                                  <NA>
## 289                                  <NA>
## 290                                  <NA>
## 291                                  <NA>
## 292                                  <NA>
## 293                                  <NA>
## 294                                  <NA>
## 295                                  <NA>
## 296                                  <NA>
## 297                                  <NA>
## 298                                  <NA>
## 299                                  <NA>
## 300                                  <NA>
## 302                                  <NA>
## 303                                    No
## 304                                   Yes
## 305                                    No
## 306                                  <NA>
## 307                                  <NA>
## 308                                  <NA>
## 309                                  <NA>
## 310                                  <NA>
## 311                                    No
## 312                                   Yes
## 313                                    No
## 314                                   Yes
## 315                                  <NA>
## 316                                    No
## 317                                    No
## 318                                  <NA>
## 319                                  <NA>
## 320                                    No
## 321                                   Yes
## 322                                  <NA>
## 323                                  <NA>
## 324                                  <NA>
## 325                                  <NA>
## 326                                  <NA>
## 327                                    No
## 328                                  <NA>
## 329                                  <NA>
## 330                                  <NA>
## 331                                    No
## 332                                  <NA>
## 333                                  <NA>
## 334                                  <NA>
## 335                                  <NA>
## 336                                  <NA>
## 337                                  <NA>
## 338                                    No
## 339                                    No
## 340                                    No
## 341                                  <NA>
## 342                                   Yes
## 343                                    No
## 344                                  <NA>
## 345                                  <NA>
## 346                                  <NA>
## 347                                  <NA>
## 348                                    No
## 349                                  <NA>
## 350                                    No
## 351                                  <NA>
## 352                                  <NA>
## 353                                  <NA>
## 354                                  <NA>
## 355                                  <NA>
## 356                                    No
## 357                                  <NA>
## 358                                    No
## 359                                  <NA>
## 360                                    No
## 361                                  <NA>
## 362                                    No
## 363                                  <NA>
## 364                                  <NA>
## 365                                  <NA>
## 366                                  <NA>
## 367                                    No
## 368                                  <NA>
## 369                                  <NA>
## 370                                    No
## 371                                    No
## 372                                    No
## 373                                  <NA>
## 374                                  <NA>
## 375                                    No
## 376                                  <NA>
## 377                                  <NA>
## 378                                  <NA>
## 379                                  <NA>
## 380                                  <NA>
## 381                                  <NA>
## 382                                    No
## 383                                  <NA>
## 384                                  <NA>
## 385                                  <NA>
## 386                                  <NA>
## 387                                  <NA>
## 388                                  <NA>
## 389                                  <NA>
## 390                                  <NA>
## 391                                  <NA>
## 392                                  <NA>
## 393                                  <NA>
## 394                                  <NA>
## 395                                  <NA>
## 396                                  <NA>
## 397                                  <NA>
## 398                                  <NA>
## 399                                  <NA>
## 400                                  <NA>
## 401                                  <NA>
## 402                                    No
## 403                                    No
## 404                                    No
## 405                                    No
## 406                                    No
## 407                                    No
## 408                                    No
## 409                                    No
## 410                                    No
## 411                                    No
## 412                                    No
## 413                                    No
## 414                                    No
## 415                                    No
## 416                                    No
## 417                                    No
## 418                                    No
## 419                                    No
## 420                                    No
## 421                                    No
## 422                                    No
## 423                                    No
## 424                                    No
## 425                                    No
## 426                                    No
## 427                                    No
## 428                                    No
## 429                                    No
## 430                                    No
## 431                                    No
## 432                                    No
## 433                                    No
## 434                                    No
## 435                                    No
## 436                                    No
## 437                                    No
## 438                                    No
## 439                                    No
## 440                                    No
## 441                                    No
## 442                                    No
## 443                                    No
## 444                                    No
## 445                                    No
## 446                                    No
## 447                                    No
## 448                                    No
## 449                                    No
## 450                                    No
## 451                                    No
## 452                                    No
## 453                                    No
## 454                                    No
## 455                                  <NA>
## 456                                  <NA>
## 457                                  <NA>
## 458                                  <NA>
## 459                                  <NA>
## 460                                  <NA>
## 461                                  <NA>
## 462                                    No
## 463                                  <NA>
## 464                                  <NA>
## 465                                  <NA>
## 466                                  <NA>
## 467                                    No
## 468                                  <NA>
## 469                                    No
## 470                                  <NA>
## 471                                    No
## 472                                    No
## 473                                  <NA>
## 474                                  <NA>
## 475                                  <NA>
## 476                                  <NA>
## 477                                  <NA>
## 478                                  <NA>
## 479                                  <NA>
## 480                                  <NA>
## 481                                  <NA>
## 482                                  <NA>
## 483                                  <NA>
## 484                                  <NA>
## 485                                    No
## 486                                    No
## 487                                  <NA>
## 488                                  <NA>
## 489                                  <NA>
## 490                                    No
## 491                                    No
## 492                                   Yes
## 493                                  <NA>
## 494                                  <NA>
## 495                                    No
## 496                                  <NA>
##      Associated.to.Cultural..drama..theatre.etc..Organization
## 1                                                        <NA>
## 2                                                        <NA>
## 3                                                        <NA>
## 4                                                        <NA>
## 5                                                        <NA>
## 6                                                        <NA>
## 7                                                        <NA>
## 8                                                        <NA>
## 9                                                        <NA>
## 10                                                       <NA>
## 11                                                       <NA>
## 12                                                       <NA>
## 13                                                       <NA>
## 14                                                       <NA>
## 15                                                       <NA>
## 16                                                       <NA>
## 17                                                       <NA>
## 18                                                       <NA>
## 19                                                       <NA>
## 20                                                       <NA>
## 21                                                       <NA>
## 22                                                       <NA>
## 23                                                       <NA>
## 24                                                       <NA>
## 25                                                       <NA>
## 26                                                       <NA>
## 27                                                       <NA>
## 28                                                       <NA>
## 29                                                       <NA>
## 30                                                       <NA>
## 31                                                       <NA>
## 32                                                       <NA>
## 33                                                       <NA>
## 34                                                       <NA>
## 35                                                       <NA>
## 36                                                       <NA>
## 37                                                       <NA>
## 38                                                       <NA>
## 39                                                       <NA>
## 40                                                       <NA>
## 41                                                       <NA>
## 42                                                       <NA>
## 43                                                       <NA>
## 44                                                       <NA>
## 45                                                       <NA>
## 46                                                       <NA>
## 47                                                       <NA>
## 48                                                       <NA>
## 49                                                       <NA>
## 50                                                       <NA>
## 51                                                       <NA>
## 52                                                         No
## 53                                                         No
## 54                                                         No
## 55                                                         No
## 56                                                         No
## 57                                                         No
## 58                                                         No
## 59                                                         No
## 60                                                         No
## 61                                                         No
## 62                                                         No
## 63                                                         No
## 64                                                         No
## 65                                                         No
## 66                                                         No
## 67                                                         No
## 68                                                         No
## 69                                                       <NA>
## 70                                                         No
## 71                                                         No
## 72                                                         No
## 73                                                         No
## 74                                                       <NA>
## 75                                                         No
## 76                                                         No
## 77                                                         No
## 78                                                         No
## 79                                                       <NA>
## 80                                                       <NA>
## 81                                                       <NA>
## 82                                                       <NA>
## 83                                                         No
## 84                                                         No
## 85                                                         No
## 86                                                       <NA>
## 87                                                         No
## 88                                                         No
## 89                                                         No
## 90                                                         No
## 91                                                         No
## 92                                                         No
## 93                                                         No
## 94                                                         No
## 95                                                       <NA>
## 96                                                         No
## 97                                                       <NA>
## 98                                                       <NA>
## 99                                                         No
## 100                                                        No
## 101                                                        No
## 102                                                        No
## 103                                                        No
## 104                                                        No
## 105                                                        No
## 106                                                        No
## 107                                                        No
## 108                                                        No
## 109                                                        No
## 110                                                        No
## 111                                                        No
## 112                                                        No
## 113                                                        No
## 114                                                        No
## 115                                                        No
## 116                                                        No
## 117                                                        No
## 118                                                        No
## 119                                                        No
## 120                                                        No
## 121                                                        No
## 122                                                        No
## 123                                                        No
## 124                                                        No
## 125                                                        No
## 126                                                        No
## 127                                                        No
## 128                                                        No
## 129                                                        No
## 130                                                        No
## 131                                                        No
## 132                                                        No
## 133                                                        No
## 134                                                        No
## 135                                                        No
## 136                                                        No
## 137                                                        No
## 138                                                        No
## 139                                                        No
## 140                                                        No
## 141                                                        No
## 142                                                        No
## 143                                                        No
## 144                                                        No
## 145                                                        No
## 146                                                        No
## 147                                                        No
## 148                                                        No
## 149                                                        No
## 150                                                        No
## 151                                                        No
## 152                                                        No
## 153                                                        No
## 154                                                        No
## 155                                                        No
## 156                                                        No
## 157                                                        No
## 158                                                        No
## 159                                                        No
## 160                                                        No
## 161                                                        No
## 162                                                        No
## 163                                                        No
## 164                                                        No
## 165                                                        No
## 166                                                        No
## 167                                                        No
## 168                                                        No
## 169                                                        No
## 170                                                        No
## 171                                                        No
## 172                                                        No
## 173                                                        No
## 174                                                        No
## 175                                                        No
## 176                                                        No
## 177                                                        No
## 178                                                        No
## 179                                                        No
## 180                                                        No
## 181                                                        No
## 182                                                        No
## 183                                                        No
## 184                                                        No
## 185                                                        No
## 186                                                        No
## 187                                                        No
## 188                                                        No
## 189                                                        No
## 190                                                        No
## 191                                                        No
## 192                                                        No
## 193                                                        No
## 194                                                        No
## 195                                                        No
## 196                                                        No
## 197                                                        No
## 198                                                        No
## 199                                                        No
## 200                                                        No
## 201                                                        No
## 202                                                        No
## 203                                                      <NA>
## 204                                                      <NA>
## 205                                                      <NA>
## 206                                                       Yes
## 207                                                      <NA>
## 208                                                      <NA>
## 209                                                      <NA>
## 210                                                      <NA>
## 211                                                      <NA>
## 212                                                        No
## 213                                                      <NA>
## 214                                                       Yes
## 215                                                      <NA>
## 216                                                        No
## 217                                                        No
## 218                                                      <NA>
## 219                                                        No
## 220                                                        No
## 221                                                      <NA>
## 222                                                        No
## 223                                                        No
## 224                                                        No
## 225                                                      <NA>
## 226                                                        No
## 227                                                      <NA>
## 228                                                      <NA>
## 229                                                        No
## 230                                                      <NA>
## 231                                                      <NA>
## 232                                                        No
## 233                                                      <NA>
## 234                                                      <NA>
## 235                                                        No
## 236                                                        No
## 237                                                      <NA>
## 238                                                        No
## 239                                                      <NA>
## 240                                                      <NA>
## 241                                                        No
## 242                                                      <NA>
## 243                                                      <NA>
## 244                                                        No
## 245                                                        No
## 246                                                        No
## 247                                                      <NA>
## 248                                                      <NA>
## 249                                                        No
## 250                                                      <NA>
## 251                                                      <NA>
## 252                                                      <NA>
## 253                                                      <NA>
## 254                                                      <NA>
## 255                                                      <NA>
## 256                                                      <NA>
## 257                                                      <NA>
## 258                                                      <NA>
## 259                                                      <NA>
## 260                                                      <NA>
## 261                                                      <NA>
## 262                                                      <NA>
## 263                                                      <NA>
## 264                                                      <NA>
## 265                                                      <NA>
## 266                                                      <NA>
## 267                                                      <NA>
## 268                                                      <NA>
## 269                                                      <NA>
## 270                                                      <NA>
## 271                                                      <NA>
## 272                                                      <NA>
## 273                                                      <NA>
## 274                                                      <NA>
## 275                                                      <NA>
## 276                                                      <NA>
## 277                                                      <NA>
## 278                                                      <NA>
## 279                                                      <NA>
## 280                                                      <NA>
## 281                                                      <NA>
## 282                                                      <NA>
## 283                                                      <NA>
## 284                                                      <NA>
## 285                                                      <NA>
## 286                                                      <NA>
## 287                                                      <NA>
## 288                                                      <NA>
## 289                                                      <NA>
## 290                                                      <NA>
## 291                                                      <NA>
## 292                                                      <NA>
## 293                                                      <NA>
## 294                                                      <NA>
## 295                                                      <NA>
## 296                                                      <NA>
## 297                                                      <NA>
## 298                                                      <NA>
## 299                                                      <NA>
## 300                                                      <NA>
## 302                                                      <NA>
## 303                                                        No
## 304                                                        No
## 305                                                        No
## 306                                                      <NA>
## 307                                                      <NA>
## 308                                                      <NA>
## 309                                                      <NA>
## 310                                                      <NA>
## 311                                                        No
## 312                                                        No
## 313                                                        No
## 314                                                       Yes
## 315                                                      <NA>
## 316                                                        No
## 317                                                        No
## 318                                                      <NA>
## 319                                                      <NA>
## 320                                                        No
## 321                                                        No
## 322                                                      <NA>
## 323                                                      <NA>
## 324                                                      <NA>
## 325                                                      <NA>
## 326                                                      <NA>
## 327                                                        No
## 328                                                      <NA>
## 329                                                      <NA>
## 330                                                      <NA>
## 331                                                        No
## 332                                                      <NA>
## 333                                                      <NA>
## 334                                                      <NA>
## 335                                                      <NA>
## 336                                                      <NA>
## 337                                                      <NA>
## 338                                                        No
## 339                                                        No
## 340                                                        No
## 341                                                      <NA>
## 342                                                        No
## 343                                                       Yes
## 344                                                      <NA>
## 345                                                      <NA>
## 346                                                      <NA>
## 347                                                      <NA>
## 348                                                        No
## 349                                                      <NA>
## 350                                                        No
## 351                                                      <NA>
## 352                                                      <NA>
## 353                                                      <NA>
## 354                                                      <NA>
## 355                                                      <NA>
## 356                                                        No
## 357                                                      <NA>
## 358                                                        No
## 359                                                      <NA>
## 360                                                        No
## 361                                                      <NA>
## 362                                                        No
## 363                                                      <NA>
## 364                                                      <NA>
## 365                                                      <NA>
## 366                                                      <NA>
## 367                                                        No
## 368                                                      <NA>
## 369                                                      <NA>
## 370                                                        No
## 371                                                        No
## 372                                                        No
## 373                                                      <NA>
## 374                                                      <NA>
## 375                                                        No
## 376                                                      <NA>
## 377                                                      <NA>
## 378                                                      <NA>
## 379                                                      <NA>
## 380                                                      <NA>
## 381                                                      <NA>
## 382                                                        No
## 383                                                      <NA>
## 384                                                      <NA>
## 385                                                      <NA>
## 386                                                      <NA>
## 387                                                      <NA>
## 388                                                      <NA>
## 389                                                      <NA>
## 390                                                      <NA>
## 391                                                      <NA>
## 392                                                      <NA>
## 393                                                      <NA>
## 394                                                      <NA>
## 395                                                      <NA>
## 396                                                      <NA>
## 397                                                      <NA>
## 398                                                      <NA>
## 399                                                      <NA>
## 400                                                      <NA>
## 401                                                      <NA>
## 402                                                        No
## 403                                                        No
## 404                                                        No
## 405                                                        No
## 406                                                        No
## 407                                                        No
## 408                                                        No
## 409                                                        No
## 410                                                        No
## 411                                                        No
## 412                                                        No
## 413                                                        No
## 414                                                        No
## 415                                                        No
## 416                                                        No
## 417                                                        No
## 418                                                        No
## 419                                                        No
## 420                                                        No
## 421                                                        No
## 422                                                        No
## 423                                                        No
## 424                                                        No
## 425                                                        No
## 426                                                        No
## 427                                                        No
## 428                                                        No
## 429                                                        No
## 430                                                        No
## 431                                                        No
## 432                                                        No
## 433                                                        No
## 434                                                        No
## 435                                                        No
## 436                                                        No
## 437                                                        No
## 438                                                        No
## 439                                                        No
## 440                                                        No
## 441                                                        No
## 442                                                        No
## 443                                                        No
## 444                                                        No
## 445                                                        No
## 446                                                        No
## 447                                                        No
## 448                                                        No
## 449                                                        No
## 450                                                        No
## 451                                                        No
## 452                                                        No
## 453                                                        No
## 454                                                        No
## 455                                                      <NA>
## 456                                                      <NA>
## 457                                                      <NA>
## 458                                                      <NA>
## 459                                                      <NA>
## 460                                                      <NA>
## 461                                                      <NA>
## 462                                                        No
## 463                                                      <NA>
## 464                                                      <NA>
## 465                                                      <NA>
## 466                                                      <NA>
## 467                                                        No
## 468                                                      <NA>
## 469                                                        No
## 470                                                      <NA>
## 471                                                        No
## 472                                                        No
## 473                                                      <NA>
## 474                                                      <NA>
## 475                                                      <NA>
## 476                                                      <NA>
## 477                                                      <NA>
## 478                                                      <NA>
## 479                                                      <NA>
## 480                                                      <NA>
## 481                                                      <NA>
## 482                                                      <NA>
## 483                                                      <NA>
## 484                                                      <NA>
## 485                                                        No
## 486                                                        No
## 487                                                      <NA>
## 488                                                      <NA>
## 489                                                      <NA>
## 490                                                        No
## 491                                                        No
## 492                                                        No
## 493                                                      <NA>
## 494                                                      <NA>
## 495                                                        No
## 496                                                      <NA>
##      Associated.to.International.Organization
## 1                                        <NA>
## 2                                        <NA>
## 3                                        <NA>
## 4                                         Yes
## 5                                        <NA>
## 6                                        <NA>
## 7                                        <NA>
## 8                                        <NA>
## 9                                        <NA>
## 10                                       <NA>
## 11                                       <NA>
## 12                                       <NA>
## 13                                       <NA>
## 14                                       <NA>
## 15                                       <NA>
## 16                                       <NA>
## 17                                       <NA>
## 18                                       <NA>
## 19                                       <NA>
## 20                                       <NA>
## 21                                       <NA>
## 22                                       <NA>
## 23                                       <NA>
## 24                                       <NA>
## 25                                       <NA>
## 26                                       <NA>
## 27                                       <NA>
## 28                                       <NA>
## 29                                       <NA>
## 30                                       <NA>
## 31                                       <NA>
## 32                                       <NA>
## 33                                       <NA>
## 34                                       <NA>
## 35                                       <NA>
## 36                                       <NA>
## 37                                       <NA>
## 38                                       <NA>
## 39                                       <NA>
## 40                                       <NA>
## 41                                       <NA>
## 42                                       <NA>
## 43                                       <NA>
## 44                                       <NA>
## 45                                       <NA>
## 46                                       <NA>
## 47                                       <NA>
## 48                                       <NA>
## 49                                       <NA>
## 50                                       <NA>
## 51                                       <NA>
## 52                                         No
## 53                                         No
## 54                                         No
## 55                                         No
## 56                                         No
## 57                                         No
## 58                                         No
## 59                                         No
## 60                                         No
## 61                                         No
## 62                                         No
## 63                                         No
## 64                                         No
## 65                                         No
## 66                                         No
## 67                                         No
## 68                                         No
## 69                                       <NA>
## 70                                         No
## 71                                         No
## 72                                         No
## 73                                         No
## 74                                       <NA>
## 75                                         No
## 76                                         No
## 77                                         No
## 78                                         No
## 79                                       <NA>
## 80                                       <NA>
## 81                                       <NA>
## 82                                       <NA>
## 83                                         No
## 84                                         No
## 85                                         No
## 86                                       <NA>
## 87                                         No
## 88                                         No
## 89                                         No
## 90                                         No
## 91                                         No
## 92                                         No
## 93                                         No
## 94                                         No
## 95                                       <NA>
## 96                                         No
## 97                                       <NA>
## 98                                       <NA>
## 99                                         No
## 100                                        No
## 101                                        No
## 102                                        No
## 103                                        No
## 104                                        No
## 105                                        No
## 106                                        No
## 107                                        No
## 108                                        No
## 109                                        No
## 110                                        No
## 111                                        No
## 112                                        No
## 113                                        No
## 114                                        No
## 115                                        No
## 116                                        No
## 117                                        No
## 118                                        No
## 119                                        No
## 120                                        No
## 121                                        No
## 122                                        No
## 123                                        No
## 124                                        No
## 125                                        No
## 126                                        No
## 127                                        No
## 128                                        No
## 129                                        No
## 130                                        No
## 131                                        No
## 132                                        No
## 133                                        No
## 134                                        No
## 135                                        No
## 136                                        No
## 137                                       Yes
## 138                                        No
## 139                                        No
## 140                                        No
## 141                                        No
## 142                                        No
## 143                                        No
## 144                                        No
## 145                                        No
## 146                                        No
## 147                                        No
## 148                                        No
## 149                                        No
## 150                                        No
## 151                                        No
## 152                                        No
## 153                                        No
## 154                                        No
## 155                                        No
## 156                                        No
## 157                                        No
## 158                                        No
## 159                                        No
## 160                                        No
## 161                                        No
## 162                                        No
## 163                                        No
## 164                                        No
## 165                                        No
## 166                                        No
## 167                                        No
## 168                                        No
## 169                                        No
## 170                                        No
## 171                                        No
## 172                                        No
## 173                                        No
## 174                                        No
## 175                                        No
## 176                                        No
## 177                                        No
## 178                                        No
## 179                                        No
## 180                                        No
## 181                                        No
## 182                                        No
## 183                                        No
## 184                                        No
## 185                                        No
## 186                                        No
## 187                                        No
## 188                                        No
## 189                                        No
## 190                                        No
## 191                                        No
## 192                                        No
## 193                                        No
## 194                                        No
## 195                                        No
## 196                                        No
## 197                                        No
## 198                                        No
## 199                                        No
## 200                                        No
## 201                                        No
## 202                                        No
## 203                                      <NA>
## 204                                      <NA>
## 205                                      <NA>
## 206                                        No
## 207                                      <NA>
## 208                                      <NA>
## 209                                      <NA>
## 210                                      <NA>
## 211                                      <NA>
## 212                                        No
## 213                                      <NA>
## 214                                        No
## 215                                      <NA>
## 216                                        No
## 217                                        No
## 218                                      <NA>
## 219                                        No
## 220                                        No
## 221                                      <NA>
## 222                                        No
## 223                                        No
## 224                                        No
## 225                                      <NA>
## 226                                        No
## 227                                      <NA>
## 228                                      <NA>
## 229                                        No
## 230                                      <NA>
## 231                                      <NA>
## 232                                        No
## 233                                      <NA>
## 234                                      <NA>
## 235                                        No
## 236                                        No
## 237                                      <NA>
## 238                                        No
## 239                                      <NA>
## 240                                      <NA>
## 241                                        No
## 242                                      <NA>
## 243                                      <NA>
## 244                                        No
## 245                                        No
## 246                                        No
## 247                                      <NA>
## 248                                      <NA>
## 249                                        No
## 250                                      <NA>
## 251                                      <NA>
## 252                                      <NA>
## 253                                      <NA>
## 254                                      <NA>
## 255                                      <NA>
## 256                                      <NA>
## 257                                      <NA>
## 258                                      <NA>
## 259                                      <NA>
## 260                                      <NA>
## 261                                      <NA>
## 262                                      <NA>
## 263                                      <NA>
## 264                                      <NA>
## 265                                      <NA>
## 266                                      <NA>
## 267                                      <NA>
## 268                                      <NA>
## 269                                      <NA>
## 270                                      <NA>
## 271                                      <NA>
## 272                                        No
## 273                                      <NA>
## 274                                      <NA>
## 275                                      <NA>
## 276                                      <NA>
## 277                                      <NA>
## 278                                      <NA>
## 279                                      <NA>
## 280                                      <NA>
## 281                                      <NA>
## 282                                      <NA>
## 283                                      <NA>
## 284                                      <NA>
## 285                                      <NA>
## 286                                      <NA>
## 287                                      <NA>
## 288                                      <NA>
## 289                                      <NA>
## 290                                      <NA>
## 291                                      <NA>
## 292                                      <NA>
## 293                                      <NA>
## 294                                      <NA>
## 295                                      <NA>
## 296                                      <NA>
## 297                                      <NA>
## 298                                      <NA>
## 299                                      <NA>
## 300                                      <NA>
## 302                                      <NA>
## 303                                        No
## 304                                        No
## 305                                        No
## 306                                      <NA>
## 307                                      <NA>
## 308                                      <NA>
## 309                                      <NA>
## 310                                      <NA>
## 311                                        No
## 312                                        No
## 313                                        No
## 314                                        No
## 315                                      <NA>
## 316                                        No
## 317                                        No
## 318                                      <NA>
## 319                                      <NA>
## 320                                        No
## 321                                        No
## 322                                      <NA>
## 323                                      <NA>
## 324                                      <NA>
## 325                                      <NA>
## 326                                      <NA>
## 327                                        No
## 328                                      <NA>
## 329                                      <NA>
## 330                                      <NA>
## 331                                        No
## 332                                      <NA>
## 333                                      <NA>
## 334                                      <NA>
## 335                                      <NA>
## 336                                      <NA>
## 337                                      <NA>
## 338                                        No
## 339                                        No
## 340                                        No
## 341                                      <NA>
## 342                                        No
## 343                                        No
## 344                                      <NA>
## 345                                      <NA>
## 346                                      <NA>
## 347                                      <NA>
## 348                                        No
## 349                                      <NA>
## 350                                        No
## 351                                      <NA>
## 352                                      <NA>
## 353                                      <NA>
## 354                                      <NA>
## 355                                      <NA>
## 356                                        No
## 357                                      <NA>
## 358                                        No
## 359                                      <NA>
## 360                                        No
## 361                                      <NA>
## 362                                        No
## 363                                      <NA>
## 364                                      <NA>
## 365                                      <NA>
## 366                                      <NA>
## 367                                        No
## 368                                      <NA>
## 369                                      <NA>
## 370                                        No
## 371                                        No
## 372                                        No
## 373                                      <NA>
## 374                                      <NA>
## 375                                        No
## 376                                      <NA>
## 377                                      <NA>
## 378                                      <NA>
## 379                                      <NA>
## 380                                      <NA>
## 381                                      <NA>
## 382                                        No
## 383                                      <NA>
## 384                                      <NA>
## 385                                      <NA>
## 386                                      <NA>
## 387                                      <NA>
## 388                                      <NA>
## 389                                      <NA>
## 390                                      <NA>
## 391                                      <NA>
## 392                                      <NA>
## 393                                      <NA>
## 394                                      <NA>
## 395                                      <NA>
## 396                                      <NA>
## 397                                      <NA>
## 398                                      <NA>
## 399                                      <NA>
## 400                                      <NA>
## 401                                      <NA>
## 402                                        No
## 403                                        No
## 404                                        No
## 405                                        No
## 406                                        No
## 407                                        No
## 408                                        No
## 409                                        No
## 410                                        No
## 411                                        No
## 412                                        No
## 413                                        No
## 414                                        No
## 415                                        No
## 416                                        No
## 417                                        No
## 418                                        No
## 419                                        No
## 420                                        No
## 421                                        No
## 422                                        No
## 423                                        No
## 424                                        No
## 425                                        No
## 426                                        No
## 427                                        No
## 428                                        No
## 429                                        No
## 430                                        No
## 431                                        No
## 432                                        No
## 433                                        No
## 434                                        No
## 435                                        No
## 436                                        No
## 437                                        No
## 438                                        No
## 439                                        No
## 440                                        No
## 441                                        No
## 442                                        No
## 443                                        No
## 444                                        No
## 445                                        No
## 446                                        No
## 447                                        No
## 448                                        No
## 449                                        No
## 450                                        No
## 451                                        No
## 452                                        No
## 453                                        No
## 454                                        No
## 455                                      <NA>
## 456                                      <NA>
## 457                                      <NA>
## 458                                      <NA>
## 459                                      <NA>
## 460                                      <NA>
## 461                                      <NA>
## 462                                        No
## 463                                      <NA>
## 464                                      <NA>
## 465                                      <NA>
## 466                                      <NA>
## 467                                        No
## 468                                      <NA>
## 469                                        No
## 470                                      <NA>
## 471                                        No
## 472                                        No
## 473                                      <NA>
## 474                                      <NA>
## 475                                      <NA>
## 476                                      <NA>
## 477                                      <NA>
## 478                                      <NA>
## 479                                      <NA>
## 480                                      <NA>
## 481                                      <NA>
## 482                                      <NA>
## 483                                      <NA>
## 484                                      <NA>
## 485                                        No
## 486                                        No
## 487                                      <NA>
## 488                                      <NA>
## 489                                      <NA>
## 490                                        No
## 491                                        No
## 492                                        No
## 493                                      <NA>
## 494                                      <NA>
## 495                                        No
## 496                                      <NA>
##      Associated.to.Political.Parties Associated.to.other.Organization
## 1                               <NA>                             <NA>
## 2                               <NA>                             <NA>
## 3                               <NA>                             <NA>
## 4                               <NA>                             <NA>
## 5                               <NA>                             <NA>
## 6                               <NA>                             <NA>
## 7                               <NA>                             <NA>
## 8                               <NA>                             <NA>
## 9                               <NA>                             <NA>
## 10                              <NA>                             <NA>
## 11                              <NA>                             <NA>
## 12                              <NA>                             <NA>
## 13                               Yes                             <NA>
## 14                              <NA>                             <NA>
## 15                              <NA>                             <NA>
## 16                              <NA>                             <NA>
## 17                               Yes                             <NA>
## 18                              <NA>                             <NA>
## 19                              <NA>                             <NA>
## 20                              <NA>                             <NA>
## 21                              <NA>                             <NA>
## 22                              <NA>                              Yes
## 23                              <NA>                             <NA>
## 24                              <NA>                             <NA>
## 25                              <NA>                             <NA>
## 26                              <NA>                             <NA>
## 27                               Yes                             <NA>
## 28                              <NA>                             <NA>
## 29                              <NA>                             <NA>
## 30                               Yes                             <NA>
## 31                              <NA>                             <NA>
## 32                              <NA>                             <NA>
## 33                              <NA>                             <NA>
## 34                              <NA>                             <NA>
## 35                              <NA>                             <NA>
## 36                              <NA>                             <NA>
## 37                              <NA>                             <NA>
## 38                              <NA>                             <NA>
## 39                               Yes                             <NA>
## 40                              <NA>                             <NA>
## 41                               Yes                             <NA>
## 42                               Yes                             <NA>
## 43                              <NA>                             <NA>
## 44                              <NA>                             <NA>
## 45                              <NA>                             <NA>
## 46                              <NA>                             <NA>
## 47                              <NA>                             <NA>
## 48                              <NA>                             <NA>
## 49                              <NA>                             <NA>
## 50                              <NA>                             <NA>
## 51                              <NA>                             <NA>
## 52                                No                               No
## 53                                No                               No
## 54                                No                               No
## 55                                No                               No
## 56                                No                               No
## 57                                No                               No
## 58                                No                               No
## 59                                No                               No
## 60                                No                               No
## 61                                No                               No
## 62                                No                               No
## 63                                No                               No
## 64                                No                               No
## 65                                No                               No
## 66                                No                               No
## 67                                No                               No
## 68                                No                               No
## 69                              <NA>                             <NA>
## 70                                No                               No
## 71                                No                               No
## 72                                No                               No
## 73                                No                               No
## 74                              <NA>                             <NA>
## 75                                No                               No
## 76                                No                               No
## 77                                No                               No
## 78                                No                               No
## 79                              <NA>                             <NA>
## 80                              <NA>                             <NA>
## 81                              <NA>                             <NA>
## 82                              <NA>                             <NA>
## 83                               Yes                               No
## 84                                No                               No
## 85                                No                               No
## 86                              <NA>                             <NA>
## 87                                No                               No
## 88                                No                               No
## 89                                No                               No
## 90                                No                               No
## 91                                No                               No
## 92                                No                               No
## 93                                No                               No
## 94                                No                               No
## 95                              <NA>                             <NA>
## 96                                No                               No
## 97                              <NA>                             <NA>
## 98                              <NA>                             <NA>
## 99                                No                               No
## 100                               No                               No
## 101                               No                               No
## 102                               No                               No
## 103                               No                               No
## 104                               No                               No
## 105                               No                               No
## 106                               No                               No
## 107                               No                               No
## 108                               No                               No
## 109                               No                               No
## 110                               No                               No
## 111                               No                               No
## 112                               No                               No
## 113                               No                               No
## 114                               No                               No
## 115                               No                               No
## 116                               No                               No
## 117                               No                               No
## 118                               No                               No
## 119                               No                               No
## 120                               No                               No
## 121                               No                               No
## 122                               No                               No
## 123                               No                               No
## 124                               No                               No
## 125                               No                               No
## 126                              Yes                               No
## 127                               No                               No
## 128                               No                               No
## 129                               No                               No
## 130                               No                               No
## 131                               No                               No
## 132                               No                               No
## 133                               No                               No
## 134                               No                               No
## 135                               No                               No
## 136                               No                               No
## 137                               No                               No
## 138                               No                               No
## 139                               No                               No
## 140                               No                               No
## 141                               No                               No
## 142                               No                               No
## 143                               No                               No
## 144                               No                               No
## 145                               No                               No
## 146                               No                               No
## 147                              Yes                               No
## 148                               No                               No
## 149                               No                               No
## 150                               No                               No
## 151                               No                               No
## 152                               No                               No
## 153                               No                               No
## 154                               No                               No
## 155                               No                               No
## 156                               No                               No
## 157                               No                               No
## 158                               No                               No
## 159                               No                               No
## 160                               No                               No
## 161                               No                               No
## 162                               No                               No
## 163                               No                               No
## 164                               No                               No
## 165                               No                               No
## 166                               No                               No
## 167                               No                               No
## 168                               No                               No
## 169                               No                               No
## 170                               No                               No
## 171                               No                               No
## 172                               No                               No
## 173                               No                               No
## 174                               No                               No
## 175                               No                               No
## 176                               No                               No
## 177                               No                               No
## 178                               No                               No
## 179                               No                               No
## 180                               No                               No
## 181                               No                               No
## 182                               No                               No
## 183                               No                               No
## 184                               No                               No
## 185                               No                               No
## 186                               No                               No
## 187                               No                               No
## 188                               No                               No
## 189                               No                               No
## 190                               No                               No
## 191                               No                               No
## 192                               No                               No
## 193                               No                               No
## 194                               No                               No
## 195                               No                               No
## 196                               No                               No
## 197                               No                               No
## 198                               No                               No
## 199                               No                               No
## 200                               No                               No
## 201                               No                               No
## 202                               No                               No
## 203                             <NA>                             <NA>
## 204                             <NA>                             <NA>
## 205                             <NA>                             <NA>
## 206                               No                               No
## 207                             <NA>                             <NA>
## 208                             <NA>                             <NA>
## 209                             <NA>                             <NA>
## 210                             <NA>                             <NA>
## 211                             <NA>                             <NA>
## 212                               No                               No
## 213                             <NA>                             <NA>
## 214                               No                               No
## 215                             <NA>                             <NA>
## 216                              Yes                               No
## 217                               No                               No
## 218                             <NA>                             <NA>
## 219                               No                               No
## 220                               No                               No
## 221                             <NA>                             <NA>
## 222                               No                               No
## 223                               No                               No
## 224                               No                               No
## 225                             <NA>                             <NA>
## 226                               No                               No
## 227                             <NA>                             <NA>
## 228                             <NA>                             <NA>
## 229                               No                              Yes
## 230                             <NA>                             <NA>
## 231                             <NA>                             <NA>
## 232                               No                               No
## 233                             <NA>                             <NA>
## 234                             <NA>                             <NA>
## 235                               No                               No
## 236                               No                               No
## 237                             <NA>                             <NA>
## 238                               No                               No
## 239                             <NA>                             <NA>
## 240                             <NA>                             <NA>
## 241                               No                               No
## 242                             <NA>                             <NA>
## 243                             <NA>                             <NA>
## 244                               No                               No
## 245                               No                               No
## 246                               No                               No
## 247                             <NA>                             <NA>
## 248                             <NA>                             <NA>
## 249                               No                               No
## 250                             <NA>                             <NA>
## 251                               No                             <NA>
## 252                             <NA>                             <NA>
## 253                             <NA>                             <NA>
## 254                             <NA>                             <NA>
## 255                             <NA>                             <NA>
## 256                             <NA>                             <NA>
## 257                             <NA>                             <NA>
## 258                             <NA>                             <NA>
## 259                             <NA>                             <NA>
## 260                             <NA>                             <NA>
## 261                             <NA>                             <NA>
## 262                             <NA>                             <NA>
## 263                             <NA>                             <NA>
## 264                             <NA>                             <NA>
## 265                             <NA>                             <NA>
## 266                             <NA>                             <NA>
## 267                             <NA>                             <NA>
## 268                             <NA>                             <NA>
## 269                             <NA>                             <NA>
## 270                             <NA>                             <NA>
## 271                             <NA>                             <NA>
## 272                               No                               No
## 273                             <NA>                             <NA>
## 274                             <NA>                             <NA>
## 275                             <NA>                             <NA>
## 276                             <NA>                              Yes
## 277                             <NA>                             <NA>
## 278                             <NA>                             <NA>
## 279                             <NA>                             <NA>
## 280                             <NA>                             <NA>
## 281                             <NA>                             <NA>
## 282                             <NA>                              Yes
## 283                             <NA>                             <NA>
## 284                             <NA>                             <NA>
## 285                             <NA>                             <NA>
## 286                             <NA>                             <NA>
## 287                             <NA>                             <NA>
## 288                             <NA>                             <NA>
## 289                             <NA>                             <NA>
## 290                             <NA>                             <NA>
## 291                             <NA>                             <NA>
## 292                             <NA>                             <NA>
## 293                              Yes                             <NA>
## 294                             <NA>                             <NA>
## 295                             <NA>                             <NA>
## 296                             <NA>                             <NA>
## 297                             <NA>                             <NA>
## 298                             <NA>                             <NA>
## 299                             <NA>                             <NA>
## 300                             <NA>                             <NA>
## 302                             <NA>                             <NA>
## 303                               No                               No
## 304                               No                               No
## 305                              Yes                               No
## 306                             <NA>                             <NA>
## 307                             <NA>                             <NA>
## 308                             <NA>                             <NA>
## 309                             <NA>                             <NA>
## 310                             <NA>                             <NA>
## 311                               No                               No
## 312                               No                               No
## 313                              Yes                               No
## 314                               No                               No
## 315                             <NA>                             <NA>
## 316                               No                               No
## 317                               No                               No
## 318                             <NA>                             <NA>
## 319                             <NA>                             <NA>
## 320                               No                               No
## 321                               No                               No
## 322                             <NA>                             <NA>
## 323                             <NA>                             <NA>
## 324                             <NA>                             <NA>
## 325                             <NA>                             <NA>
## 326                             <NA>                             <NA>
## 327                               No                               No
## 328                             <NA>                             <NA>
## 329                             <NA>                             <NA>
## 330                             <NA>                             <NA>
## 331                               No                               No
## 332                             <NA>                             <NA>
## 333                             <NA>                             <NA>
## 334                             <NA>                             <NA>
## 335                             <NA>                             <NA>
## 336                             <NA>                             <NA>
## 337                             <NA>                             <NA>
## 338                               No                               No
## 339                               No                               No
## 340                              Yes                               No
## 341                             <NA>                             <NA>
## 342                               No                               No
## 343                              Yes                               No
## 344                             <NA>                             <NA>
## 345                             <NA>                             <NA>
## 346                             <NA>                             <NA>
## 347                             <NA>                             <NA>
## 348                               No                               No
## 349                             <NA>                             <NA>
## 350                               No                               No
## 351                             <NA>                             <NA>
## 352                             <NA>                             <NA>
## 353                             <NA>                             <NA>
## 354                             <NA>                             <NA>
## 355                             <NA>                             <NA>
## 356                               No                              Yes
## 357                             <NA>                             <NA>
## 358                               No                              Yes
## 359                             <NA>                             <NA>
## 360                               No                               No
## 361                             <NA>                             <NA>
## 362                               No                               No
## 363                             <NA>                             <NA>
## 364                             <NA>                             <NA>
## 365                             <NA>                             <NA>
## 366                             <NA>                             <NA>
## 367                               No                               No
## 368                             <NA>                             <NA>
## 369                             <NA>                             <NA>
## 370                               No                               No
## 371                               No                               No
## 372                               No                               No
## 373                             <NA>                             <NA>
## 374                             <NA>                             <NA>
## 375                               No                               No
## 376                             <NA>                             <NA>
## 377                             <NA>                             <NA>
## 378                             <NA>                             <NA>
## 379                             <NA>                             <NA>
## 380                             <NA>                             <NA>
## 381                             <NA>                             <NA>
## 382                               No                               No
## 383                             <NA>                             <NA>
## 384                             <NA>                             <NA>
## 385                             <NA>                             <NA>
## 386                             <NA>                             <NA>
## 387                             <NA>                             <NA>
## 388                             <NA>                             <NA>
## 389                             <NA>                             <NA>
## 390                             <NA>                             <NA>
## 391                             <NA>                             <NA>
## 392                             <NA>                             <NA>
## 393                             <NA>                             <NA>
## 394                             <NA>                             <NA>
## 395                             <NA>                             <NA>
## 396                             <NA>                             <NA>
## 397                             <NA>                             <NA>
## 398                             <NA>                             <NA>
## 399                             <NA>                             <NA>
## 400                             <NA>                             <NA>
## 401                             <NA>                             <NA>
## 402                               No                               No
## 403                               No                               No
## 404                               No                               No
## 405                               No                              Yes
## 406                               No                               No
## 407                               No                               No
## 408                               No                               No
## 409                               No                               No
## 410                               No                               No
## 411                               No                               No
## 412                               No                               No
## 413                               No                               No
## 414                               No                               No
## 415                               No                               No
## 416                               No                               No
## 417                               No                               No
## 418                               No                               No
## 419                               No                               No
## 420                               No                               No
## 421                               No                               No
## 422                               No                               No
## 423                               No                               No
## 424                               No                               No
## 425                               No                               No
## 426                               No                               No
## 427                               No                               No
## 428                               No                               No
## 429                               No                               No
## 430                               No                               No
## 431                               No                               No
## 432                               No                               No
## 433                               No                               No
## 434                               No                               No
## 435                               No                               No
## 436                               No                               No
## 437                               No                               No
## 438                               No                               No
## 439                               No                               No
## 440                               No                               No
## 441                               No                               No
## 442                               No                               No
## 443                               No                               No
## 444                               No                               No
## 445                               No                               No
## 446                               No                               No
## 447                               No                               No
## 448                              Yes                               No
## 449                               No                               No
## 450                               No                               No
## 451                               No                               No
## 452                               No                               No
## 453                               No                               No
## 454                               No                               No
## 455                             <NA>                             <NA>
## 456                             <NA>                             <NA>
## 457                             <NA>                             <NA>
## 458                             <NA>                             <NA>
## 459                             <NA>                             <NA>
## 460                             <NA>                             <NA>
## 461                             <NA>                             <NA>
## 462                               No                               No
## 463                             <NA>                             <NA>
## 464                             <NA>                             <NA>
## 465                             <NA>                             <NA>
## 466                             <NA>                             <NA>
## 467                               No                               No
## 468                             <NA>                             <NA>
## 469                               No                               No
## 470                             <NA>                             <NA>
## 471                               No                              Yes
## 472                               No                               No
## 473                             <NA>                             <NA>
## 474                             <NA>                             <NA>
## 475                             <NA>                             <NA>
## 476                             <NA>                             <NA>
## 477                             <NA>                             <NA>
## 478                             <NA>                             <NA>
## 479                             <NA>                             <NA>
## 480                             <NA>                             <NA>
## 481                             <NA>                             <NA>
## 482                             <NA>                             <NA>
## 483                             <NA>                             <NA>
## 484                             <NA>                             <NA>
## 485                              Yes                               No
## 486                              Yes                               No
## 487                             <NA>                             <NA>
## 488                             <NA>                             <NA>
## 489                             <NA>                             <NA>
## 490                               No                               No
## 491                               No                              Yes
## 492                               No                               No
## 493                             <NA>                             <NA>
## 494                             <NA>                             <NA>
## 495                               No                               No
## 496                             <NA>                             <NA>
##      Not.associated.to.any.Organization        Religiousness
## 1                                  <NA>            Religious
## 2                                  <NA>              Neutral
## 3                                  <NA>       Very Religious
## 4                                  <NA>       Very Religious
## 5                                  <NA>       Very Religious
## 6                                  <NA>       Very Religious
## 7                                  <NA>       Very Religious
## 8                                  <NA>       Very Religious
## 9                                  <NA>       Very Religious
## 10                                 <NA>       Very Religious
## 11                                 <NA>       Very Religious
## 12                                 <NA>       Very Religious
## 13                                 <NA>            Religious
## 14                                 <NA>       Very Religious
## 15                                 <NA>              Neutral
## 16                                 <NA>       Very Religious
## 17                                 <NA>       Very Religious
## 18                                 <NA>            Religious
## 19                                 <NA>              Neutral
## 20                                 <NA>       Very Religious
## 21                                 <NA>       Very Religious
## 22                                 <NA>           Dontt know
## 23                                 <NA>       Very Religious
## 24                                 <NA>       Very Religious
## 25                                 <NA>       Very Religious
## 26                                 <NA>       Very Religious
## 27                                 <NA>       Very Religious
## 28                                 <NA>              Neutral
## 29                                 <NA>       Very Religious
## 30                                 <NA>       Very Religious
## 31                                 <NA>              Neutral
## 32                                 <NA>       Very Religious
## 33                                 <NA>              Neutral
## 34                                 <NA>       Very Religious
## 35                                 <NA>       Very Religious
## 36                                 <NA>       Very Religious
## 37                                 <NA>            Religious
## 38                                 <NA>       Very Religious
## 39                                 <NA>       Very Religious
## 40                                 <NA>       Very Religious
## 41                                 <NA>       Very Religious
## 42                                 <NA>       Very Religious
## 43                                 <NA>              Neutral
## 44                                 <NA>            Religious
## 45                                 <NA>            Religious
## 46                                 <NA>        Not religious
## 47                                 <NA>              Neutral
## 48                                 <NA>           Dontt know
## 49                                 <NA>            Religious
## 50                                 <NA>       Very Religious
## 51                                 <NA>       Very Religious
## 52                                   No       Very Religious
## 53                                   No       Very Religious
## 54                                   No       Very Religious
## 55                                   No       Very Religious
## 56                                   No       Very Religious
## 57                                   No       Very Religious
## 58                                   No       Very Religious
## 59                                   No       Very Religious
## 60                                   No       Very Religious
## 61                                   No       Very Religious
## 62                                   No       Very Religious
## 63                                   No                 <NA>
## 64                                   No       Very Religious
## 65                                   No       Very Religious
## 66                                   No       Very Religious
## 67                                   No       Very Religious
## 68                                   No       Very Religious
## 69                                 <NA>       Very Religious
## 70                                   No       Very Religious
## 71                                   No       Very Religious
## 72                                   No       Very Religious
## 73                                   No       Very Religious
## 74                                 <NA>       Very Religious
## 75                                   No       Very Religious
## 76                                   No       Very Religious
## 77                                   No       Very Religious
## 78                                   No       Very Religious
## 79                                 <NA>       Very Religious
## 80                                 <NA>       Very Religious
## 81                                 <NA>       Very Religious
## 82                                 <NA>       Very Religious
## 83                                   No       Very Religious
## 84                                   No       Very Religious
## 85                                   No       Very Religious
## 86                                 <NA>       Very Religious
## 87                                   No       Very Religious
## 88                                   No       Very Religious
## 89                                   No       Very Religious
## 90                                   No       Very Religious
## 91                                   No       Very Religious
## 92                                   No       Very Religious
## 93                                   No       Very Religious
## 94                                   No       Very Religious
## 95                                 <NA>       Very Religious
## 96                                   No                 <NA>
## 97                                 <NA>       Very Religious
## 98                                 <NA>       Very Religious
## 99                                   No       Very Religious
## 100                                  No       Very Religious
## 101                                  No              Neutral
## 102                                  No              Neutral
## 103                                  No            Religious
## 104                                  No        Not religious
## 105                                  No              Neutral
## 106                                  No        Not religious
## 107                                  No       Very Religious
## 108                                  No              Neutral
## 109                                  No            Religious
## 110                                  No       Very Religious
## 111                                  No       Very Religious
## 112                                  No       Very Religious
## 113                                  No       Very Religious
## 114                                  No            Religious
## 115                                  No        Not religious
## 116                                  No           Dontt know
## 117                                  No       Very Religious
## 118                                  No           Dontt know
## 119                                  No           Dontt know
## 120                                  No              Neutral
## 121                                  No              Neutral
## 122                                  No       Very Religious
## 123                                  No            Religious
## 124                                  No       Very Religious
## 125                                  No       Very Religious
## 126                                  No       Very Religious
## 127                                  No            Religious
## 128                                  No              Neutral
## 129                                  No       Very Religious
## 130                                  No       Very Religious
## 131                                  No        Not religious
## 132                                  No       Very Religious
## 133                                  No       Very Religious
## 134                                  No            Religious
## 135                                  No       Very Religious
## 136                                  No            Religious
## 137                                  No       Very Religious
## 138                                  No       Very Religious
## 139                                  No       Very Religious
## 140                                  No       Very Religious
## 141                                  No       Very Religious
## 142                                  No       Very Religious
## 143                                  No       Very Religious
## 144                                  No       Very Religious
## 145                                  No       Very Religious
## 146                                  No       Very Religious
## 147                                  No       Very Religious
## 148                                  No       Very Religious
## 149                                  No       Very Religious
## 150                                  No       Very Religious
## 151                                  No       Very Religious
## 152                                  No       Very Religious
## 153                                  No       Very Religious
## 154                                  No       Very Religious
## 155                                  No       Very Religious
## 156                                  No       Very Religious
## 157                                  No       Very Religious
## 158                                  No                 <NA>
## 159                                  No       Very Religious
## 160                                  No       Very Religious
## 161                                  No       Very Religious
## 162                                  No       Very Religious
## 163                                  No       Very Religious
## 164                                  No       Very Religious
## 165                                  No       Very Religious
## 166                                  No       Very Religious
## 167                                  No       Very Religious
## 168                                  No       Very Religious
## 169                                  No       Very Religious
## 170                                  No       Very Religious
## 171                                  No       Very Religious
## 172                                  No       Very Religious
## 173                                  No       Very Religious
## 174                                  No       Very Religious
## 175                                  No       Very Religious
## 176                                  No       Very Religious
## 177                                  No       Very Religious
## 178                                  No       Very Religious
## 179                                  No            Religious
## 180                                  No       Very Religious
## 181                                  No            Religious
## 182                                  No       Very Religious
## 183                                  No       Very Religious
## 184                                  No       Very Religious
## 185                                  No       Very Religious
## 186                                  No       Very Religious
## 187                                  No            Religious
## 188                                  No       Very Religious
## 189                                  No            Religious
## 190                                  No       Very Religious
## 191                                  No       Very Religious
## 192                                  No       Very Religious
## 193                                  No       Very Religious
## 194                                  No       Very Religious
## 195                                  No       Very Religious
## 196                                  No       Very Religious
## 197                                  No       Very Religious
## 198                                  No       Very Religious
## 199                                  No            Religious
## 200                                  No       Very Religious
## 201                                  No            Religious
## 202                                  No       Very Religious
## 203                                <NA>       Very Religious
## 204                                <NA>            Religious
## 205                                <NA>       Very Religious
## 206                                  No       Very Religious
## 207                                <NA>            Religious
## 208                                <NA>              Neutral
## 209                                <NA>            Religious
## 210                                <NA>       Very Religious
## 211                                <NA>            Religious
## 212                                  No            Religious
## 213                                <NA>            Religious
## 214                                  No            Religious
## 215                                <NA>            Religious
## 216                                  No            Religious
## 217                                  No            Religious
## 218                                <NA>            Religious
## 219                                  No              Neutral
## 220                                  No       Very Religious
## 221                                <NA>       Very Religious
## 222                                  No       Very Religious
## 223                                  No       Very Religious
## 224                                  No            Religious
## 225                                <NA>            Religious
## 226                                  No       Very Religious
## 227                                <NA>       Very Religious
## 228                                <NA>              Neutral
## 229                                  No       Very Religious
## 230                                <NA>            Religious
## 231                                <NA>            Religious
## 232                                  No            Religious
## 233                                <NA>       Very Religious
## 234                                <NA>       Very Religious
## 235                                  No       Very Religious
## 236                                  No            Religious
## 237                                <NA>       Very Religious
## 238                                  No       Very Religious
## 239                                <NA>            Religious
## 240                                <NA>            Religious
## 241                                  No            Religious
## 242                                <NA>            Religious
## 243                                <NA>       Very Religious
## 244                                  No       Very Religious
## 245                                  No       Very Religious
## 246                                  No            Religious
## 247                                <NA>            Religious
## 248                                <NA>            Religious
## 249                                  No            Religious
## 250                                <NA>       Very Religious
## 251                                <NA>            Religious
## 252                                <NA>            Religious
## 253                                <NA>       Very Religious
## 254                                <NA>       Very Religious
## 255                                <NA> Not religious at all
## 256                                <NA>            Religious
## 257                                <NA>            Religious
## 258                                <NA>            Religious
## 259                                <NA>       Very Religious
## 260                                <NA>              Neutral
## 261                                <NA>       Very Religious
## 262                                <NA>            Religious
## 263                                <NA>            Religious
## 264                                <NA>            Religious
## 265                                <NA>              Neutral
## 266                                <NA>              Neutral
## 267                                <NA>              Neutral
## 268                                <NA>            Religious
## 269                                <NA>       Very Religious
## 270                                <NA>              Neutral
## 271                                 Yes            Religious
## 272                                  No              Neutral
## 273                                <NA>            Religious
## 274                                 Yes              Neutral
## 275                                <NA>            Religious
## 276                                <NA>        Not religious
## 277                                <NA>              Neutral
## 278                                <NA>            Religious
## 279                                <NA> Not religious at all
## 280                                <NA>            Religious
## 281                                <NA>              Neutral
## 282                                <NA>              Neutral
## 283                                <NA>              Neutral
## 284                                <NA>              Neutral
## 285                                <NA>            Religious
## 286                                <NA>            Religious
## 287                                <NA>              Neutral
## 288                                <NA>              Neutral
## 289                                <NA>            Religious
## 290                                <NA>            Religious
## 291                                <NA>            Religious
## 292                                <NA>       Very Religious
## 293                                <NA>            Religious
## 294                                <NA>       Very Religious
## 295                                <NA>            Religious
## 296                                <NA>       Very Religious
## 297                                <NA>       Very Religious
## 298                                <NA>              Neutral
## 299                                <NA>       Very Religious
## 300                                <NA>              Neutral
## 302                                <NA>       Very Religious
## 303                                  No       Very Religious
## 304                                  No              Neutral
## 305                                  No       Very Religious
## 306                                <NA>       Very Religious
## 307                                <NA>       Very Religious
## 308                                <NA>       Very Religious
## 309                                <NA>       Very Religious
## 310                                <NA>       Very Religious
## 311                                  No       Very Religious
## 312                                  No              Neutral
## 313                                  No       Very Religious
## 314                                  No       Very Religious
## 315                                <NA>       Very Religious
## 316                                  No            Religious
## 317                                  No       Very Religious
## 318                                <NA>       Very Religious
## 319                                <NA>       Very Religious
## 320                                  No              Neutral
## 321                                  No       Very Religious
## 322                                <NA>       Very Religious
## 323                                <NA>       Very Religious
## 324                                <NA>       Very Religious
## 325                                <NA>       Very Religious
## 326                                <NA>       Very Religious
## 327                                  No       Very Religious
## 328                                <NA>       Very Religious
## 329                                <NA>       Very Religious
## 330                                <NA>       Very Religious
## 331                                  No       Very Religious
## 332                                <NA>       Very Religious
## 333                                <NA>            Religious
## 334                                <NA>       Very Religious
## 335                                <NA>       Very Religious
## 336                                <NA>       Very Religious
## 337                                <NA>       Very Religious
## 338                                  No       Very Religious
## 339                                  No       Very Religious
## 340                                  No       Very Religious
## 341                                <NA>       Very Religious
## 342                                  No            Religious
## 343                                  No       Very Religious
## 344                                <NA>       Very Religious
## 345                                <NA>       Very Religious
## 346                                <NA>            Religious
## 347                                <NA>       Very Religious
## 348                                  No       Very Religious
## 349                                <NA>       Very Religious
## 350                                  No              Neutral
## 351                                <NA>       Very Religious
## 352                                <NA>        Not religious
## 353                                <NA>            Religious
## 354                                <NA>              Neutral
## 355                                <NA>        Not religious
## 356                                  No            Religious
## 357                                <NA>              Neutral
## 358                                  No              Neutral
## 359                                <NA>              Neutral
## 360                                  No              Neutral
## 361                                <NA>              Neutral
## 362                                  No              Neutral
## 363                                <NA>              Neutral
## 364                                <NA>        Not religious
## 365                                <NA>        Not religious
## 366                                <NA>        Not religious
## 367                                  No              Neutral
## 368                                <NA>        Not religious
## 369                                <NA>            Religious
## 370                                  No            Religious
## 371                                  No              Neutral
## 372                                  No              Neutral
## 373                                <NA>              Neutral
## 374                                <NA>              Neutral
## 375                                  No            Religious
## 376                                <NA>        Not religious
## 377                                <NA>              Neutral
## 378                                <NA>              Neutral
## 379                                <NA>        Not religious
## 380                                <NA>        Not religious
## 381                                <NA>        Not religious
## 382                                  No              Neutral
## 383                                <NA>        Not religious
## 384                                <NA>           Dontt know
## 385                                <NA>        Not religious
## 386                                <NA>        Not religious
## 387                                <NA>        Not religious
## 388                                <NA>              Neutral
## 389                                <NA>           Dontt know
## 390                                <NA>            Religious
## 391                                <NA>        Not religious
## 392                                <NA>        Not religious
## 393                                <NA>        Not religious
## 394                                <NA>              Neutral
## 395                                <NA>              Neutral
## 396                                <NA>        Not religious
## 397                                <NA>              Neutral
## 398                                <NA>              Neutral
## 399                                <NA>        Not religious
## 400                                <NA>        Not religious
## 401                                <NA>        Not religious
## 402                                 Yes        Not religious
## 403                                 Yes              Neutral
## 404                                 Yes       Very Religious
## 405                                  No       Very Religious
## 406                                 Yes                 <NA>
## 407                                 Yes              Neutral
## 408                                 Yes              Neutral
## 409                                 Yes            Religious
## 410                                 Yes            Religious
## 411                                 Yes              Neutral
## 412                                 Yes              Neutral
## 413                                 Yes              Neutral
## 414                                 Yes       Very Religious
## 415                                 Yes            Religious
## 416                                 Yes              Neutral
## 417                                 Yes       Very Religious
## 418                                 Yes            Religious
## 419                                 Yes            Religious
## 420                                 Yes       Very Religious
## 421                                 Yes              Neutral
## 422                                 Yes            Religious
## 423                                 Yes              Neutral
## 424                                 Yes            Religious
## 425                                 Yes            Religious
## 426                                 Yes              Neutral
## 427                                  No              Neutral
## 428                                 Yes            Religious
## 429                                 Yes            Religious
## 430                                 Yes              Neutral
## 431                                 Yes              Neutral
## 432                                 Yes              Neutral
## 433                                 Yes              Neutral
## 434                                 Yes              Neutral
## 435                                 Yes              Neutral
## 436                                 Yes              Neutral
## 437                                 Yes              Neutral
## 438                                 Yes       Very Religious
## 439                                 Yes              Neutral
## 440                                 Yes              Neutral
## 441                                  No              Neutral
## 442                                 Yes              Neutral
## 443                                 Yes              Neutral
## 444                                 Yes       Very Religious
## 445                                 Yes              Neutral
## 446                                  No              Neutral
## 447                                 Yes              Neutral
## 448                                  No              Neutral
## 449                                 Yes              Neutral
## 450                                 Yes              Neutral
## 451                                 Yes              Neutral
## 452                                 Yes              Neutral
## 453                                 Yes       Very Religious
## 454                                  No           Dontt know
## 455                                <NA>       Very Religious
## 456                                <NA>           Dontt know
## 457                                <NA>       Very Religious
## 458                                <NA>           Dontt know
## 459                                <NA>       Very Religious
## 460                                <NA>            Religious
## 461                                <NA>           Dontt know
## 462                                  No       Very Religious
## 463                                <NA>       Very Religious
## 464                                <NA>       Very Religious
## 465                                <NA>       Very Religious
## 466                                <NA>       Very Religious
## 467                                  No       Very Religious
## 468                                <NA>       Very Religious
## 469                                  No Not religious at all
## 470                                <NA>              Neutral
## 471                                <NA>       Very Religious
## 472                                  No       Very Religious
## 473                                <NA>            Religious
## 474                                <NA>            Religious
## 475                                <NA>           Dontt know
## 476                                <NA>                 <NA>
## 477                                <NA>           Dontt know
## 478                                <NA>              Neutral
## 479                                <NA>       Very Religious
## 480                                <NA>       Very Religious
## 481                                <NA>            Religious
## 482                                <NA>       Very Religious
## 483                                <NA>            Religious
## 484                                <NA>           Dontt know
## 485                                  No       Very Religious
## 486                                  No       Very Religious
## 487                                <NA>           Dontt know
## 488                                <NA>           Dontt know
## 489                                <NA>              Neutral
## 490                                  No           Dontt know
## 491                                <NA>       Very Religious
## 492                                  No       Very Religious
## 493                                <NA>       Very Religious
## 494                                <NA>       Very Religious
## 495                                  No       Very Religious
## 496                                <NA>              Neutral
##      Current.overall.satisfied.with.life X5.years.ago.overall.satisfaction
## 1                          5 Neutral -ve                                 5
## 2                         3 Dissatisfied                                 3
## 3                          5 Neutral -ve                                 5
## 4                            8 Satisfied                                 5
## 5                         3 Dissatisfied                                 4
## 6                         4 Dissatisfied                                 5
## 7                         4 Dissatisfied                                 4
## 8                         4 Dissatisfied                                 4
## 9                         4 Dissatisfied                                 4
## 10                           7 Satisfied                        Don't know
## 11                        3 Dissatisfied                                 4
## 12                        4 Dissatisfied                                 4
## 13                           7 Satisfied                                 6
## 14                        3 Dissatisfied                                 2
## 15                         6 Neutral +ve                                 2
## 16                        4 Dissatisfied                                 2
## 17                        4 Dissatisfied                                 5
## 18                           7 Satisfied                                 5
## 19                         5 Neutral -ve                                 4
## 20                        2 Dissatisfied                                 2
## 21                            Don't know                        Don't know
## 22                           7 Satisfied                                 5
## 23                           9 Satisfied                                 8
## 24                        4 Dissatisfied                                 6
## 25                        3 Dissatisfied                                 6
## 26                        4 Dissatisfied                        Don't know
## 27                        3 Dissatisfied                                 6
## 28                        3 Dissatisfied                                 4
## 29                        3 Dissatisfied                                 5
## 30                        4 Dissatisfied                                 7
## 31                        2 Dissatisfied                 Very Dissatisfied
## 32                        4 Dissatisfied                        Don't know
## 33                        4 Dissatisfied                                 5
## 34                           9 Satisfied                                 2
## 35                        4 Dissatisfied                                 4
## 36                         6 Neutral +ve                                 8
## 37                        4 Dissatisfied                                 6
## 38                        4 Dissatisfied                                 4
## 39                         5 Neutral -ve                                 6
## 40                        3 Dissatisfied                                 4
## 41                         6 Neutral +ve                                 8
## 42                        3 Dissatisfied                                 7
## 43                         6 Neutral +ve                                 4
## 44                           8 Satisfied                                 4
## 45                        3 Dissatisfied                                 3
## 46                        2 Dissatisfied                 Very Dissatisfied
## 47                         5 Neutral -ve                                 5
## 48                         5 Neutral -ve                                 3
## 49                         5 Neutral -ve                                 5
## 50                        3 Dissatisfied                                 2
## 51                     Very Dissatisfied                                 7
## 52                     Very Dissatisfied                                 6
## 53                         6 Neutral +ve                                 5
## 54                         6 Neutral +ve                                 5
## 55                           7 Satisfied                                 6
## 56                         6 Neutral +ve                                 4
## 57                        Very Satisfied                                 8
## 58                        Very Satisfied                                 8
## 59                         6 Neutral +ve                                 5
## 60                        Very Satisfied                                 8
## 61                           7 Satisfied                                 6
## 62                           7 Satisfied                                 5
## 63                           7 Satisfied                                 5
## 64                           7 Satisfied                                 5
## 65                           7 Satisfied                                 6
## 66                           7 Satisfied                                 6
## 67                           7 Satisfied                                 6
## 68                           7 Satisfied                                 5
## 69                        4 Dissatisfied                                 3
## 70                        4 Dissatisfied                                 4
## 71                           7 Satisfied                                 6
## 72                           7 Satisfied                                 5
## 73                         6 Neutral +ve                                 5
## 74                           7 Satisfied                                 5
## 75                           7 Satisfied                                 5
## 76                           7 Satisfied                                 5
## 77                           7 Satisfied                                 5
## 78                           7 Satisfied                                 5
## 79                         6 Neutral +ve                                 5
## 80                           7 Satisfied                                 5
## 81                           7 Satisfied                                 5
## 82                           7 Satisfied                                 5
## 83                           7 Satisfied                                 5
## 84                           7 Satisfied                                 5
## 85                         6 Neutral +ve                                 5
## 86                           7 Satisfied                                 6
## 87                           7 Satisfied                                 5
## 88                           7 Satisfied                                 6
## 89                           7 Satisfied                                 5
## 90                           9 Satisfied                                 6
## 91                           7 Satisfied                                 6
## 92                        4 Dissatisfied                                 5
## 93                           8 Satisfied                                 6
## 94                           8 Satisfied                                 6
## 95                           7 Satisfied                                 5
## 96                           7 Satisfied                                 5
## 97                           7 Satisfied                                 5
## 98                           7 Satisfied                                 6
## 99                           7 Satisfied                                 5
## 100                          7 Satisfied                                 5
## 101                       2 Dissatisfied                                 4
## 102                        6 Neutral +ve                                 5
## 103                          7 Satisfied                                 3
## 104                       3 Dissatisfied                                 5
## 105                        5 Neutral -ve                                 8
## 106                           Don't know                        Don't know
## 107                    Very Dissatisfied                                 6
## 108                       4 Dissatisfied                                 7
## 109                           Don't know                        Don't know
## 110                           Don't know                        Don't know
## 111                        5 Neutral -ve                                 7
## 112                          7 Satisfied                                 8
## 113                           Don't know                        Don't know
## 114                        6 Neutral +ve                                 7
## 115                       4 Dissatisfied                                 7
## 116                           Don't know                        Don't know
## 117                        6 Neutral +ve                                 9
## 118                           Don't know                        Don't know
## 119                           Don't know                        Don't know
## 120                       4 Dissatisfied                                 8
## 121                        5 Neutral -ve                                 6
## 122                          7 Satisfied                                 9
## 123                          7 Satisfied                    Very Satisfied
## 124                          8 Satisfied                                 5
## 125                       Very Satisfied                                 8
## 126                          8 Satisfied                    Very Satisfied
## 127                          7 Satisfied                    Very Satisfied
## 128                       4 Dissatisfied                                 8
## 129                           Don't know                                 8
## 130                    Very Dissatisfied                                 9
## 131                       4 Dissatisfied                                 4
## 132                          9 Satisfied                                 7
## 133                       Very Satisfied                    Very Satisfied
## 134                          7 Satisfied                                 8
## 135                          8 Satisfied                    Very Satisfied
## 136                        5 Neutral -ve                                 7
## 137                       Very Satisfied                                 8
## 138                          7 Satisfied                                 6
## 139                       Very Satisfied                                 9
## 140                        5 Neutral -ve                                 8
## 141                       Very Satisfied                                 8
## 142                          7 Satisfied                                 6
## 143                          8 Satisfied                                 6
## 144                       Very Satisfied                                 9
## 145                          8 Satisfied                                 7
## 146                        6 Neutral +ve                                 7
## 147                        6 Neutral +ve                                 7
## 148                           Don't know                        Don't know
## 149                       4 Dissatisfied                                 8
## 150                        5 Neutral -ve                                 6
## 151                       Very Satisfied                                 9
## 152                          8 Satisfied                                 6
## 153                          8 Satisfied                                 5
## 154                       Very Satisfied                                 8
## 155                          7 Satisfied                                 6
## 156                       Very Satisfied                                 7
## 157                       Very Satisfied                                 5
## 158                                 <NA>                              <NA>
## 159                          7 Satisfied                                 5
## 160                       Very Satisfied                                 6
## 161                       Very Satisfied                                 7
## 162                       Very Satisfied                                 8
## 163                       Very Satisfied                                 7
## 164                       Very Satisfied                                 8
## 165                       Very Satisfied                                 7
## 166                          8 Satisfied                                 7
## 167                          8 Satisfied                    Very Satisfied
## 168                          9 Satisfied                                 6
## 169                          9 Satisfied                                 8
## 170                       Very Satisfied                                 7
## 171                        6 Neutral +ve                                 5
## 172                          7 Satisfied                                 5
## 173                       Very Satisfied                                 6
## 174                       Very Satisfied                                 8
## 175                          7 Satisfied                                 8
## 176                       Very Satisfied                                 8
## 177                          9 Satisfied                                 8
## 178                       Very Satisfied                                 9
## 179                          7 Satisfied                                 8
## 180                          8 Satisfied                                 7
## 181                          9 Satisfied                                 7
## 182                          9 Satisfied                                 7
## 183                       Very Satisfied                                 8
## 184                          9 Satisfied                                 7
## 185                       Very Satisfied                                 8
## 186                       Very Satisfied                                 8
## 187                          9 Satisfied                                 8
## 188                       Very Satisfied                                 8
## 189                       Very Satisfied                                 7
## 190                       Very Satisfied                                 8
## 191                       Very Satisfied                                 8
## 192                       Very Satisfied                                 9
## 193                          9 Satisfied                                 8
## 194                       Very Satisfied                                 8
## 195                       Very Satisfied                                 9
## 196                       Very Satisfied                                 7
## 197                          8 Satisfied                                 9
## 198                       Very Satisfied                                 7
## 199                          8 Satisfied                    Very Satisfied
## 200                       Very Satisfied                                 9
## 201                        5 Neutral -ve                                 7
## 202                       3 Dissatisfied                                 8
## 203                          8 Satisfied                                 6
## 204                        5 Neutral -ve                                 6
## 205                        5 Neutral -ve                                 4
## 206                        5 Neutral -ve                                 6
## 207                       4 Dissatisfied                                 5
## 208                       4 Dissatisfied                                 5
## 209                        5 Neutral -ve                                 5
## 210                        5 Neutral -ve                                 6
## 211                                 <NA>                                 4
## 212                       4 Dissatisfied                                 6
## 213                       4 Dissatisfied                                 5
## 214                       4 Dissatisfied                                 6
## 215                       4 Dissatisfied                                 6
## 216                        6 Neutral +ve                                 8
## 217                       4 Dissatisfied                                 6
## 218                    Very Dissatisfied                 Very Dissatisfied
## 219                          7 Satisfied                                 8
## 220                          7 Satisfied                                 5
## 221                        6 Neutral +ve                                 5
## 222                        5 Neutral -ve                                 6
## 223                       4 Dissatisfied                                 6
## 224                        5 Neutral -ve                                 6
## 225                          7 Satisfied                                 6
## 226                        6 Neutral +ve                                 7
## 227                          8 Satisfied                    Very Satisfied
## 228                        5 Neutral -ve                                 8
## 229                        5 Neutral -ve                                 7
## 230                          9 Satisfied                                 5
## 231                          9 Satisfied                                 5
## 232                       4 Dissatisfied                                 3
## 233                       4 Dissatisfied                                 3
## 234                       4 Dissatisfied                                 3
## 235                       4 Dissatisfied                                 3
## 236                          8 Satisfied                                 7
## 237                        6 Neutral +ve                                 8
## 238                        6 Neutral +ve                                 8
## 239                       4 Dissatisfied                                 4
## 240                       4 Dissatisfied                                 3
## 241                       4 Dissatisfied                                 3
## 242                       4 Dissatisfied                                 3
## 243                       4 Dissatisfied                                 3
## 244                       4 Dissatisfied                                 3
## 245                          7 Satisfied                                 8
## 246                          9 Satisfied                                 5
## 247                       4 Dissatisfied                                 8
## 248                        6 Neutral +ve                                 8
## 249                          7 Satisfied                                 8
## 250                          7 Satisfied                                 6
## 251                        5 Neutral -ve                                 6
## 252                        5 Neutral -ve                                 5
## 253                        5 Neutral -ve                                 6
## 254                       4 Dissatisfied                                 5
## 255                        5 Neutral -ve                                 5
## 256                       4 Dissatisfied                                 4
## 257                        5 Neutral -ve                                 5
## 258                       4 Dissatisfied                                 8
## 259                        5 Neutral -ve                                 5
## 260                       4 Dissatisfied                                 4
## 261                        6 Neutral +ve                                 6
## 262                        5 Neutral -ve                                 6
## 263                        5 Neutral -ve                                 5
## 264                       4 Dissatisfied                                 6
## 265                       3 Dissatisfied                                 5
## 266                       3 Dissatisfied                                 5
## 267                       4 Dissatisfied                                 6
## 268                       4 Dissatisfied                                 6
## 269                        6 Neutral +ve                                 6
## 270                       3 Dissatisfied                                 6
## 271                       4 Dissatisfied                                 4
## 272                       4 Dissatisfied                                 3
## 273                       4 Dissatisfied                                 4
## 274                       3 Dissatisfied                                 5
## 275                       4 Dissatisfied                                 5
## 276                          7 Satisfied                                 5
## 277                       3 Dissatisfied                                 3
## 278                        5 Neutral -ve                                 8
## 279                          8 Satisfied                                 8
## 280                          7 Satisfied                                 4
## 281                       3 Dissatisfied                                 3
## 282                          8 Satisfied                                 8
## 283                       4 Dissatisfied                                 4
## 284                        6 Neutral +ve                                 4
## 285                       4 Dissatisfied                                 4
## 286                       4 Dissatisfied                                 4
## 287                       3 Dissatisfied                                 5
## 288                       Very Satisfied                    Very Satisfied
## 289                          8 Satisfied                                 8
## 290                        5 Neutral -ve                                 5
## 291                          8 Satisfied                                 8
## 292                          8 Satisfied                                 8
## 293                       4 Dissatisfied                                 5
## 294                       4 Dissatisfied                                 6
## 295                        5 Neutral -ve                                 5
## 296                       4 Dissatisfied                                 5
## 297                       Very Satisfied                    Very Satisfied
## 298                        5 Neutral -ve                                 5
## 299                       4 Dissatisfied                                 4
## 300                       4 Dissatisfied                                 4
## 302                          7 Satisfied                                 4
## 303                        6 Neutral +ve                                 8
## 304                        5 Neutral -ve                                 5
## 305                        5 Neutral -ve                                 3
## 306                        5 Neutral -ve                                 6
## 307                       3 Dissatisfied                                 2
## 308                        6 Neutral +ve                                 5
## 309                          8 Satisfied                                 9
## 310                          7 Satisfied                                 6
## 311                          8 Satisfied                                 7
## 312                        5 Neutral -ve                                 3
## 313                       Very Satisfied                    Very Satisfied
## 314                    Very Dissatisfied                 Very Dissatisfied
## 315                          7 Satisfied                                 5
## 316                        6 Neutral +ve                                 8
## 317                       Very Satisfied                    Very Satisfied
## 318                       2 Dissatisfied                                 2
## 319                       Very Satisfied                                 8
## 320                        6 Neutral +ve                                 5
## 321                          8 Satisfied                                 8
## 322                       2 Dissatisfied                                 4
## 323                       2 Dissatisfied                                 2
## 324                        5 Neutral -ve                                 5
## 325                        6 Neutral +ve                                 6
## 326                        6 Neutral +ve                                 6
## 327                          8 Satisfied                                 6
## 328                        6 Neutral +ve                                 8
## 329                       4 Dissatisfied                 Very Dissatisfied
## 330                       3 Dissatisfied                                 4
## 331                          7 Satisfied                                 9
## 332                        6 Neutral +ve                                 8
## 333                       4 Dissatisfied                                 8
## 334                        5 Neutral -ve                                 6
## 335                        5 Neutral -ve                 Very Dissatisfied
## 336                        5 Neutral -ve                                 5
## 337                        5 Neutral -ve                                 7
## 338                                 <NA>                    Very Satisfied
## 339                        5 Neutral -ve                                 5
## 340                        6 Neutral +ve                                 8
## 341                           Don't know                 Very Dissatisfied
## 342                    Very Dissatisfied                 Very Dissatisfied
## 343                          9 Satisfied                                 8
## 344                       Very Satisfied                    Very Satisfied
## 345                       Very Satisfied                    Very Satisfied
## 346                          9 Satisfied                                 7
## 347                          7 Satisfied                                 6
## 348                       Very Satisfied                    Very Satisfied
## 349                       3 Dissatisfied                                 5
## 350                       4 Dissatisfied                                 6
## 351                       3 Dissatisfied                                 6
## 352                       3 Dissatisfied                                 3
## 353                       4 Dissatisfied                                 5
## 354                       4 Dissatisfied                                 3
## 355                       4 Dissatisfied                                 5
## 356                       4 Dissatisfied                                 5
## 357                        5 Neutral -ve                                 6
## 358                       4 Dissatisfied                                 5
## 359                        6 Neutral +ve                                 5
## 360                       4 Dissatisfied                                 5
## 361                        5 Neutral -ve                                 4
## 362                       4 Dissatisfied                                 4
## 363                        5 Neutral -ve                                 3
## 364                       4 Dissatisfied                                 5
## 365                       4 Dissatisfied                                 5
## 366                        5 Neutral -ve                                 4
## 367                        5 Neutral -ve                                 6
## 368                       4 Dissatisfied                                 3
## 369                        6 Neutral +ve                                 7
## 370                        5 Neutral -ve                                 6
## 371                       4 Dissatisfied                                 3
## 372                        6 Neutral +ve                                 5
## 373                        5 Neutral -ve                                 4
## 374                        5 Neutral -ve                                 4
## 375                          7 Satisfied                                 5
## 376                        5 Neutral -ve                                 6
## 377                        5 Neutral -ve                                 5
## 378                       4 Dissatisfied                                 3
## 379                       4 Dissatisfied                                 5
## 380                       3 Dissatisfied                                 3
## 381                       3 Dissatisfied                                 3
## 382                       4 Dissatisfied                                 3
## 383                       4 Dissatisfied                                 3
## 384                       3 Dissatisfied                        Don't know
## 385                       4 Dissatisfied                                 3
## 386                        5 Neutral -ve                                 4
## 387                       4 Dissatisfied                                 3
## 388                       4 Dissatisfied                                 3
## 389                       3 Dissatisfied                                 3
## 390                        5 Neutral -ve                                 5
## 391                       4 Dissatisfied                                 3
## 392                        5 Neutral -ve                                 4
## 393                       4 Dissatisfied                                 3
## 394                       4 Dissatisfied                                 2
## 395                        5 Neutral -ve                                 6
## 396                       4 Dissatisfied                                 3
## 397                        5 Neutral -ve                                 5
## 398                       4 Dissatisfied                                 4
## 399                       3 Dissatisfied                                 3
## 400                       4 Dissatisfied                                 3
## 401                       4 Dissatisfied                                 3
## 402                       2 Dissatisfied                                 4
## 403                        6 Neutral +ve                                 6
## 404                    Very Dissatisfied                 Very Dissatisfied
## 405                        6 Neutral +ve                                 6
## 406                       4 Dissatisfied                        Don't know
## 407                       4 Dissatisfied                                 5
## 408                        5 Neutral -ve                                 5
## 409                        6 Neutral +ve                                 5
## 410                        6 Neutral +ve                                 6
## 411                       3 Dissatisfied                                 5
## 412                        5 Neutral -ve                                 6
## 413                       4 Dissatisfied                                 6
## 414                          7 Satisfied                                 5
## 415                        6 Neutral +ve                                 6
## 416                        5 Neutral -ve                                 6
## 417                          7 Satisfied                        Don't know
## 418                       3 Dissatisfied                                 4
## 419                        6 Neutral +ve                                 6
## 420                       3 Dissatisfied                                 7
## 421                       4 Dissatisfied                                 6
## 422                        6 Neutral +ve                                 7
## 423                        5 Neutral -ve                                 6
## 424                        6 Neutral +ve                              <NA>
## 425                        6 Neutral +ve                                 7
## 426                       4 Dissatisfied                                 7
## 427                       4 Dissatisfied                                 7
## 428                          7 Satisfied                                 8
## 429                        5 Neutral -ve                                 6
## 430                       4 Dissatisfied                                 7
## 431                        5 Neutral -ve                                 6
## 432                        5 Neutral -ve                                 7
## 433                       4 Dissatisfied                                 6
## 434                       4 Dissatisfied                                 7
## 435                        5 Neutral -ve                                 7
## 436                       4 Dissatisfied                                 6
## 437                       4 Dissatisfied                                 7
## 438                        5 Neutral -ve                                 3
## 439                       4 Dissatisfied                                 7
## 440                       4 Dissatisfied                                 7
## 441                       4 Dissatisfied                                 7
## 442                        5 Neutral -ve                                 6
## 443                        5 Neutral -ve                                 7
## 444                        5 Neutral -ve                                 3
## 445                       3 Dissatisfied                                 6
## 446                       4 Dissatisfied                                 7
## 447                       4 Dissatisfied                                 7
## 448                       4 Dissatisfied                                 7
## 449                       4 Dissatisfied                                 7
## 450                       4 Dissatisfied                                 5
## 451                       4 Dissatisfied                                 7
## 452                       4 Dissatisfied                                 7
## 453                          8 Satisfied                                 4
## 454                          9 Satisfied                                 4
## 455                       Very Satisfied                                 4
## 456                        6 Neutral +ve                                 6
## 457                           Don't know                        Don't know
## 458                        5 Neutral -ve                                 5
## 459                       4 Dissatisfied                                 5
## 460                       2 Dissatisfied                                 3
## 461                           Don't know                    Very Satisfied
## 462                       Very Satisfied                 Very Dissatisfied
## 463                          9 Satisfied                    Very Satisfied
## 464                        5 Neutral -ve                                 3
## 465                       Very Satisfied                 Very Dissatisfied
## 466                           Don't know                        Don't know
## 467                       Very Satisfied                        Don't know
## 468                       Very Satisfied                    Very Satisfied
## 469                           Don't know                        Don't know
## 470                        6 Neutral +ve                                 5
## 471                           Don't know                        Don't know
## 472                       4 Dissatisfied                                 9
## 473                        5 Neutral -ve                        Don't know
## 474                          9 Satisfied                        Don't know
## 475                       4 Dissatisfied                    Very Satisfied
## 476                          9 Satisfied                        Don't know
## 477                           Don't know                    Very Satisfied
## 478                           Don't know                        Don't know
## 479                           Don't know                        Don't know
## 480                       Very Satisfied                        Don't know
## 481                          7 Satisfied                        Don't know
## 482                    Very Dissatisfied                 Very Dissatisfied
## 483                       3 Dissatisfied                 Very Dissatisfied
## 484                          9 Satisfied                                 9
## 485                          9 Satisfied                                 8
## 486                        5 Neutral -ve                                 2
## 487                           Don't know                        Don't know
## 488                           Don't know                        Don't know
## 489                        6 Neutral +ve                        Don't know
## 490                          8 Satisfied                                 9
## 491                        5 Neutral -ve                                 8
## 492                        6 Neutral +ve                                 6
## 493                    Very Dissatisfied                 Very Dissatisfied
## 494                        6 Neutral +ve                                 8
## 495                        5 Neutral -ve                                 8
## 496                    Very Dissatisfied                 Very Dissatisfied
##      Governing.system.of.country
## 1                       Very Bad
## 2                              2
## 3                              3
## 4                       Very Bad
## 5                      Very Good
## 6                      Very Good
## 7                      Very Good
## 8                      Very Good
## 9                              7
## 10                             8
## 11                             4
## 12                     Very Good
## 13                             5
## 14                             5
## 15                             4
## 16                             3
## 17                             6
## 18                             5
## 19                             3
## 20                             8
## 21                     Very Good
## 22                             6
## 23                             9
## 24                             6
## 25                             5
## 26                    Don't Know
## 27                             5
## 28                             4
## 29                             5
## 30                             8
## 31                             5
## 32                    Don't Know
## 33                             5
## 34                             2
## 35                             3
## 36                             5
## 37                             5
## 38                             5
## 39                             7
## 40                             6
## 41                             6
## 42                             4
## 43                             8
## 44                             5
## 45                             5
## 46                      Very Bad
## 47                             5
## 48                      Very Bad
## 49                             5
## 50                    Don't Know
## 51                             5
## 52                             3
## 53                             6
## 54                             4
## 55                             5
## 56                             6
## 57                             7
## 58                      Very Bad
## 59                             5
## 60                             5
## 61                             6
## 62                             6
## 63                             6
## 64                             6
## 65                             7
## 66                             6
## 67                             6
## 68                             6
## 69                             4
## 70                             4
## 71                             6
## 72                             6
## 73                             6
## 74                             6
## 75                             6
## 76                             6
## 77                             5
## 78                             6
## 79                             6
## 80                             6
## 81                             6
## 82                             6
## 83                             6
## 84                             6
## 85                             6
## 86                             6
## 87                             6
## 88                             6
## 89                             7
## 90                             5
## 91                             6
## 92                             7
## 93                             5
## 94                             7
## 95                             6
## 96                             6
## 97                             5
## 98                             6
## 99                             6
## 100                            6
## 101                    Very Good
## 102                            6
## 103                    Very Good
## 104                            6
## 105                            7
## 106                   Don't Know
## 107                            6
## 108                            9
## 109                   Don't Know
## 110                   Don't Know
## 111                            6
## 112                            6
## 113                   Don't Know
## 114                            5
## 115                            5
## 116                   Don't Know
## 117                            8
## 118                   Don't Know
## 119                            5
## 120                            7
## 121                            7
## 122                            8
## 123                    Very Good
## 124                            7
## 125                            7
## 126                            8
## 127                            7
## 128                            7
## 129                            7
## 130                            7
## 131                            8
## 132                            7
## 133                            7
## 134                            5
## 135                            6
## 136                            8
## 137                            9
## 138                            5
## 139                            8
## 140                            6
## 141                            7
## 142                            7
## 143                            7
## 144                            9
## 145                            8
## 146                            8
## 147                            2
## 148                            5
## 149                            7
## 150                            7
## 151                            8
## 152                            7
## 153                            4
## 154                            3
## 155                     Very Bad
## 156                            5
## 157                            5
## 158                         <NA>
## 159                            5
## 160                            8
## 161                            7
## 162                            7
## 163                   Don't Know
## 164                   Don't Know
## 165                            8
## 166                            8
## 167                            9
## 168                            8
## 169                    Very Good
## 170                            6
## 171                            7
## 172                   Don't Know
## 173                   Don't Know
## 174                            8
## 175                   Don't Know
## 176                            8
## 177                            9
## 178                   Don't Know
## 179                   Don't Know
## 180                            7
## 181                            8
## 182                            7
## 183                   Don't Know
## 184                   Don't Know
## 185                            4
## 186                            6
## 187                            4
## 188                   Don't Know
## 189                   Don't Know
## 190                            6
## 191                            6
## 192                   Don't Know
## 193                            6
## 194                            6
## 195                            8
## 196                            9
## 197                   Don't Know
## 198                   Don't Know
## 199                            9
## 200                            7
## 201                            7
## 202                            4
## 203                            4
## 204                            7
## 205                            4
## 206                            4
## 207                            5
## 208                            5
## 209                            5
## 210                            5
## 211                            6
## 212                            4
## 213                            5
## 214                            4
## 215                            4
## 216                            4
## 217                            4
## 218                            5
## 219                    Very Good
## 220                            5
## 221                            9
## 222                            7
## 223                            4
## 224                            7
## 225                            8
## 226                            9
## 227                    Very Good
## 228                            7
## 229                            7
## 230                            8
## 231                            6
## 232                            5
## 233                            4
## 234                            4
## 235                            4
## 236                            6
## 237                            8
## 238                            9
## 239                            4
## 240                            4
## 241                            4
## 242                            4
## 243                            4
## 244                            4
## 245                            7
## 246                            8
## 247                            9
## 248                            7
## 249                            8
## 250                            6
## 251                            6
## 252                            4
## 253                            7
## 254                            5
## 255                            5
## 256                            5
## 257                            2
## 258                            7
## 259                            7
## 260                            5
## 261                            5
## 262                            5
## 263                            7
## 264                    Very Good
## 265                            8
## 266                            5
## 267                            6
## 268                            6
## 269                            6
## 270                            6
## 271                            4
## 272                            3
## 273                            4
## 274                            5
## 275                            5
## 276                            6
## 277                   Don't Know
## 278                            3
## 279                            3
## 280                            6
## 281                            3
## 282                            2
## 283                            4
## 284                            6
## 285                            5
## 286                            4
## 287                            5
## 288                            6
## 289                            4
## 290                            5
## 291                     Very Bad
## 292                   Don't Know
## 293                            4
## 294                            5
## 295                            7
## 296                            4
## 297                            3
## 298                            5
## 299                            4
## 300                            5
## 302                            5
## 303                            5
## 304                            3
## 305                     Very Bad
## 306                            6
## 307                   Don't Know
## 308                            5
## 309                            4
## 310                            5
## 311                            6
## 312                            5
## 313                            3
## 314                     Very Bad
## 315                   Don't Know
## 316                            5
## 317                     Very Bad
## 318                     Very Bad
## 319                            6
## 320                            4
## 321                            6
## 322                   Don't Know
## 323                   Don't Know
## 324                            6
## 325                            3
## 326                            4
## 327                            5
## 328                            3
## 329                            4
## 330                            4
## 331                            7
## 332                            9
## 333                    Very Good
## 334                            8
## 335                            5
## 336                            4
## 337                            6
## 338                    Very Good
## 339                     Very Bad
## 340                     Very Bad
## 341                            2
## 342                            6
## 343                            7
## 344                            2
## 345                    Very Good
## 346                            5
## 347                   Don't Know
## 348                            5
## 349                            6
## 350                            3
## 351                            5
## 352                   Don't Know
## 353                            3
## 354                            4
## 355                            4
## 356                            4
## 357                     Very Bad
## 358                            3
## 359                            4
## 360                            6
## 361                            4
## 362                            3
## 363                            6
## 364                            2
## 365                            4
## 366                     Very Bad
## 367                            4
## 368                            4
## 369                            4
## 370                            4
## 371                            4
## 372                            3
## 373                            4
## 374                            4
## 375                            5
## 376                            4
## 377                            4
## 378                            3
## 379                            2
## 380                            3
## 381                   Don't Know
## 382                            5
## 383                            3
## 384                            2
## 385                            4
## 386                            5
## 387                            4
## 388                            4
## 389                            3
## 390                     Very Bad
## 391                     Very Bad
## 392                            4
## 393                            3
## 394                            3
## 395                     Very Bad
## 396                            4
## 397                            2
## 398                     Very Bad
## 399                            4
## 400                            4
## 401                            5
## 402                            4
## 403                            6
## 404                    Very Good
## 405                            6
## 406                            5
## 407                            5
## 408                            5
## 409                            7
## 410                            7
## 411                            5
## 412                            6
## 413                            5
## 414                            8
## 415                            6
## 416                            5
## 417                            7
## 418                            4
## 419                            6
## 420                            7
## 421                            7
## 422                            7
## 423                            7
## 424                            7
## 425                            7
## 426                            7
## 427                            7
## 428                            8
## 429                            6
## 430                            7
## 431                            6
## 432                            7
## 433                            6
## 434                            7
## 435                            6
## 436                            6
## 437                            7
## 438                   Don't Know
## 439                            7
## 440                            7
## 441                            7
## 442                            8
## 443                            7
## 444                            5
## 445                            6
## 446                            7
## 447                            7
## 448                            7
## 449                            7
## 450                            7
## 451                            7
## 452                            7
## 453                            7
## 454                            7
## 455                            5
## 456                            6
## 457                     Very Bad
## 458                     Very Bad
## 459                            4
## 460                            5
## 461                   Don't Know
## 462                            5
## 463                            5
## 464                            4
## 465                            5
## 466                     Very Bad
## 467                    Very Good
## 468                     Very Bad
## 469                   Don't Know
## 470                            6
## 471                     Very Bad
## 472                            6
## 473                            6
## 474                            8
## 475                            5
## 476                   Don't Know
## 477                            4
## 478                   Don't Know
## 479                   Don't Know
## 480                   Don't Know
## 481                            6
## 482                            9
## 483                            2
## 484                     Very Bad
## 485                            8
## 486                            5
## 487                   Don't Know
## 488                   Don't Know
## 489                            5
## 490                            8
## 491                            3
## 492                            5
## 493                            3
## 494                     Very Bad
## 495                            2
## 496                     Very Bad
##      Expected.governing.system.of.country.in.5.years
## 1                                                  5
## 2                                         Don't Know
## 3                                                  8
## 4                                                  6
## 5                                          Very Good
## 6                                          Very Good
## 7                                          Very Good
## 8                                                  7
## 9                                                  8
## 10                                        Don't Know
## 11                                                 5
## 12                                         Very Good
## 13                                                 8
## 14                                                 7
## 15                                                 7
## 16                                                 9
## 17                                                 9
## 18                                                 9
## 19                                         Very Good
## 20                                                 9
## 21                                                 9
## 22                                                 8
## 23                                                 9
## 24                                                 5
## 25                                                 3
## 26                                        Don't Know
## 27                                                 5
## 28                                                 5
## 29                                                 4
## 30                                                 5
## 31                                                 6
## 32                                        Don't Know
## 33                                                 5
## 34                                                 5
## 35                                          Very Bad
## 36                                                 5
## 37                                                 6
## 38                                                 2
## 39                                                 8
## 40                                                 6
## 41                                                 3
## 42                                                 4
## 43                                                 9
## 44                                                 7
## 45                                                 4
## 46                                                 9
## 47                                                 3
## 48                                                 9
## 49                                                 7
## 50                                        Don't Know
## 51                                        Don't Know
## 52                                          Very Bad
## 53                                                 7
## 54                                                 7
## 55                                                 8
## 56                                                 8
## 57                                                 8
## 58                                          Very Bad
## 59                                                 7
## 60                                                 7
## 61                                                 8
## 62                                                 8
## 63                                                 7
## 64                                                 8
## 65                                                 8
## 66                                                 7
## 67                                                 7
## 68                                                 8
## 69                                                 4
## 70                                                 4
## 71                                                 7
## 72                                                 7
## 73                                                 7
## 74                                                 7
## 75                                                 7
## 76                                                 8
## 77                                                 7
## 78                                                 7
## 79                                                 7
## 80                                                 8
## 81                                                 8
## 82                                                 7
## 83                                                 8
## 84                                                 8
## 85                                                 7
## 86                                                 8
## 87                                                 7
## 88                                                 8
## 89                                                 9
## 90                                                 7
## 91                                                 7
## 92                                                 7
## 93                                                 7
## 94                                                 8
## 95                                                 8
## 96                                                 8
## 97                                                 8
## 98                                                 7
## 99                                                 8
## 100                                                8
## 101                                       Don't Know
## 102                                                8
## 103                                                5
## 104                                                4
## 105                                                5
## 106                                       Don't Know
## 107                                                5
## 108                                                6
## 109                                       Don't Know
## 110                                       Don't Know
## 111                                                7
## 112                                                7
## 113                                       Don't Know
## 114                                                6
## 115                                                5
## 116                                       Don't Know
## 117                                        Very Good
## 118                                       Don't Know
## 119                                                6
## 120                                                7
## 121                                                6
## 122                                       Don't Know
## 123                                                8
## 124                                                8
## 125                                                8
## 126                                                9
## 127                                                7
## 128                                                7
## 129                                                7
## 130                                                9
## 131                                                5
## 132                                       Don't Know
## 133                                                4
## 134                                                7
## 135                                                7
## 136                                                8
## 137                                        Very Good
## 138                                                8
## 139                                        Very Good
## 140                                                6
## 141                                                6
## 142                                                5
## 143                                                7
## 144                                        Very Good
## 145                                                6
## 146                                                7
## 147                                                3
## 148                                                6
## 149                                                7
## 150                                                6
## 151                                                9
## 152                                                8
## 153                                                5
## 154                                                8
## 155                                                5
## 156                                                7
## 157                                                6
## 158                                             <NA>
## 159                                                7
## 160                                                8
## 161                                                9
## 162                                                8
## 163                                       Don't Know
## 164                                       Don't Know
## 165                                                7
## 166                                                9
## 167                                                5
## 168                                                4
## 169                                       Don't Know
## 170                                                8
## 171                                                8
## 172                                       Don't Know
## 173                                       Don't Know
## 174                                                8
## 175                                                8
## 176                                                7
## 177                                       Don't Know
## 178                                       Don't Know
## 179                                       Don't Know
## 180                                                8
## 181                                                9
## 182                                                8
## 183                                       Don't Know
## 184                                       Don't Know
## 185                                                6
## 186                                                7
## 187                                                6
## 188                                       Don't Know
## 189                                       Don't Know
## 190                                                8
## 191                                                7
## 192                                       Don't Know
## 193                                                8
## 194                                                5
## 195                                                9
## 196                                        Very Good
## 197                                       Don't Know
## 198                                       Don't Know
## 199                                                5
## 200                                                8
## 201                                                8
## 202                                                9
## 203                                                7
## 204                                                7
## 205                                                7
## 206                                                8
## 207                                                7
## 208                                                7
## 209                                                7
## 210                                                6
## 211                                                9
## 212                                                9
## 213                                                9
## 214                                                9
## 215                                                9
## 216                                                8
## 217                                                8
## 218                                                9
## 219                                        Very Good
## 220                                                9
## 221                                                9
## 222                                                8
## 223                                                8
## 224                                                8
## 225                                                9
## 226                                                8
## 227                                        Very Good
## 228                                                9
## 229                                                9
## 230                                                4
## 231                                                8
## 232                                                9
## 233                                                9
## 234                                                8
## 235                                                8
## 236                                                7
## 237                                                8
## 238                                                9
## 239                                                8
## 240                                                8
## 241                                                8
## 242                                                9
## 243                                                9
## 244                                                9
## 245                                                8
## 246                                                4
## 247                                                9
## 248                                                7
## 249                                                8
## 250                                                5
## 251                                                7
## 252                                                7
## 253                                                6
## 254                                                4
## 255                                                4
## 256                                                7
## 257                                                8
## 258                                                5
## 259                                                4
## 260                                                8
## 261                                                8
## 262                                                7
## 263                                                5
## 264                                                6
## 265                                                9
## 266                                                5
## 267                                                5
## 268                                                5
## 269                                                9
## 270                                                9
## 271                                                9
## 272                                                3
## 273                                                8
## 274                                                7
## 275                                                5
## 276                                                8
## 277                                                9
## 278                                                9
## 279                                                8
## 280                                                8
## 281                                                8
## 282                                                9
## 283                                                9
## 284                                                9
## 285                                                5
## 286                                                3
## 287                                                4
## 288                                                9
## 289                                                8
## 290                                                8
## 291                                                8
## 292                                                8
## 293                                                8
## 294                                                8
## 295                                       Don't Know
## 296                                                8
## 297                                                8
## 298                                                8
## 299                                                5
## 300                                                8
## 302                                                8
## 303                                                5
## 304                                                9
## 305                                       Don't Know
## 306                                                7
## 307                                                8
## 308                                                7
## 309                                                4
## 310                                                4
## 311                                                3
## 312                                                4
## 313                                                4
## 314                                       Don't Know
## 315                                       Don't Know
## 316                                                3
## 317                                         Very Bad
## 318                                         Very Bad
## 319                                                8
## 320                                                5
## 321                                                8
## 322                                       Don't Know
## 323                                       Don't Know
## 324                                                6
## 325                                                3
## 326                                                5
## 327                                                5
## 328                                                6
## 329                                                4
## 330                                                8
## 331                                                5
## 332                                                8
## 333                                                8
## 334                                                8
## 335                                                6
## 336                                                3
## 337                                                6
## 338                                                3
## 339                                                3
## 340                                                3
## 341                                        Very Good
## 342                                                7
## 343                                                9
## 344                                                4
## 345                                                9
## 346                                                8
## 347                                                9
## 348                                                5
## 349                                                6
## 350                                                5
## 351                                                4
## 352                                       Don't Know
## 353                                                6
## 354                                                4
## 355                                       Don't Know
## 356                                                4
## 357                                                4
## 358                                                4
## 359                                                6
## 360                                                8
## 361                                                6
## 362                                                3
## 363                                                5
## 364                                                3
## 365                                                5
## 366                                                3
## 367                                                5
## 368                                                4
## 369                                                3
## 370                                                5
## 371                                                4
## 372                                                7
## 373                                                5
## 374                                                4
## 375                                       Don't Know
## 376                                                5
## 377                                                7
## 378                                                3
## 379                                                3
## 380                                                4
## 381                                       Don't Know
## 382                                       Don't Know
## 383                                                4
## 384                                       Don't Know
## 385                                                5
## 386                                       Don't Know
## 387                                                5
## 388                                                5
## 389                                                5
## 390                                         Very Bad
## 391                                                4
## 392                                       Don't Know
## 393                                                4
## 394                                       Don't Know
## 395                                                3
## 396                                                5
## 397                                                4
## 398                                                3
## 399                                                5
## 400                                       Don't Know
## 401                                       Don't Know
## 402                                                4
## 403                                                6
## 404                                                9
## 405                                                6
## 406                                       Don't Know
## 407                                       Don't Know
## 408                                                5
## 409                                                8
## 410                                                7
## 411                                                4
## 412                                                5
## 413                                                5
## 414                                                7
## 415                                                6
## 416                                                6
## 417                                       Don't Know
## 418                                                4
## 419                                                6
## 420                                                5
## 421                                                5
## 422                                                7
## 423                                                6
## 424                                                7
## 425                                                6
## 426                                                6
## 427                                                6
## 428                                                6
## 429                                                5
## 430                                                5
## 431                                                6
## 432                                                5
## 433                                                4
## 434                                                5
## 435                                                6
## 436                                                5
## 437                                                5
## 438                                                3
## 439                                                5
## 440                                                5
## 441                                                5
## 442                                                7
## 443                                                5
## 444                                                6
## 445                                                5
## 446                                                5
## 447                                                5
## 448                                                5
## 449                                                5
## 450                                                5
## 451                                                5
## 452                                                5
## 453                                                8
## 454                                        Very Good
## 455                                       Don't Know
## 456                                                8
## 457                                       Don't Know
## 458                                                3
## 459                                                5
## 460                                                5
## 461                                                9
## 462                                                8
## 463                                                5
## 464                                                7
## 465                                                9
## 466                                                9
## 467                                                9
## 468                                         Very Bad
## 469                                       Don't Know
## 470                                                4
## 471                                                9
## 472                                                9
## 473                                        Very Good
## 474                                                6
## 475                                        Very Good
## 476                                       Don't Know
## 477                                                9
## 478                                       Don't Know
## 479                                       Don't Know
## 480                                       Don't Know
## 481                                                9
## 482                                       Don't Know
## 483                                         Very Bad
## 484                                                2
## 485                                                9
## 486                                                9
## 487                                       Don't Know
## 488                                       Don't Know
## 489                                       Don't Know
## 490                                                9
## 491                                                5
## 492                                                7
## 493                                                4
## 494                                       Don't Know
## 495                                                8
## 496                                         Very Bad
##      Satisfaction.with.democratic.developmen
## 1                                          5
## 2                                          5
## 3                                          6
## 4                                          3
## 5                                          3
## 6                                          4
## 7                                          4
## 8                                          4
## 9                                          3
## 10                                         9
## 11                                         4
## 12                                         2
## 13                                         7
## 14                                         4
## 15                                         3
## 16                                         4
## 17                                         5
## 18                                         3
## 19                                         5
## 20                                         6
## 21                                        10
## 22                                         3
## 23                                         8
## 24                                         5
## 25                                         4
## 26                                        99
## 27                                         4
## 28                                        99
## 29                                         4
## 30                                         6
## 31                                         4
## 32                                        99
## 33                                         1
## 34                                         2
## 35                                         2
## 36                                         4
## 37                                         5
## 38                                         3
## 39                                         7
## 40                                         5
## 41                                         5
## 42                                         6
## 43                                         7
## 44                                        99
## 45                                         5
## 46                                         1
## 47                                         3
## 48                                         4
## 49                                         4
## 50                                        99
## 51                                         5
## 52                                         1
## 53                                         5
## 54                                         3
## 55                                         7
## 56                                         6
## 57                                         6
## 58                                         7
## 59                                         6
## 60                                         6
## 61                                        NA
## 62                                         7
## 63                                         7
## 64                                         6
## 65                                         6
## 66                                         6
## 67                                         7
## 68                                         7
## 69                                         4
## 70                                         4
## 71                                         6
## 72                                         6
## 73                                         6
## 74                                         6
## 75                                         6
## 76                                         6
## 77                                         6
## 78                                         6
## 79                                         6
## 80                                         6
## 81                                         6
## 82                                        NA
## 83                                         7
## 84                                         7
## 85                                         5
## 86                                         7
## 87                                         7
## 88                                         7
## 89                                         7
## 90                                         7
## 91                                         6
## 92                                         3
## 93                                         8
## 94                                         7
## 95                                         7
## 96                                         7
## 97                                         4
## 98                                         6
## 99                                         6
## 100                                        7
## 101                                        5
## 102                                        7
## 103                                        9
## 104                                        6
## 105                                        6
## 106                                        6
## 107                                        6
## 108                                        6
## 109                                        4
## 110                                        7
## 111                                       NA
## 112                                        6
## 113                                       99
## 114                                        5
## 115                                        5
## 116                                       99
## 117                                        5
## 118                                       99
## 119                                        6
## 120                                        5
## 121                                        7
## 122                                        8
## 123                                        7
## 124                                        7
## 125                                        8
## 126                                        8
## 127                                        7
## 128                                        6
## 129                                       99
## 130                                        8
## 131                                        7
## 132                                        7
## 133                                        8
## 134                                        5
## 135                                        7
## 136                                        8
## 137                                        7
## 138                                        8
## 139                                        6
## 140                                        6
## 141                                        6
## 142                                        5
## 143                                        6
## 144                                        7
## 145                                        7
## 146                                        7
## 147                                        2
## 148                                        6
## 149                                        5
## 150                                        7
## 151                                       99
## 152                                        7
## 153                                        2
## 154                                       10
## 155                                        4
## 156                                        6
## 157                                       10
## 158                                       10
## 159                                        7
## 160                                        9
## 161                                        9
## 162                                        6
## 163                                       99
## 164                                       99
## 165                                       10
## 166                                        9
## 167                                       10
## 168                                       99
## 169                                        5
## 170                                        7
## 171                                        7
## 172                                       99
## 173                                        8
## 174                                        7
## 175                                        6
## 176                                       10
## 177                                        1
## 178                                       99
## 179                                       99
## 180                                        7
## 181                                        5
## 182                                        6
## 183                                       99
## 184                                       99
## 185                                        4
## 186                                        5
## 187                                        5
## 188                                       99
## 189                                       99
## 190                                        7
## 191                                        5
## 192                                        4
## 193                                        5
## 194                                        4
## 195                                        5
## 196                                        9
## 197                                        5
## 198                                        6
## 199                                       10
## 200                                        9
## 201                                        7
## 202                                        3
## 203                                        5
## 204                                        8
## 205                                        5
## 206                                        5
## 207                                        7
## 208                                        7
## 209                                        3
## 210                                        5
## 211                                        3
## 212                                        4
## 213                                        4
## 214                                        3
## 215                                        3
## 216                                        3
## 217                                        3
## 218                                        3
## 219                                        7
## 220                                        3
## 221                                        4
## 222                                        2
## 223                                        6
## 224                                        8
## 225                                        6
## 226                                        7
## 227                                        5
## 228                                        8
## 229                                        5
## 230                                        5
## 231                                        8
## 232                                        4
## 233                                        4
## 234                                        4
## 235                                        4
## 236                                        8
## 237                                        8
## 238                                        8
## 239                                        4
## 240                                        4
## 241                                        4
## 242                                        4
## 243                                        4
## 244                                        5
## 245                                        7
## 246                                        4
## 247                                        7
## 248                                        8
## 249                                        8
## 250                                        8
## 251                                        7
## 252                                        6
## 253                                        5
## 254                                        8
## 255                                        6
## 256                                        5
## 257                                        6
## 258                                        5
## 259                                        5
## 260                                        6
## 261                                       10
## 262                                        6
## 263                                        6
## 264                                        6
## 265                                       10
## 266                                        9
## 267                                        4
## 268                                        5
## 269                                        8
## 270                                        5
## 271                                       99
## 272                                        3
## 273                                        5
## 274                                        4
## 275                                        5
## 276                                        7
## 277                                       99
## 278                                        7
## 279                                        3
## 280                                        6
## 281                                        4
## 282                                        5
## 283                                        7
## 284                                        9
## 285                                        5
## 286                                        4
## 287                                        6
## 288                                        7
## 289                                       99
## 290                                        3
## 291                                        7
## 292                                       99
## 293                                        3
## 294                                        3
## 295                                        6
## 296                                        5
## 297                                        2
## 298                                        3
## 299                                        5
## 300                                        6
## 302                                        6
## 303                                        7
## 304                                        3
## 305                                        1
## 306                                        5
## 307                                        1
## 308                                        3
## 309                                        1
## 310                                        5
## 311                                        3
## 312                                        3
## 313                                        3
## 314                                       99
## 315                                       99
## 316                                        5
## 317                                        2
## 318                                        1
## 319                                        7
## 320                                        5
## 321                                        6
## 322                                       99
## 323                                        3
## 324                                        3
## 325                                        6
## 326                                        5
## 327                                        3
## 328                                        4
## 329                                        4
## 330                                        5
## 331                                        3
## 332                                        7
## 333                                        5
## 334                                        5
## 335                                        4
## 336                                        3
## 337                                        3
## 338                                       10
## 339                                        5
## 340                                        3
## 341                                        4
## 342                                        7
## 343                                        7
## 344                                        5
## 345                                        3
## 346                                        4
## 347                                        6
## 348                                        7
## 349                                        7
## 350                                        4
## 351                                        6
## 352                                       99
## 353                                        2
## 354                                       99
## 355                                        4
## 356                                       99
## 357                                        1
## 358                                        4
## 359                                        5
## 360                                        4
## 361                                        3
## 362                                        3
## 363                                        3
## 364                                        3
## 365                                        4
## 366                                        5
## 367                                        4
## 368                                       99
## 369                                        3
## 370                                        4
## 371                                        5
## 372                                        4
## 373                                        4
## 374                                        4
## 375                                        3
## 376                                        5
## 377                                        3
## 378                                        3
## 379                                        5
## 380                                        4
## 381                                       99
## 382                                        4
## 383                                        3
## 384                                        3
## 385                                        4
## 386                                        4
## 387                                        4
## 388                                        5
## 389                                        4
## 390                                        1
## 391                                        6
## 392                                        2
## 393                                       99
## 394                                        3
## 395                                        3
## 396                                        3
## 397                                        4
## 398                                        3
## 399                                        3
## 400                                        3
## 401                                        4
## 402                                       99
## 403                                        6
## 404                                        3
## 405                                        6
## 406                                        4
## 407                                       99
## 408                                        5
## 409                                        3
## 410                                        5
## 411                                        4
## 412                                        5
## 413                                        5
## 414                                        8
## 415                                        6
## 416                                        6
## 417                                        2
## 418                                        5
## 419                                        5
## 420                                        5
## 421                                        5
## 422                                        7
## 423                                        6
## 424                                        7
## 425                                        6
## 426                                        6
## 427                                        6
## 428                                        6
## 429                                        6
## 430                                        6
## 431                                        6
## 432                                       NA
## 433                                        6
## 434                                        7
## 435                                        6
## 436                                        6
## 437                                        5
## 438                                        3
## 439                                        6
## 440                                        6
## 441                                        6
## 442                                        6
## 443                                        6
## 444                                        6
## 445                                        6
## 446                                        5
## 447                                        7
## 448                                        7
## 449                                        6
## 450                                        4
## 451                                        6
## 452                                        7
## 453                                        9
## 454                                        7
## 455                                        5
## 456                                        7
## 457                                       99
## 458                                        2
## 459                                        1
## 460                                        1
## 461                                       99
## 462                                        7
## 463                                        7
## 464                                        3
## 465                                        1
## 466                                        1
## 467                                       10
## 468                                        1
## 469                                       99
## 470                                        5
## 471                                        1
## 472                                        2
## 473                                        5
## 474                                        6
## 475                                        3
## 476                                        4
## 477                                        4
## 478                                        3
## 479                                        3
## 480                                       99
## 481                                        4
## 482                                        9
## 483                                        1
## 484                                        1
## 485                                        7
## 486                                        8
## 487                                       99
## 488                                       99
## 489                                        4
## 490                                        9
## 491                                        4
## 492                                        5
## 493                                        5
## 494                                        6
## 495                                        3
## 496                                        4
##      Social.Relation..Children.should.follow.parent.s.unreasonable.demands
## 1                                                           Quite Disagree
## 2                                                             Partly Agree
## 3                                                        Strongly Disagree
## 4                                                             Partly Agree
## 5                                                           Quite Disagree
## 6                                                           Quite Disagree
## 7                                                           Strongly Agree
## 8                                                           Strongly Agree
## 9                                                           Quite Disagree
## 10                                                            Partly Agree
## 11                                                            Partly Agree
## 12                                                          Quite Disagree
## 13                                                            Partly Agree
## 14                                                            Partly Agree
## 15                                                            Partly Agree
## 16                                                       Strongly Disagree
## 17                                                            Partly Agree
## 18                                                          Quite Disagree
## 19                                                            Partly Agree
## 20                                                            Partly Agree
## 21                                                            Partly Agree
## 22                                                            Partly Agree
## 23                                                       Strongly Disagree
## 24                                                            Partly Agree
## 25                                                          Strongly Agree
## 26                                                            Partly Agree
## 27                                                          Strongly Agree
## 28                                                          Strongly Agree
## 29                                                            Partly Agree
## 30                                                       Strongly Disagree
## 31                                                          Strongly Agree
## 32                                                            Partly Agree
## 33                                                       Strongly Disagree
## 34                                                          Quite Disagree
## 35                                                       Strongly Disagree
## 36                                                          Strongly Agree
## 37                                                       Strongly Disagree
## 38                                                          Quite Disagree
## 39                                                            Partly Agree
## 40                                                       Strongly Disagree
## 41                                                          Quite Disagree
## 42                                                       Strongly Disagree
## 43                                                       Strongly Disagree
## 44                                                            Partly Agree
## 45                                                            Partly Agree
## 46                                                       Strongly Disagree
## 47                                                            Partly Agree
## 48                                                            Partly Agree
## 49                                                          Quite Disagree
## 50                                                          Quite Disagree
## 51                                                          Quite Disagree
## 52                                                            Partly Agree
## 53                                                          Quite Disagree
## 54                                                          Quite Disagree
## 55                                                       Strongly Disagree
## 56                                                          Quite Disagree
## 57                                                          Quite Disagree
## 58                                                            Partly Agree
## 59                                                          Quite Disagree
## 60                                                            Partly Agree
## 61                                                          Quite Disagree
## 62                                                          Quite Disagree
## 63                                                          Quite Disagree
## 64                                                          Quite Disagree
## 65                                                          Quite Disagree
## 66                                                          Quite Disagree
## 67                                                          Quite Disagree
## 68                                                          Quite Disagree
## 69                                                          Quite Disagree
## 70                                                            Partly Agree
## 71                                                       Strongly Disagree
## 72                                                          Quite Disagree
## 73                                                          Quite Disagree
## 74                                                          Quite Disagree
## 75                                                          Quite Disagree
## 76                                                          Quite Disagree
## 77                                                          Quite Disagree
## 78                                                          Quite Disagree
## 79                                                          Quite Disagree
## 80                                                          Quite Disagree
## 81                                                          Quite Disagree
## 82                                                          Quite Disagree
## 83                                                          Quite Disagree
## 84                                                          Quite Disagree
## 85                                                          Quite Disagree
## 86                                                            Partly Agree
## 87                                                          Quite Disagree
## 88                                                          Quite Disagree
## 89                                                          Quite Disagree
## 90                                                          Quite Disagree
## 91                                                            Partly Agree
## 92                                                            Partly Agree
## 93                                                          Quite Disagree
## 94                                                          Quite Disagree
## 95                                                          Quite Disagree
## 96                                                          Quite Disagree
## 97                                                          Quite Disagree
## 98                                                          Quite Disagree
## 99                                                          Quite Disagree
## 100                                                         Quite Disagree
## 101                                                           Partly Agree
## 102                                                           Partly Agree
## 103                                                           Partly Agree
## 104                                                      Strongly Disagree
## 105                                                      Strongly Disagree
## 106                                                         Quite Disagree
## 107                                                      Strongly Disagree
## 108                                                      Strongly Disagree
## 109                                                           Partly Agree
## 110                                                             Don't Know
## 111                                                                   <NA>
## 112                                                         Quite Disagree
## 113                                                      Strongly Disagree
## 114                                                           Partly Agree
## 115                                                         Quite Disagree
## 116                                                           Partly Agree
## 117                                                      Strongly Disagree
## 118                                                             Don't Know
## 119                                                           Partly Agree
## 120                                                         Quite Disagree
## 121                                                      Strongly Disagree
## 122                                                           Partly Agree
## 123                                                         Strongly Agree
## 124                                                      Strongly Disagree
## 125                                                         Quite Disagree
## 126                                                         Quite Disagree
## 127                                                         Quite Disagree
## 128                                                           Partly Agree
## 129                                                         Strongly Agree
## 130                                                         Quite Disagree
## 131                                                      Strongly Disagree
## 132                                                           Partly Agree
## 133                                                      Strongly Disagree
## 134                                                         Quite Disagree
## 135                                                           Partly Agree
## 136                                                         Quite Disagree
## 137                                                      Strongly Disagree
## 138                                                         Quite Disagree
## 139                                                           Partly Agree
## 140                                                         Quite Disagree
## 141                                                      Strongly Disagree
## 142                                                           Partly Agree
## 143                                                         Quite Disagree
## 144                                                      Strongly Disagree
## 145                                                           Partly Agree
## 146                                                         Quite Disagree
## 147                                                           Partly Agree
## 148                                                           Partly Agree
## 149                                                         Quite Disagree
## 150                                                      Strongly Disagree
## 151                                                         Strongly Agree
## 152                                                           Partly Agree
## 153                                                         Strongly Agree
## 154                                                         Strongly Agree
## 155                                                           Partly Agree
## 156                                                         Strongly Agree
## 157                                                         Strongly Agree
## 158                                                         Quite Disagree
## 159                                                         Quite Disagree
## 160                                                         Strongly Agree
## 161                                                         Strongly Agree
## 162                                                         Strongly Agree
## 163                                                         Strongly Agree
## 164                                                         Strongly Agree
## 165                                                         Quite Disagree
## 166                                                         Strongly Agree
## 167                                                         Quite Disagree
## 168                                                           Partly Agree
## 169                                                         Strongly Agree
## 170                                                           Partly Agree
## 171                                                         Strongly Agree
## 172                                                         Strongly Agree
## 173                                                         Strongly Agree
## 174                                                         Strongly Agree
## 175                                                         Strongly Agree
## 176                                                         Strongly Agree
## 177                                                         Strongly Agree
## 178                                                         Strongly Agree
## 179                                                         Strongly Agree
## 180                                                         Strongly Agree
## 181                                                         Strongly Agree
## 182                                                         Strongly Agree
## 183                                                         Strongly Agree
## 184                                                         Strongly Agree
## 185                                                         Strongly Agree
## 186                                                         Strongly Agree
## 187                                                           Partly Agree
## 188                                                         Strongly Agree
## 189                                                         Strongly Agree
## 190                                                         Strongly Agree
## 191                                                         Strongly Agree
## 192                                                         Strongly Agree
## 193                                                         Strongly Agree
## 194                                                         Strongly Agree
## 195                                                         Strongly Agree
## 196                                                         Strongly Agree
## 197                                                         Strongly Agree
## 198                                                         Strongly Agree
## 199                                                           Partly Agree
## 200                                                         Strongly Agree
## 201                                                           Partly Agree
## 202                                                           Partly Agree
## 203                                                         Quite Disagree
## 204                                                           Partly Agree
## 205                                                         Quite Disagree
## 206                                                         Quite Disagree
## 207                                                           Partly Agree
## 208                                                           Partly Agree
## 209                                                           Partly Agree
## 210                                                           Partly Agree
## 211                                                           Partly Agree
## 212                                                           Partly Agree
## 213                                                           Partly Agree
## 214                                                           Partly Agree
## 215                                                           Partly Agree
## 216                                                           Partly Agree
## 217                                                           Partly Agree
## 218                                                         Quite Disagree
## 219                                                           Partly Agree
## 220                                                           Partly Agree
## 221                                                         Quite Disagree
## 222                                                         Quite Disagree
## 223                                                           Partly Agree
## 224                                                           Partly Agree
## 225                                                         Quite Disagree
## 226                                                         Quite Disagree
## 227                                                         Strongly Agree
## 228                                                           Partly Agree
## 229                                                           Partly Agree
## 230                                                           Partly Agree
## 231                                                      Strongly Disagree
## 232                                                         Quite Disagree
## 233                                                           Partly Agree
## 234                                                           Partly Agree
## 235                                                           Partly Agree
## 236                                                         Strongly Agree
## 237                                                           Partly Agree
## 238                                                           Partly Agree
## 239                                                           Partly Agree
## 240                                                           Partly Agree
## 241                                                           Partly Agree
## 242                                                           Partly Agree
## 243                                                           Partly Agree
## 244                                                           Partly Agree
## 245                                                           Partly Agree
## 246                                                           Partly Agree
## 247                                                         Quite Disagree
## 248                                                           Partly Agree
## 249                                                           Partly Agree
## 250                                                           Partly Agree
## 251                                                         Quite Disagree
## 252                                                         Quite Disagree
## 253                                                         Strongly Agree
## 254                                                         Quite Disagree
## 255                                                         Quite Disagree
## 256                                                         Quite Disagree
## 257                                                         Quite Disagree
## 258                                                           Partly Agree
## 259                                                         Quite Disagree
## 260                                                      Strongly Disagree
## 261                                                         Strongly Agree
## 262                                                         Strongly Agree
## 263                                                         Quite Disagree
## 264                                                      Strongly Disagree
## 265                                                           Partly Agree
## 266                                                         Quite Disagree
## 267                                                         Strongly Agree
## 268                                                         Quite Disagree
## 269                                                         Strongly Agree
## 270                                                         Quite Disagree
## 271                                                         Quite Disagree
## 272                                                           Partly Agree
## 273                                                         Strongly Agree
## 274                                                         Strongly Agree
## 275                                                         Quite Disagree
## 276                                                         Quite Disagree
## 277                                                         Strongly Agree
## 278                                                         Quite Disagree
## 279                                                         Quite Disagree
## 280                                                           Partly Agree
## 281                                                      Strongly Disagree
## 282                                                      Strongly Disagree
## 283                                                      Strongly Disagree
## 284                                                         Quite Disagree
## 285                                                         Quite Disagree
## 286                                                      Strongly Disagree
## 287                                                         Quite Disagree
## 288                                                      Strongly Disagree
## 289                                                           Partly Agree
## 290                                                         Quite Disagree
## 291                                                      Strongly Disagree
## 292                                                         Quite Disagree
## 293                                                         Quite Disagree
## 294                                                         Quite Disagree
## 295                                                         Quite Disagree
## 296                                                         Quite Disagree
## 297                                                         Quite Disagree
## 298                                                         Quite Disagree
## 299                                                         Strongly Agree
## 300                                                         Quite Disagree
## 302                                                      Strongly Disagree
## 303                                                         Quite Disagree
## 304                                                           Partly Agree
## 305                                                         Quite Disagree
## 306                                                      Strongly Disagree
## 307                                                           Partly Agree
## 308                                                         Quite Disagree
## 309                                                      Strongly Disagree
## 310                                                         Quite Disagree
## 311                                                      Strongly Disagree
## 312                                                      Strongly Disagree
## 313                                                                   <NA>
## 314                                                         Strongly Agree
## 315                                                      Strongly Disagree
## 316                                                      Strongly Disagree
## 317                                                           Partly Agree
## 318                                                         Strongly Agree
## 319                                                           Partly Agree
## 320                                                      Strongly Disagree
## 321                                                      Strongly Disagree
## 322                                                      Strongly Disagree
## 323                                                         Quite Disagree
## 324                                                      Strongly Disagree
## 325                                                           Partly Agree
## 326                                                         Quite Disagree
## 327                                                         Quite Disagree
## 328                                                      Strongly Disagree
## 329                                                           Partly Agree
## 330                                                             Don't Know
## 331                                                         Quite Disagree
## 332                                                         Quite Disagree
## 333                                                      Strongly Disagree
## 334                                                         Quite Disagree
## 335                                                         Quite Disagree
## 336                                                      Strongly Disagree
## 337                                                         Quite Disagree
## 338                                                         Strongly Agree
## 339                                                           Partly Agree
## 340                                                      Strongly Disagree
## 341                                                         Quite Disagree
## 342                                                      Strongly Disagree
## 343                                                           Partly Agree
## 344                                                         Quite Disagree
## 345                                                           Partly Agree
## 346                                                      Strongly Disagree
## 347                                                         Quite Disagree
## 348                                                           Partly Agree
## 349                                                      Strongly Disagree
## 350                                                      Strongly Disagree
## 351                                                      Strongly Disagree
## 352                                                           Partly Agree
## 353                                                           Partly Agree
## 354                                                           Partly Agree
## 355                                                         Quite Disagree
## 356                                                         Quite Disagree
## 357                                                         Strongly Agree
## 358                                                         Quite Disagree
## 359                                                           Partly Agree
## 360                                                           Partly Agree
## 361                                                           Partly Agree
## 362                                                         Quite Disagree
## 363                                                           Partly Agree
## 364                                                         Quite Disagree
## 365                                                         Quite Disagree
## 366                                                         Quite Disagree
## 367                                                         Quite Disagree
## 368                                                         Quite Disagree
## 369                                                         Strongly Agree
## 370                                                         Quite Disagree
## 371                                                         Quite Disagree
## 372                                                         Quite Disagree
## 373                                                         Quite Disagree
## 374                                                         Quite Disagree
## 375                                                         Quite Disagree
## 376                                                           Partly Agree
## 377                                                         Quite Disagree
## 378                                                         Quite Disagree
## 379                                                           Partly Agree
## 380                                                         Quite Disagree
## 381                                                           Partly Agree
## 382                                                           Partly Agree
## 383                                                         Quite Disagree
## 384                                                           Partly Agree
## 385                                                         Quite Disagree
## 386                                                         Quite Disagree
## 387                                                         Quite Disagree
## 388                                                           Partly Agree
## 389                                                         Quite Disagree
## 390                                                         Quite Disagree
## 391                                                         Quite Disagree
## 392                                                           Partly Agree
## 393                                                           Partly Agree
## 394                                                           Partly Agree
## 395                                                         Quite Disagree
## 396                                                         Quite Disagree
## 397                                                           Partly Agree
## 398                                                           Partly Agree
## 399                                                           Partly Agree
## 400                                                         Quite Disagree
## 401                                                         Quite Disagree
## 402                                                         Strongly Agree
## 403                                                           Partly Agree
## 404                                                         Quite Disagree
## 405                                                         Quite Disagree
## 406                                                         Quite Disagree
## 407                                                           Partly Agree
## 408                                                         Quite Disagree
## 409                                                           Partly Agree
## 410                                                         Quite Disagree
## 411                                                           Partly Agree
## 412                                                           Partly Agree
## 413                                                           Partly Agree
## 414                                                           Partly Agree
## 415                                                           Partly Agree
## 416                                                           Partly Agree
## 417                                                           Partly Agree
## 418                                                             Don't Know
## 419                                                           Partly Agree
## 420                                                           Partly Agree
## 421                                                           Partly Agree
## 422                                                             Don't Know
## 423                                                         Strongly Agree
## 424                                                           Partly Agree
## 425                                                           Partly Agree
## 426                                                           Partly Agree
## 427                                                           Partly Agree
## 428                                                           Partly Agree
## 429                                                           Partly Agree
## 430                                                           Partly Agree
## 431                                                           Partly Agree
## 432                                                           Partly Agree
## 433                                                           Partly Agree
## 434                                                           Partly Agree
## 435                                                           Partly Agree
## 436                                                           Partly Agree
## 437                                                           Partly Agree
## 438                                                           Partly Agree
## 439                                                           Partly Agree
## 440                                                           Partly Agree
## 441                                                           Partly Agree
## 442                                                           Partly Agree
## 443                                                           Partly Agree
## 444                                                           Partly Agree
## 445                                                           Partly Agree
## 446                                                           Partly Agree
## 447                                                           Partly Agree
## 448                                                         Strongly Agree
## 449                                                           Partly Agree
## 450                                                           Partly Agree
## 451                                                           Partly Agree
## 452                                                           Partly Agree
## 453                                                           Partly Agree
## 454                                                           Partly Agree
## 455                                                         Quite Disagree
## 456                                                      Strongly Disagree
## 457                                                         Quite Disagree
## 458                                                      Strongly Disagree
## 459                                                      Strongly Disagree
## 460                                                         Quite Disagree
## 461                                                         Strongly Agree
## 462                                                      Strongly Disagree
## 463                                                           Partly Agree
## 464                                                      Strongly Disagree
## 465                                                      Strongly Disagree
## 466                                                         Quite Disagree
## 467                                                         Strongly Agree
## 468                                                      Strongly Disagree
## 469                                                         Strongly Agree
## 470                                                         Quite Disagree
## 471                                                         Quite Disagree
## 472                                                           Partly Agree
## 473                                                         Quite Disagree
## 474                                                         Quite Disagree
## 475                                                         Quite Disagree
## 476                                                         Strongly Agree
## 477                                                      Strongly Disagree
## 478                                                         Quite Disagree
## 479                                                           Partly Agree
## 480                                                         Strongly Agree
## 481                                                           Partly Agree
## 482                                                      Strongly Disagree
## 483                                                      Strongly Disagree
## 484                                                      Strongly Disagree
## 485                                                      Strongly Disagree
## 486                                                         Quite Disagree
## 487                                                                   <NA>
## 488                                                             Don't Know
## 489                                                         Quite Disagree
## 490                                                           Partly Agree
## 491                                                         Quite Disagree
## 492                                                                   <NA>
## 493                                                      Strongly Disagree
## 494                                                      Strongly Disagree
## 495                                                         Strongly Agree
## 496                                                           Partly Agree
##      Social.Relation.Everyone.should.follow.top.government.officials.like.head.of.family
## 1                                                                         Quite Disagree
## 2                                                                         Quite Disagree
## 3                                                                         Quite Disagree
## 4                                                                         Quite Disagree
## 5                                                                         Quite Disagree
## 6                                                                           Partly Agree
## 7                                                                           Partly Agree
## 8                                                                           Partly Agree
## 9                                                                         Strongly Agree
## 10                                                                          Partly Agree
## 11                                                                        Quite Disagree
## 12                                                                          Partly Agree
## 13                                                                        Quite Disagree
## 14                                                                        Quite Disagree
## 15                                                                        Quite Disagree
## 16                                                                          Partly Agree
## 17                                                                        Quite Disagree
## 18                                                                        Quite Disagree
## 19                                                                        Strongly Agree
## 20                                                                        Quite Disagree
## 21                                                                          Partly Agree
## 22                                                                     Strongly Disagree
## 23                                                                          Partly Agree
## 24                                                                        Quite Disagree
## 25                                                                          Partly Agree
## 26                                                                          Partly Agree
## 27                                                                          Partly Agree
## 28                                                                        Strongly Agree
## 29                                                                          Partly Agree
## 30                                                                        Quite Disagree
## 31                                                                          Partly Agree
## 32                                                                          Partly Agree
## 33                                                                        Quite Disagree
## 34                                                                        Quite Disagree
## 35                                                                          Partly Agree
## 36                                                                          Partly Agree
## 37                                                                     Strongly Disagree
## 38                                                                        Quite Disagree
## 39                                                                          Partly Agree
## 40                                                                        Quite Disagree
## 41                                                                        Quite Disagree
## 42                                                                        Quite Disagree
## 43                                                                          Partly Agree
## 44                                                                        Quite Disagree
## 45                                                                          Partly Agree
## 46                                                                     Strongly Disagree
## 47                                                                          Partly Agree
## 48                                                                          Partly Agree
## 49                                                                        Quite Disagree
## 50                                                                        Quite Disagree
## 51                                                                        Quite Disagree
## 52                                                                            Don't Know
## 53                                                                        Quite Disagree
## 54                                                                        Quite Disagree
## 55                                                                        Quite Disagree
## 56                                                                        Quite Disagree
## 57                                                                          Partly Agree
## 58                                                                        Quite Disagree
## 59                                                                        Quite Disagree
## 60                                                                          Partly Agree
## 61                                                                        Quite Disagree
## 62                                                                     Strongly Disagree
## 63                                                                     Strongly Disagree
## 64                                                                        Quite Disagree
## 65                                                                        Quite Disagree
## 66                                                                        Quite Disagree
## 67                                                                     Strongly Disagree
## 68                                                                        Quite Disagree
## 69                                                                        Quite Disagree
## 70                                                                        Quite Disagree
## 71                                                                        Quite Disagree
## 72                                                                        Quite Disagree
## 73                                                                        Quite Disagree
## 74                                                                        Quite Disagree
## 75                                                                        Quite Disagree
## 76                                                                        Quite Disagree
## 77                                                                        Quite Disagree
## 78                                                                        Quite Disagree
## 79                                                                        Quite Disagree
## 80                                                                        Quite Disagree
## 81                                                                        Quite Disagree
## 82                                                                        Quite Disagree
## 83                                                                        Quite Disagree
## 84                                                                        Quite Disagree
## 85                                                                        Quite Disagree
## 86                                                                        Quite Disagree
## 87                                                                        Quite Disagree
## 88                                                                        Quite Disagree
## 89                                                                          Partly Agree
## 90                                                                          Partly Agree
## 91                                                                          Partly Agree
## 92                                                                        Quite Disagree
## 93                                                                          Partly Agree
## 94                                                                          Partly Agree
## 95                                                                        Quite Disagree
## 96                                                                        Quite Disagree
## 97                                                                        Quite Disagree
## 98                                                                        Quite Disagree
## 99                                                                        Quite Disagree
## 100                                                                         Partly Agree
## 101                                                                       Quite Disagree
## 102                                                                       Strongly Agree
## 103                                                                       Strongly Agree
## 104                                                                       Quite Disagree
## 105                                                                       Quite Disagree
## 106                                                                    Strongly Disagree
## 107                                                                       Quite Disagree
## 108                                                                         Partly Agree
## 109                                                                         Partly Agree
## 110                                                                           Don't Know
## 111                                                                                 <NA>
## 112                                                                         Partly Agree
## 113                                                                       Quite Disagree
## 114                                                                         Partly Agree
## 115                                                                       Quite Disagree
## 116                                                                       Strongly Agree
## 117                                                                       Quite Disagree
## 118                                                                         Partly Agree
## 119                                                                         Partly Agree
## 120                                                                         Partly Agree
## 121                                                                       Quite Disagree
## 122                                                                       Quite Disagree
## 123                                                                         Partly Agree
## 124                                                                       Quite Disagree
## 125                                                                       Quite Disagree
## 126                                                                         Partly Agree
## 127                                                                         Partly Agree
## 128                                                                       Quite Disagree
## 129                                                                       Strongly Agree
## 130                                                                       Quite Disagree
## 131                                                                       Quite Disagree
## 132                                                                       Quite Disagree
## 133                                                                       Quite Disagree
## 134                                                                         Partly Agree
## 135                                                                         Partly Agree
## 136                                                                         Partly Agree
## 137                                                                    Strongly Disagree
## 138                                                                         Partly Agree
## 139                                                                       Quite Disagree
## 140                                                                         Partly Agree
## 141                                                                    Strongly Disagree
## 142                                                                         Partly Agree
## 143                                                                         Partly Agree
## 144                                                                    Strongly Disagree
## 145                                                                         Partly Agree
## 146                                                                       Quite Disagree
## 147                                                                    Strongly Disagree
## 148                                                                    Strongly Disagree
## 149                                                                       Quite Disagree
## 150                                                                    Strongly Disagree
## 151                                                                       Strongly Agree
## 152                                                                       Quite Disagree
## 153                                                                       Strongly Agree
## 154                                                                       Strongly Agree
## 155                                                                       Quite Disagree
## 156                                                                       Strongly Agree
## 157                                                                       Strongly Agree
## 158                                                                    Strongly Disagree
## 159                                                                         Partly Agree
## 160                                                                       Strongly Agree
## 161                                                                       Quite Disagree
## 162                                                                         Partly Agree
## 163                                                                       Strongly Agree
## 164                                                                       Strongly Agree
## 165                                                                    Strongly Disagree
## 166                                                                       Strongly Agree
## 167                                                                    Strongly Disagree
## 168                                                                       Strongly Agree
## 169                                                                       Strongly Agree
## 170                                                                       Strongly Agree
## 171                                                                       Strongly Agree
## 172                                                                       Strongly Agree
## 173                                                                       Strongly Agree
## 174                                                                       Strongly Agree
## 175                                                                       Strongly Agree
## 176                                                                       Strongly Agree
## 177                                                                       Strongly Agree
## 178                                                                       Strongly Agree
## 179                                                                       Strongly Agree
## 180                                                                       Strongly Agree
## 181                                                                       Strongly Agree
## 182                                                                       Strongly Agree
## 183                                                                       Strongly Agree
## 184                                                                       Strongly Agree
## 185                                                                       Strongly Agree
## 186                                                                       Strongly Agree
## 187                                                                       Strongly Agree
## 188                                                                       Strongly Agree
## 189                                                                       Strongly Agree
## 190                                                                       Strongly Agree
## 191                                                                       Strongly Agree
## 192                                                                       Strongly Agree
## 193                                                                       Strongly Agree
## 194                                                                       Strongly Agree
## 195                                                                       Strongly Agree
## 196                                                                       Strongly Agree
## 197                                                                       Strongly Agree
## 198                                                                       Strongly Agree
## 199                                                                         Partly Agree
## 200                                                                       Strongly Agree
## 201                                                                       Quite Disagree
## 202                                                                         Partly Agree
## 203                                                                         Partly Agree
## 204                                                                       Quite Disagree
## 205                                                                       Quite Disagree
## 206                                                                         Partly Agree
## 207                                                                       Quite Disagree
## 208                                                                       Quite Disagree
## 209                                                                       Quite Disagree
## 210                                                                       Quite Disagree
## 211                                                                         Partly Agree
## 212                                                                         Partly Agree
## 213                                                                         Partly Agree
## 214                                                                         Partly Agree
## 215                                                                         Partly Agree
## 216                                                                         Partly Agree
## 217                                                                         Partly Agree
## 218                                                                       Quite Disagree
## 219                                                                       Quite Disagree
## 220                                                                       Strongly Agree
## 221                                                                    Strongly Disagree
## 222                                                                         Partly Agree
## 223                                                                       Quite Disagree
## 224                                                                       Quite Disagree
## 225                                                                         Partly Agree
## 226                                                                         Partly Agree
## 227                                                                         Partly Agree
## 228                                                                       Quite Disagree
## 229                                                                       Quite Disagree
## 230                                                                       Strongly Agree
## 231                                                                         Partly Agree
## 232                                                                       Quite Disagree
## 233                                                                       Quite Disagree
## 234                                                                         Partly Agree
## 235                                                                       Quite Disagree
## 236                                                                       Quite Disagree
## 237                                                                       Quite Disagree
## 238                                                                       Quite Disagree
## 239                                                                       Quite Disagree
## 240                                                                       Quite Disagree
## 241                                                                       Quite Disagree
## 242                                                                       Quite Disagree
## 243                                                                       Quite Disagree
## 244                                                                       Quite Disagree
## 245                                                                       Strongly Agree
## 246                                                                       Strongly Agree
## 247                                                                         Partly Agree
## 248                                                                       Strongly Agree
## 249                                                                         Partly Agree
## 250                                                                       Strongly Agree
## 251                                                                         Partly Agree
## 252                                                                         Partly Agree
## 253                                                                       Quite Disagree
## 254                                                                         Partly Agree
## 255                                                                         Partly Agree
## 256                                                                         Partly Agree
## 257                                                                    Strongly Disagree
## 258                                                                         Partly Agree
## 259                                                                    Strongly Disagree
## 260                                                                       Quite Disagree
## 261                                                                         Partly Agree
## 262                                                                         Partly Agree
## 263                                                                         Partly Agree
## 264                                                                         Partly Agree
## 265                                                                         Partly Agree
## 266                                                                    Strongly Disagree
## 267                                                                       Quite Disagree
## 268                                                                         Partly Agree
## 269                                                                         Partly Agree
## 270                                                                       Quite Disagree
## 271                                                                       Strongly Agree
## 272                                                                         Partly Agree
## 273                                                                       Strongly Agree
## 274                                                                         Partly Agree
## 275                                                                         Partly Agree
## 276                                                                    Strongly Disagree
## 277                                                                       Strongly Agree
## 278                                                                       Quite Disagree
## 279                                                                    Strongly Disagree
## 280                                                                         Partly Agree
## 281                                                                       Quite Disagree
## 282                                                                         Partly Agree
## 283                                                                       Quite Disagree
## 284                                                                       Quite Disagree
## 285                                                                         Partly Agree
## 286                                                                         Partly Agree
## 287                                                                    Strongly Disagree
## 288                                                                       Quite Disagree
## 289                                                                         Partly Agree
## 290                                                                         Partly Agree
## 291                                                                       Quite Disagree
## 292                                                                           Don't Know
## 293                                                                         Partly Agree
## 294                                                                         Partly Agree
## 295                                                                       Strongly Agree
## 296                                                                         Partly Agree
## 297                                                                         Partly Agree
## 298                                                                         Partly Agree
## 299                                                                       Strongly Agree
## 300                                                                         Partly Agree
## 302                                                                         Partly Agree
## 303                                                                       Quite Disagree
## 304                                                                    Strongly Disagree
## 305                                                                         Partly Agree
## 306                                                                         Partly Agree
## 307                                                                       Quite Disagree
## 308                                                                       Quite Disagree
## 309                                                                    Strongly Disagree
## 310                                                                       Quite Disagree
## 311                                                                         Partly Agree
## 312                                                                         Partly Agree
## 313                                                                                 <NA>
## 314                                                                       Quite Disagree
## 315                                                                         Partly Agree
## 316                                                                       Strongly Agree
## 317                                                                    Strongly Disagree
## 318                                                                       Strongly Agree
## 319                                                                       Quite Disagree
## 320                                                                       Quite Disagree
## 321                                                                         Partly Agree
## 322                                                                    Strongly Disagree
## 323                                                                       Quite Disagree
## 324                                                                    Strongly Disagree
## 325                                                                         Partly Agree
## 326                                                                       Quite Disagree
## 327                                                                       Quite Disagree
## 328                                                                       Quite Disagree
## 329                                                                       Quite Disagree
## 330                                                                       Strongly Agree
## 331                                                                         Partly Agree
## 332                                                                         Partly Agree
## 333                                                                       Quite Disagree
## 334                                                                         Partly Agree
## 335                                                                         Partly Agree
## 336                                                                       Quite Disagree
## 337                                                                         Partly Agree
## 338                                                                       Strongly Agree
## 339                                                                         Partly Agree
## 340                                                                       Quite Disagree
## 341                                                                         Partly Agree
## 342                                                                         Partly Agree
## 343                                                                       Quite Disagree
## 344                                                                    Strongly Disagree
## 345                                                                         Partly Agree
## 346                                                                         Partly Agree
## 347                                                                       Quite Disagree
## 348                                                                         Partly Agree
## 349                                                                         Partly Agree
## 350                                                                         Partly Agree
## 351                                                                       Quite Disagree
## 352                                                                         Partly Agree
## 353                                                                         Partly Agree
## 354                                                                         Partly Agree
## 355                                                                       Quite Disagree
## 356                                                                       Quite Disagree
## 357                                                                         Partly Agree
## 358                                                                         Partly Agree
## 359                                                                         Partly Agree
## 360                                                                         Partly Agree
## 361                                                                         Partly Agree
## 362                                                                       Quite Disagree
## 363                                                                       Quite Disagree
## 364                                                                         Partly Agree
## 365                                                                       Quite Disagree
## 366                                                                         Partly Agree
## 367                                                                         Partly Agree
## 368                                                                       Quite Disagree
## 369                                                                       Quite Disagree
## 370                                                                       Quite Disagree
## 371                                                                       Quite Disagree
## 372                                                                         Partly Agree
## 373                                                                       Quite Disagree
## 374                                                                         Partly Agree
## 375                                                                         Partly Agree
## 376                                                                         Partly Agree
## 377                                                                         Partly Agree
## 378                                                                         Partly Agree
## 379                                                                         Partly Agree
## 380                                                                       Quite Disagree
## 381                                                                         Partly Agree
## 382                                                                         Partly Agree
## 383                                                                       Quite Disagree
## 384                                                                         Partly Agree
## 385                                                                       Quite Disagree
## 386                                                                         Partly Agree
## 387                                                                         Partly Agree
## 388                                                                         Partly Agree
## 389                                                                         Partly Agree
## 390                                                                       Quite Disagree
## 391                                                                         Partly Agree
## 392                                                                       Quite Disagree
## 393                                                                         Partly Agree
## 394                                                                         Partly Agree
## 395                                                                       Quite Disagree
## 396                                                                       Quite Disagree
## 397                                                                         Partly Agree
## 398                                                                         Partly Agree
## 399                                                                         Partly Agree
## 400                                                                         Partly Agree
## 401                                                                       Quite Disagree
## 402                                                                           Don't Know
## 403                                                                         Partly Agree
## 404                                                                         Partly Agree
## 405                                                                       Quite Disagree
## 406                                                                         Partly Agree
## 407                                                                           Don't Know
## 408                                                                       Quite Disagree
## 409                                                                       Quite Disagree
## 410                                                                       Quite Disagree
## 411                                                                         Partly Agree
## 412                                                                         Partly Agree
## 413                                                                         Partly Agree
## 414                                                                         Partly Agree
## 415                                                                           Don't Know
## 416                                                                       Quite Disagree
## 417                                                                         Partly Agree
## 418                                                                           Don't Know
## 419                                                                           Don't Know
## 420                                                                         Partly Agree
## 421                                                                         Partly Agree
## 422                                                                           Don't Know
## 423                                                                         Partly Agree
## 424                                                                       Quite Disagree
## 425                                                                         Partly Agree
## 426                                                                         Partly Agree
## 427                                                                       Strongly Agree
## 428                                                                           Don't Know
## 429                                                                         Partly Agree
## 430                                                                         Partly Agree
## 431                                                                         Partly Agree
## 432                                                                           Don't Know
## 433                                                                         Partly Agree
## 434                                                                         Partly Agree
## 435                                                                         Partly Agree
## 436                                                                         Partly Agree
## 437                                                                       Strongly Agree
## 438                                                                         Partly Agree
## 439                                                                       Strongly Agree
## 440                                                                         Partly Agree
## 441                                                                         Partly Agree
## 442                                                                         Partly Agree
## 443                                                                         Partly Agree
## 444                                                                         Partly Agree
## 445                                                                       Strongly Agree
## 446                                                                         Partly Agree
## 447                                                                         Partly Agree
## 448                                                                         Partly Agree
## 449                                                                         Partly Agree
## 450                                                                         Partly Agree
## 451                                                                         Partly Agree
## 452                                                                         Partly Agree
## 453                                                                         Partly Agree
## 454                                                                         Partly Agree
## 455                                                                         Partly Agree
## 456                                                                    Strongly Disagree
## 457                                                                       Quite Disagree
## 458                                                                    Strongly Disagree
## 459                                                                       Quite Disagree
## 460                                                                    Strongly Disagree
## 461                                                                           Don't Know
## 462                                                                       Quite Disagree
## 463                                                                           Don't Know
## 464                                                                         Partly Agree
## 465                                                                       Strongly Agree
## 466                                                                         Partly Agree
## 467                                                                       Strongly Agree
## 468                                                                         Partly Agree
## 469                                                                         Partly Agree
## 470                                                                       Strongly Agree
## 471                                                                    Strongly Disagree
## 472                                                                       Quite Disagree
## 473                                                                           Don't Know
## 474                                                                    Strongly Disagree
## 475                                                                    Strongly Disagree
## 476                                                                           Don't Know
## 477                                                                    Strongly Disagree
## 478                                                                    Strongly Disagree
## 479                                                                           Don't Know
## 480                                                                           Don't Know
## 481                                                                    Strongly Disagree
## 482                                                                    Strongly Disagree
## 483                                                                    Strongly Disagree
## 484                                                                         Partly Agree
## 485                                                                         Partly Agree
## 486                                                                         Partly Agree
## 487                                                                         Partly Agree
## 488                                                                           Don't Know
## 489                                                                         Partly Agree
## 490                                                                       Strongly Agree
## 491                                                                         Partly Agree
## 492                                                                         Partly Agree
## 493                                                                    Strongly Disagree
## 494                                                                    Strongly Disagree
## 495                                                                       Quite Disagree
## 496                                                                    Strongly Disagree
##      Social.Relation..People.with.power..money.and.high.family.status.should.be.respected
## 1                                                                          Quite Disagree
## 2                                                                          Quite Disagree
## 3                                                                       Strongly Disagree
## 4                                                                       Strongly Disagree
## 5                                                                          Strongly Agree
## 6                                                                            Partly Agree
## 7                                                                          Strongly Agree
## 8                                                                            Partly Agree
## 9                                                                            Partly Agree
## 10                                                                         Quite Disagree
## 11                                                                           Partly Agree
## 12                                                                      Strongly Disagree
## 13                                                                      Strongly Disagree
## 14                                                                      Strongly Disagree
## 15                                                                      Strongly Disagree
## 16                                                                         Quite Disagree
## 17                                                                         Quite Disagree
## 18                                                                         Quite Disagree
## 19                                                                         Quite Disagree
## 20                                                                         Quite Disagree
## 21                                                                           Partly Agree
## 22                                                                      Strongly Disagree
## 23                                                                         Strongly Agree
## 24                                                                           Partly Agree
## 25                                                                           Partly Agree
## 26                                                                           Partly Agree
## 27                                                                         Quite Disagree
## 28                                                                         Strongly Agree
## 29                                                                         Quite Disagree
## 30                                                                         Quite Disagree
## 31                                                                           Partly Agree
## 32                                                                           Partly Agree
## 33                                                                         Strongly Agree
## 34                                                                           Partly Agree
## 35                                                                      Strongly Disagree
## 36                                                                         Quite Disagree
## 37                                                                      Strongly Disagree
## 38                                                                         Quite Disagree
## 39                                                                         Quite Disagree
## 40                                                                      Strongly Disagree
## 41                                                                      Strongly Disagree
## 42                                                                         Quite Disagree
## 43                                                                           Partly Agree
## 44                                                                         Quite Disagree
## 45                                                                         Quite Disagree
## 46                                                                      Strongly Disagree
## 47                                                                         Quite Disagree
## 48                                                                         Quite Disagree
## 49                                                                         Quite Disagree
## 50                                                                           Partly Agree
## 51                                                                           Partly Agree
## 52                                                                         Quite Disagree
## 53                                                                         Quite Disagree
## 54                                                                         Quite Disagree
## 55                                                                      Strongly Disagree
## 56                                                                           Partly Agree
## 57                                                                         Quite Disagree
## 58                                                                           Partly Agree
## 59                                                                           Partly Agree
## 60                                                                           Partly Agree
## 61                                                                         Quite Disagree
## 62                                                                      Strongly Disagree
## 63                                                                         Quite Disagree
## 64                                                                         Quite Disagree
## 65                                                                      Strongly Disagree
## 66                                                                      Strongly Disagree
## 67                                                                         Quite Disagree
## 68                                                                         Quite Disagree
## 69                                                                         Quite Disagree
## 70                                                                         Strongly Agree
## 71                                                                      Strongly Disagree
## 72                                                                         Quite Disagree
## 73                                                                         Quite Disagree
## 74                                                                         Quite Disagree
## 75                                                                         Quite Disagree
## 76                                                                         Quite Disagree
## 77                                                                         Quite Disagree
## 78                                                                           Partly Agree
## 79                                                                         Quite Disagree
## 80                                                                         Quite Disagree
## 81                                                                         Quite Disagree
## 82                                                                           Partly Agree
## 83                                                                      Strongly Disagree
## 84                                                                      Strongly Disagree
## 85                                                                         Quite Disagree
## 86                                                                           Partly Agree
## 87                                                                         Quite Disagree
## 88                                                                         Quite Disagree
## 89                                                                         Strongly Agree
## 90                                                                         Quite Disagree
## 91                                                                           Partly Agree
## 92                                                                           Partly Agree
## 93                                                                           Partly Agree
## 94                                                                         Quite Disagree
## 95                                                                         Quite Disagree
## 96                                                                         Quite Disagree
## 97                                                                      Strongly Disagree
## 98                                                                         Quite Disagree
## 99                                                                         Quite Disagree
## 100                                                                          Partly Agree
## 101                                                                          Partly Agree
## 102                                                                        Strongly Agree
## 103                                                                        Quite Disagree
## 104                                                                          Partly Agree
## 105                                                                        Quite Disagree
## 106                                                                        Quite Disagree
## 107                                                                     Strongly Disagree
## 108                                                                        Quite Disagree
## 109                                                                          Partly Agree
## 110                                                                            Don't Know
## 111                                                                                  <NA>
## 112                                                                          Partly Agree
## 113                                                                          Partly Agree
## 114                                                                          Partly Agree
## 115                                                                          Partly Agree
## 116                                                                        Strongly Agree
## 117                                                                          Partly Agree
## 118                                                                          Partly Agree
## 119                                                                          Partly Agree
## 120                                                                          Partly Agree
## 121                                                                          Partly Agree
## 122                                                                          Partly Agree
## 123                                                                        Strongly Agree
## 124                                                                          Partly Agree
## 125                                                                     Strongly Disagree
## 126                                                                        Strongly Agree
## 127                                                                          Partly Agree
## 128                                                                        Strongly Agree
## 129                                                                        Strongly Agree
## 130                                                                     Strongly Disagree
## 131                                                                          Partly Agree
## 132                                                                          Partly Agree
## 133                                                                          Partly Agree
## 134                                                                          Partly Agree
## 135                                                                            Don't Know
## 136                                                                          Partly Agree
## 137                                                                     Strongly Disagree
## 138                                                                        Quite Disagree
## 139                                                                          Partly Agree
## 140                                                                        Quite Disagree
## 141                                                                        Quite Disagree
## 142                                                                          Partly Agree
## 143                                                                          Partly Agree
## 144                                                                     Strongly Disagree
## 145                                                                          Partly Agree
## 146                                                                        Quite Disagree
## 147                                                                     Strongly Disagree
## 148                                                                     Strongly Disagree
## 149                                                                        Quite Disagree
## 150                                                                          Partly Agree
## 151                                                                        Strongly Agree
## 152                                                                        Quite Disagree
## 153                                                                        Strongly Agree
## 154                                                                        Strongly Agree
## 155                                                                          Partly Agree
## 156                                                                        Strongly Agree
## 157                                                                        Strongly Agree
## 158                                                                     Strongly Disagree
## 159                                                                          Partly Agree
## 160                                                                        Strongly Agree
## 161                                                                        Quite Disagree
## 162                                                                        Strongly Agree
## 163                                                                        Strongly Agree
## 164                                                                        Strongly Agree
## 165                                                                     Strongly Disagree
## 166                                                                        Strongly Agree
## 167                                                                     Strongly Disagree
## 168                                                                        Strongly Agree
## 169                                                                        Strongly Agree
## 170                                                                        Strongly Agree
## 171                                                                        Strongly Agree
## 172                                                                        Strongly Agree
## 173                                                                        Strongly Agree
## 174                                                                        Strongly Agree
## 175                                                                        Strongly Agree
## 176                                                                        Strongly Agree
## 177                                                                        Strongly Agree
## 178                                                                        Strongly Agree
## 179                                                                        Strongly Agree
## 180                                                                          Partly Agree
## 181                                                                        Strongly Agree
## 182                                                                        Strongly Agree
## 183                                                                        Strongly Agree
## 184                                                                        Strongly Agree
## 185                                                                        Strongly Agree
## 186                                                                        Strongly Agree
## 187                                                                        Strongly Agree
## 188                                                                        Strongly Agree
## 189                                                                        Strongly Agree
## 190                                                                        Strongly Agree
## 191                                                                        Strongly Agree
## 192                                                                        Strongly Agree
## 193                                                                        Strongly Agree
## 194                                                                        Strongly Agree
## 195                                                                        Strongly Agree
## 196                                                                        Strongly Agree
## 197                                                                        Strongly Agree
## 198                                                                        Strongly Agree
## 199                                                                          Partly Agree
## 200                                                                        Strongly Agree
## 201                                                                          Partly Agree
## 202                                                                        Quite Disagree
## 203                                                                        Quite Disagree
## 204                                                                          Partly Agree
## 205                                                                          Partly Agree
## 206                                                                          Partly Agree
## 207                                                                          Partly Agree
## 208                                                                          Partly Agree
## 209                                                                        Quite Disagree
## 210                                                                          Partly Agree
## 211                                                                        Quite Disagree
## 212                                                                        Quite Disagree
## 213                                                                        Quite Disagree
## 214                                                                        Quite Disagree
## 215                                                                        Quite Disagree
## 216                                                                        Quite Disagree
## 217                                                                        Quite Disagree
## 218                                                                     Strongly Disagree
## 219                                                                     Strongly Disagree
## 220                                                                          Partly Agree
## 221                                                                          Partly Agree
## 222                                                                        Quite Disagree
## 223                                                                          Partly Agree
## 224                                                                          Partly Agree
## 225                                                                          Partly Agree
## 226                                                                        Quite Disagree
## 227                                                                          Partly Agree
## 228                                                                          Partly Agree
## 229                                                                          Partly Agree
## 230                                                                        Quite Disagree
## 231                                                                          Partly Agree
## 232                                                                     Strongly Disagree
## 233                                                                        Quite Disagree
## 234                                                                        Quite Disagree
## 235                                                                        Quite Disagree
## 236                                                                          Partly Agree
## 237                                                                        Strongly Agree
## 238                                                                        Strongly Agree
## 239                                                                        Quite Disagree
## 240                                                                        Quite Disagree
## 241                                                                        Quite Disagree
## 242                                                                        Quite Disagree
## 243                                                                        Quite Disagree
## 244                                                                        Quite Disagree
## 245                                                                          Partly Agree
## 246                                                                          Partly Agree
## 247                                                                        Quite Disagree
## 248                                                                        Strongly Agree
## 249                                                                        Strongly Agree
## 250                                                                        Strongly Agree
## 251                                                                        Quite Disagree
## 252                                                                        Quite Disagree
## 253                                                                        Quite Disagree
## 254                                                                        Quite Disagree
## 255                                                                        Quite Disagree
## 256                                                                          Partly Agree
## 257                                                                     Strongly Disagree
## 258                                                                          Partly Agree
## 259                                                                        Strongly Agree
## 260                                                                        Quite Disagree
## 261                                                                          Partly Agree
## 262                                                                        Quite Disagree
## 263                                                                        Quite Disagree
## 264                                                                        Quite Disagree
## 265                                                                        Quite Disagree
## 266                                                                     Strongly Disagree
## 267                                                                        Quite Disagree
## 268                                                                        Quite Disagree
## 269                                                                        Strongly Agree
## 270                                                                     Strongly Disagree
## 271                                                                        Strongly Agree
## 272                                                                          Partly Agree
## 273                                                                          Partly Agree
## 274                                                                        Quite Disagree
## 275                                                                     Strongly Disagree
## 276                                                                        Quite Disagree
## 277                                                                        Strongly Agree
## 278                                                                        Quite Disagree
## 279                                                                     Strongly Disagree
## 280                                                                          Partly Agree
## 281                                                                     Strongly Disagree
## 282                                                                     Strongly Disagree
## 283                                                                     Strongly Disagree
## 284                                                                          Partly Agree
## 285                                                                        Quite Disagree
## 286                                                                     Strongly Disagree
## 287                                                                        Quite Disagree
## 288                                                                     Strongly Disagree
## 289                                                                        Quite Disagree
## 290                                                                        Quite Disagree
## 291                                                                        Quite Disagree
## 292                                                                          Partly Agree
## 293                                                                        Quite Disagree
## 294                                                                        Quite Disagree
## 295                                                                        Strongly Agree
## 296                                                                        Strongly Agree
## 297                                                                        Quite Disagree
## 298                                                                        Quite Disagree
## 299                                                                        Strongly Agree
## 300                                                                        Quite Disagree
## 302                                                                     Strongly Disagree
## 303                                                                        Quite Disagree
## 304                                                                     Strongly Disagree
## 305                                                                        Quite Disagree
## 306                                                                     Strongly Disagree
## 307                                                                        Quite Disagree
## 308                                                                        Quite Disagree
## 309                                                                     Strongly Disagree
## 310                                                                     Strongly Disagree
## 311                                                                          Partly Agree
## 312                                                                          Partly Agree
## 313                                                                                  <NA>
## 314                                                                        Quite Disagree
## 315                                                                          Partly Agree
## 316                                                                          Partly Agree
## 317                                                                     Strongly Disagree
## 318                                                                        Strongly Agree
## 319                                                                        Quite Disagree
## 320                                                                     Strongly Disagree
## 321                                                                          Partly Agree
## 322                                                                     Strongly Disagree
## 323                                                                        Quite Disagree
## 324                                                                     Strongly Disagree
## 325                                                                          Partly Agree
## 326                                                                        Quite Disagree
## 327                                                                        Quite Disagree
## 328                                                                     Strongly Disagree
## 329                                                                          Partly Agree
## 330                                                                          Partly Agree
## 331                                                                        Strongly Agree
## 332                                                                        Strongly Agree
## 333                                                                          Partly Agree
## 334                                                                        Strongly Agree
## 335                                                                        Quite Disagree
## 336                                                                          Partly Agree
## 337                                                                        Quite Disagree
## 338                                                                        Strongly Agree
## 339                                                                     Strongly Disagree
## 340                                                                        Quite Disagree
## 341                                                                     Strongly Disagree
## 342                                                                          Partly Agree
## 343                                                                     Strongly Disagree
## 344                                                                        Quite Disagree
## 345                                                                            Don't Know
## 346                                                                     Strongly Disagree
## 347                                                                          Partly Agree
## 348                                                                          Partly Agree
## 349                                                                        Quite Disagree
## 350                                                                        Quite Disagree
## 351                                                                     Strongly Disagree
## 352                                                                          Partly Agree
## 353                                                                          Partly Agree
## 354                                                                          Partly Agree
## 355                                                                        Quite Disagree
## 356                                                                        Quite Disagree
## 357                                                                          Partly Agree
## 358                                                                        Quite Disagree
## 359                                                                          Partly Agree
## 360                                                                        Strongly Agree
## 361                                                                        Quite Disagree
## 362                                                                        Quite Disagree
## 363                                                                     Strongly Disagree
## 364                                                                        Quite Disagree
## 365                                                                        Quite Disagree
## 366                                                                        Quite Disagree
## 367                                                                        Quite Disagree
## 368                                                                        Quite Disagree
## 369                                                                        Quite Disagree
## 370                                                                        Quite Disagree
## 371                                                                        Quite Disagree
## 372                                                                        Quite Disagree
## 373                                                                        Quite Disagree
## 374                                                                     Strongly Disagree
## 375                                                                          Partly Agree
## 376                                                                          Partly Agree
## 377                                                                        Quite Disagree
## 378                                                                        Quite Disagree
## 379                                                                        Quite Disagree
## 380                                                                        Quite Disagree
## 381                                                                          Partly Agree
## 382                                                                          Partly Agree
## 383                                                                        Quite Disagree
## 384                                                                        Quite Disagree
## 385                                                                        Quite Disagree
## 386                                                                        Quite Disagree
## 387                                                                        Quite Disagree
## 388                                                                        Quite Disagree
## 389                                                                        Quite Disagree
## 390                                                                        Quite Disagree
## 391                                                                        Quite Disagree
## 392                                                                        Quite Disagree
## 393                                                                        Quite Disagree
## 394                                                                        Quite Disagree
## 395                                                                        Quite Disagree
## 396                                                                        Quite Disagree
## 397                                                                        Quite Disagree
## 398                                                                        Quite Disagree
## 399                                                                        Quite Disagree
## 400                                                                        Quite Disagree
## 401                                                                        Quite Disagree
## 402                                                                            Don't Know
## 403                                                                        Strongly Agree
## 404                                                                          Partly Agree
## 405                                                                        Quite Disagree
## 406                                                                          Partly Agree
## 407                                                                            Don't Know
## 408                                                                        Strongly Agree
## 409                                                                          Partly Agree
## 410                                                                          Partly Agree
## 411                                                                        Quite Disagree
## 412                                                                          Partly Agree
## 413                                                                        Strongly Agree
## 414                                                                          Partly Agree
## 415                                                                            Don't Know
## 416                                                                            Don't Know
## 417                                                                            Don't Know
## 418                                                                            Don't Know
## 419                                                                            Don't Know
## 420                                                                          Partly Agree
## 421                                                                        Strongly Agree
## 422                                                                            Don't Know
## 423                                                                        Strongly Agree
## 424                                                                        Strongly Agree
## 425                                                                        Strongly Agree
## 426                                                                        Strongly Agree
## 427                                                                        Strongly Agree
## 428                                                                            Don't Know
## 429                                                                          Partly Agree
## 430                                                                          Partly Agree
## 431                                                                          Partly Agree
## 432                                                                            Don't Know
## 433                                                                        Strongly Agree
## 434                                                                          Partly Agree
## 435                                                                          Partly Agree
## 436                                                                          Partly Agree
## 437                                                                        Strongly Agree
## 438                                                                          Partly Agree
## 439                                                                        Strongly Agree
## 440                                                                          Partly Agree
## 441                                                                        Strongly Agree
## 442                                                                          Partly Agree
## 443                                                                        Strongly Agree
## 444                                                                        Strongly Agree
## 445                                                                        Strongly Agree
## 446                                                                          Partly Agree
## 447                                                                          Partly Agree
## 448                                                                        Strongly Agree
## 449                                                                        Strongly Agree
## 450                                                                          Partly Agree
## 451                                                                        Strongly Agree
## 452                                                                        Strongly Agree
## 453                                                                          Partly Agree
## 454                                                                     Strongly Disagree
## 455                                                                     Strongly Disagree
## 456                                                                     Strongly Disagree
## 457                                                                     Strongly Disagree
## 458                                                                     Strongly Disagree
## 459                                                                     Strongly Disagree
## 460                                                                        Quite Disagree
## 461                                                                        Quite Disagree
## 462                                                                     Strongly Disagree
## 463                                                                          Partly Agree
## 464                                                                     Strongly Disagree
## 465                                                                        Quite Disagree
## 466                                                                     Strongly Disagree
## 467                                                                     Strongly Disagree
## 468                                                                        Quite Disagree
## 469                                                                     Strongly Disagree
## 470                                                                          Partly Agree
## 471                                                                          Partly Agree
## 472                                                                     Strongly Disagree
## 473                                                                     Strongly Disagree
## 474                                                                     Strongly Disagree
## 475                                                                     Strongly Disagree
## 476                                                                            Don't Know
## 477                                                                     Strongly Disagree
## 478                                                                     Strongly Disagree
## 479                                                                            Don't Know
## 480                                                                            Don't Know
## 481                                                                     Strongly Disagree
## 482                                                                     Strongly Disagree
## 483                                                                     Strongly Disagree
## 484                                                                     Strongly Disagree
## 485                                                                        Quite Disagree
## 486                                                                        Quite Disagree
## 487                                                                                  <NA>
## 488                                                                            Don't Know
## 489                                                                        Quite Disagree
## 490                                                                     Strongly Disagree
## 491                                                                     Strongly Disagree
## 492                                                                        Quite Disagree
## 493                                                                     Strongly Disagree
## 494                                                                     Strongly Disagree
## 495                                                                          Partly Agree
## 496                                                                        Strongly Agree
##       Confidence.in..Parliament Confidence.in..Central.Government
## 1                    Don't know          Not very much confidence
## 2      Not very much confidence                        Don't know
## 3      Not very much confidence         Quite a lot of confidence
## 4      Not very much confidence                              <NA>
## 5     Quite a lot of confidence         Quite a lot of confidence
## 6                    Don't know         Quite a lot of confidence
## 7     Quite a lot of confidence         Quite a lot of confidence
## 8    A great deal of confidence        A great deal of confidence
## 9     Quite a lot of confidence         Quite a lot of confidence
## 10                   Don't know         Quite a lot of confidence
## 11    Quite a lot of confidence         Quite a lot of confidence
## 12    Quite a lot of confidence         Quite a lot of confidence
## 13     Not very much confidence         Quite a lot of confidence
## 14       None at all confidence         Quite a lot of confidence
## 15       None at all confidence          Not very much confidence
## 16     Not very much confidence         Quite a lot of confidence
## 17     Not very much confidence         Quite a lot of confidence
## 18     Not very much confidence         Quite a lot of confidence
## 19    Quite a lot of confidence          Not very much confidence
## 20    Quite a lot of confidence         Quite a lot of confidence
## 21    Quite a lot of confidence         Quite a lot of confidence
## 22     Not very much confidence            None at all confidence
## 23    Quite a lot of confidence        A great deal of confidence
## 24     Not very much confidence         Quite a lot of confidence
## 25     Not very much confidence         Quite a lot of confidence
## 26                   Don't know         Quite a lot of confidence
## 27     Not very much confidence         Quite a lot of confidence
## 28                   Don't know         Quite a lot of confidence
## 29     Not very much confidence         Quite a lot of confidence
## 30    Quite a lot of confidence         Quite a lot of confidence
## 31    Quite a lot of confidence         Quite a lot of confidence
## 32                   Don't know                        Don't know
## 33     Not very much confidence         Quite a lot of confidence
## 34    Quite a lot of confidence          Not very much confidence
## 35     Not very much confidence         Quite a lot of confidence
## 36    Quite a lot of confidence          Not very much confidence
## 37     Not very much confidence          Not very much confidence
## 38    Quite a lot of confidence         Quite a lot of confidence
## 39    Quite a lot of confidence         Quite a lot of confidence
## 40    Quite a lot of confidence         Quite a lot of confidence
## 41       None at all confidence            None at all confidence
## 42     Not very much confidence          Not very much confidence
## 43     Not very much confidence         Quite a lot of confidence
## 44                   Don't know                        Don't know
## 45    Quite a lot of confidence            None at all confidence
## 46     Not very much confidence          Not very much confidence
## 47    Quite a lot of confidence         Quite a lot of confidence
## 48    Quite a lot of confidence         Quite a lot of confidence
## 49    Quite a lot of confidence         Quite a lot of confidence
## 50    Quite a lot of confidence          Not very much confidence
## 51     Not very much confidence          Not very much confidence
## 52    Quite a lot of confidence         Quite a lot of confidence
## 53     Not very much confidence          Not very much confidence
## 54     Not very much confidence         Quite a lot of confidence
## 55     Not very much confidence         Quite a lot of confidence
## 56       None at all confidence                        Don't know
## 57       None at all confidence            None at all confidence
## 58    Quite a lot of confidence            None at all confidence
## 59     Not very much confidence          Not very much confidence
## 60    Quite a lot of confidence         Quite a lot of confidence
## 61    Quite a lot of confidence         Quite a lot of confidence
## 62    Quite a lot of confidence         Quite a lot of confidence
## 63    Quite a lot of confidence         Quite a lot of confidence
## 64    Quite a lot of confidence         Quite a lot of confidence
## 65    Quite a lot of confidence         Quite a lot of confidence
## 66    Quite a lot of confidence         Quite a lot of confidence
## 67       None at all confidence          Not very much confidence
## 68    Quite a lot of confidence         Quite a lot of confidence
## 69       None at all confidence            None at all confidence
## 70       None at all confidence            None at all confidence
## 71     Not very much confidence         Quite a lot of confidence
## 72     Not very much confidence          Not very much confidence
## 73    Quite a lot of confidence         Quite a lot of confidence
## 74    Quite a lot of confidence         Quite a lot of confidence
## 75     Not very much confidence          Not very much confidence
## 76    Quite a lot of confidence         Quite a lot of confidence
## 77       None at all confidence            None at all confidence
## 78    Quite a lot of confidence         Quite a lot of confidence
## 79     Not very much confidence          Not very much confidence
## 80       None at all confidence         Quite a lot of confidence
## 81     Not very much confidence          Not very much confidence
## 82    Quite a lot of confidence         Quite a lot of confidence
## 83    Quite a lot of confidence         Quite a lot of confidence
## 84    Quite a lot of confidence         Quite a lot of confidence
## 85     Not very much confidence          Not very much confidence
## 86    Quite a lot of confidence         Quite a lot of confidence
## 87     Not very much confidence          Not very much confidence
## 88   A great deal of confidence        A great deal of confidence
## 89    Quite a lot of confidence         Quite a lot of confidence
## 90   A great deal of confidence         Quite a lot of confidence
## 91    Quite a lot of confidence         Quite a lot of confidence
## 92    Quite a lot of confidence         Quite a lot of confidence
## 93    Quite a lot of confidence         Quite a lot of confidence
## 94    Quite a lot of confidence         Quite a lot of confidence
## 95    Quite a lot of confidence         Quite a lot of confidence
## 96    Quite a lot of confidence         Quite a lot of confidence
## 97    Quite a lot of confidence         Quite a lot of confidence
## 98    Quite a lot of confidence         Quite a lot of confidence
## 99    Quite a lot of confidence         Quite a lot of confidence
## 100   Quite a lot of confidence         Quite a lot of confidence
## 101                  Don't know        A great deal of confidence
## 102                  Don't know         Quite a lot of confidence
## 103  A great deal of confidence        A great deal of confidence
## 104                  Don't know                        Don't know
## 105   Quite a lot of confidence         Quite a lot of confidence
## 106                  Don't know         Quite a lot of confidence
## 107   Quite a lot of confidence         Quite a lot of confidence
## 108    Not very much confidence          Not very much confidence
## 109                  Don't know         Quite a lot of confidence
## 110                  Don't know                        Don't know
## 111                        <NA>                              <NA>
## 112   Quite a lot of confidence          Not very much confidence
## 113                  Don't know                        Don't know
## 114  A great deal of confidence        A great deal of confidence
## 115                  Don't know                        Don't know
## 116                  Don't know                        Don't know
## 117                  Don't know         Quite a lot of confidence
## 118                  Don't know                        Don't know
## 119                  Don't know         Quite a lot of confidence
## 120   Quite a lot of confidence         Quite a lot of confidence
## 121   Quite a lot of confidence          Not very much confidence
## 122   Quite a lot of confidence          Not very much confidence
## 123                  Don't know                        Don't know
## 124   Quite a lot of confidence         Quite a lot of confidence
## 125  A great deal of confidence        A great deal of confidence
## 126  A great deal of confidence         Quite a lot of confidence
## 127   Quite a lot of confidence                        Don't know
## 128   Quite a lot of confidence         Quite a lot of confidence
## 129      None at all confidence          Not very much confidence
## 130  A great deal of confidence        A great deal of confidence
## 131   Quite a lot of confidence          Not very much confidence
## 132    Not very much confidence          Not very much confidence
## 133    Not very much confidence         Quite a lot of confidence
## 134    Not very much confidence          Not very much confidence
## 135    Not very much confidence         Quite a lot of confidence
## 136      None at all confidence            None at all confidence
## 137   Quite a lot of confidence          Not very much confidence
## 138   Quite a lot of confidence         Quite a lot of confidence
## 139    Not very much confidence         Quite a lot of confidence
## 140    Not very much confidence         Quite a lot of confidence
## 141  A great deal of confidence         Quite a lot of confidence
## 142                  Don't know         Quite a lot of confidence
## 143   Quite a lot of confidence         Quite a lot of confidence
## 144  A great deal of confidence        A great deal of confidence
## 145                  Don't know                        Don't know
## 146    Not very much confidence          Not very much confidence
## 147      None at all confidence         Quite a lot of confidence
## 148      None at all confidence            None at all confidence
## 149    Not very much confidence            None at all confidence
## 150      None at all confidence          Not very much confidence
## 151                  Don't know                        Don't know
## 152   Quite a lot of confidence          Not very much confidence
## 153                  Don't know                        Don't know
## 154    Not very much confidence         Quite a lot of confidence
## 155                  Don't know          Not very much confidence
## 156                  Don't know                        Don't know
## 157   Quite a lot of confidence         Quite a lot of confidence
## 158   Quite a lot of confidence          Not very much confidence
## 159   Quite a lot of confidence          Not very much confidence
## 160   Quite a lot of confidence        A great deal of confidence
## 161    Not very much confidence         Quite a lot of confidence
## 162                  Don't know                        Don't know
## 163                  Don't know                        Don't know
## 164                  Don't know                        Don't know
## 165   Quite a lot of confidence          Not very much confidence
## 166                  Don't know          Not very much confidence
## 167   Quite a lot of confidence          Not very much confidence
## 168  A great deal of confidence        A great deal of confidence
## 169   Quite a lot of confidence         Quite a lot of confidence
## 170  A great deal of confidence         Quite a lot of confidence
## 171                  Don't know                        Don't know
## 172                  Don't know                        Don't know
## 173                  Don't know                        Don't know
## 174   Quite a lot of confidence        A great deal of confidence
## 175   Quite a lot of confidence         Quite a lot of confidence
## 176                  Don't know          Not very much confidence
## 177    Not very much confidence         Quite a lot of confidence
## 178                  Don't know                        Don't know
## 179                  Don't know                        Don't know
## 180   Quite a lot of confidence        A great deal of confidence
## 181   Quite a lot of confidence         Quite a lot of confidence
## 182                  Don't know                        Don't know
## 183                  Don't know                        Don't know
## 184                  Don't know                        Don't know
## 185   Quite a lot of confidence         Quite a lot of confidence
## 186    Not very much confidence         Quite a lot of confidence
## 187    Not very much confidence         Quite a lot of confidence
## 188                  Don't know                        Don't know
## 189                  Don't know                        Don't know
## 190    Not very much confidence         Quite a lot of confidence
## 191                  Don't know          Not very much confidence
## 192                  Don't know                        Don't know
## 193   Quite a lot of confidence        A great deal of confidence
## 194    Not very much confidence         Quite a lot of confidence
## 195    Not very much confidence         Quite a lot of confidence
## 196  A great deal of confidence        A great deal of confidence
## 197                  Don't know                        Don't know
## 198    Not very much confidence         Quite a lot of confidence
## 199   Quite a lot of confidence          Not very much confidence
## 200                        <NA>                              <NA>
## 201    Not very much confidence         Quite a lot of confidence
## 202   Quite a lot of confidence          Not very much confidence
## 203    Not very much confidence         Quite a lot of confidence
## 204   Quite a lot of confidence          Not very much confidence
## 205    Not very much confidence         Quite a lot of confidence
## 206   Quite a lot of confidence          Not very much confidence
## 207    Not very much confidence         Quite a lot of confidence
## 208    Not very much confidence         Quite a lot of confidence
## 209   Quite a lot of confidence         Quite a lot of confidence
## 210    Not very much confidence         Quite a lot of confidence
## 211   Quite a lot of confidence         Quite a lot of confidence
## 212   Quite a lot of confidence         Quite a lot of confidence
## 213   Quite a lot of confidence         Quite a lot of confidence
## 214   Quite a lot of confidence         Quite a lot of confidence
## 215   Quite a lot of confidence         Quite a lot of confidence
## 216   Quite a lot of confidence         Quite a lot of confidence
## 217   Quite a lot of confidence         Quite a lot of confidence
## 218    Not very much confidence         Quite a lot of confidence
## 219   Quite a lot of confidence          Not very much confidence
## 220      None at all confidence          Not very much confidence
## 221      None at all confidence          Not very much confidence
## 222    Not very much confidence         Quite a lot of confidence
## 223    Not very much confidence         Quite a lot of confidence
## 224   Quite a lot of confidence          Not very much confidence
## 225    Not very much confidence         Quite a lot of confidence
## 226   Quite a lot of confidence        A great deal of confidence
## 227   Quite a lot of confidence          Not very much confidence
## 228   Quite a lot of confidence        A great deal of confidence
## 229   Quite a lot of confidence         Quite a lot of confidence
## 230    Not very much confidence         Quite a lot of confidence
## 231   Quite a lot of confidence         Quite a lot of confidence
## 232   Quite a lot of confidence          Not very much confidence
## 233   Quite a lot of confidence          Not very much confidence
## 234   Quite a lot of confidence          Not very much confidence
## 235   Quite a lot of confidence          Not very much confidence
## 236    Not very much confidence            None at all confidence
## 237   Quite a lot of confidence          Not very much confidence
## 238    Not very much confidence            None at all confidence
## 239   Quite a lot of confidence          Not very much confidence
## 240   Quite a lot of confidence          Not very much confidence
## 241   Quite a lot of confidence          Not very much confidence
## 242   Quite a lot of confidence          Not very much confidence
## 243   Quite a lot of confidence          Not very much confidence
## 244   Quite a lot of confidence          Not very much confidence
## 245    Not very much confidence         Quite a lot of confidence
## 246    Not very much confidence         Quite a lot of confidence
## 247    Not very much confidence         Quite a lot of confidence
## 248  A great deal of confidence         Quite a lot of confidence
## 249    Not very much confidence            None at all confidence
## 250   Quite a lot of confidence        A great deal of confidence
## 251   Quite a lot of confidence         Quite a lot of confidence
## 252   Quite a lot of confidence         Quite a lot of confidence
## 253                  Don't know                        Don't know
## 254   Quite a lot of confidence          Not very much confidence
## 255   Quite a lot of confidence         Quite a lot of confidence
## 256    Not very much confidence          Not very much confidence
## 257                  Don't know                        Don't know
## 258    Not very much confidence         Quite a lot of confidence
## 259                  Don't know                        Don't know
## 260   Quite a lot of confidence         Quite a lot of confidence
## 261    Not very much confidence          Not very much confidence
## 262   Quite a lot of confidence         Quite a lot of confidence
## 263                  Don't know        A great deal of confidence
## 264   Quite a lot of confidence         Quite a lot of confidence
## 265   Quite a lot of confidence         Quite a lot of confidence
## 266   Quite a lot of confidence         Quite a lot of confidence
## 267   Quite a lot of confidence         Quite a lot of confidence
## 268   Quite a lot of confidence         Quite a lot of confidence
## 269   Quite a lot of confidence                        Don't know
## 270   Quite a lot of confidence         Quite a lot of confidence
## 271   Quite a lot of confidence         Quite a lot of confidence
## 272   Quite a lot of confidence         Quite a lot of confidence
## 273   Quite a lot of confidence         Quite a lot of confidence
## 274      None at all confidence          Not very much confidence
## 275   Quite a lot of confidence         Quite a lot of confidence
## 276  A great deal of confidence         Quite a lot of confidence
## 277                  Don't know                        Don't know
## 278   Quite a lot of confidence         Quite a lot of confidence
## 279   Quite a lot of confidence         Quite a lot of confidence
## 280   Quite a lot of confidence         Quite a lot of confidence
## 281  A great deal of confidence        A great deal of confidence
## 282   Quite a lot of confidence         Quite a lot of confidence
## 283  A great deal of confidence        A great deal of confidence
## 284   Quite a lot of confidence          Not very much confidence
## 285   Quite a lot of confidence         Quite a lot of confidence
## 286   Quite a lot of confidence         Quite a lot of confidence
## 287   Quite a lot of confidence         Quite a lot of confidence
## 288   Quite a lot of confidence                        Don't know
## 289                  Don't know                        Don't know
## 290  A great deal of confidence        A great deal of confidence
## 291    Not very much confidence          Not very much confidence
## 292                  Don't know                        Don't know
## 293  A great deal of confidence        A great deal of confidence
## 294  A great deal of confidence        A great deal of confidence
## 295   Quite a lot of confidence         Quite a lot of confidence
## 296   Quite a lot of confidence         Quite a lot of confidence
## 297                  Don't know                        Don't know
## 298  A great deal of confidence        A great deal of confidence
## 299                  Don't know                        Don't know
## 300   Quite a lot of confidence         Quite a lot of confidence
## 302   Quite a lot of confidence         Quite a lot of confidence
## 303    Not very much confidence          Not very much confidence
## 304   Quite a lot of confidence          Not very much confidence
## 305      None at all confidence            None at all confidence
## 306   Quite a lot of confidence          Not very much confidence
## 307      None at all confidence            None at all confidence
## 308    Not very much confidence          Not very much confidence
## 309    Not very much confidence          Not very much confidence
## 310                  Don't know                        Don't know
## 311   Quite a lot of confidence         Quite a lot of confidence
## 312    Not very much confidence          Not very much confidence
## 313    Not very much confidence          Not very much confidence
## 314      None at all confidence            None at all confidence
## 315   Quite a lot of confidence         Quite a lot of confidence
## 316   Quite a lot of confidence          Not very much confidence
## 317    Not very much confidence          Not very much confidence
## 318      None at all confidence            None at all confidence
## 319    Not very much confidence          Not very much confidence
## 320    Not very much confidence          Not very much confidence
## 321   Quite a lot of confidence          Not very much confidence
## 322                  Don't know                        Don't know
## 323   Quite a lot of confidence         Quite a lot of confidence
## 324   Quite a lot of confidence         Quite a lot of confidence
## 325   Quite a lot of confidence         Quite a lot of confidence
## 326   Quite a lot of confidence         Quite a lot of confidence
## 327   Quite a lot of confidence         Quite a lot of confidence
## 328    Not very much confidence          Not very much confidence
## 329    Not very much confidence         Quite a lot of confidence
## 330   Quite a lot of confidence          Not very much confidence
## 331    Not very much confidence         Quite a lot of confidence
## 332    Not very much confidence         Quite a lot of confidence
## 333    Not very much confidence         Quite a lot of confidence
## 334   Quite a lot of confidence          Not very much confidence
## 335    Not very much confidence         Quite a lot of confidence
## 336    Not very much confidence         Quite a lot of confidence
## 337      None at all confidence          Not very much confidence
## 338  A great deal of confidence         Quite a lot of confidence
## 339    Not very much confidence          Not very much confidence
## 340      None at all confidence            None at all confidence
## 341      None at all confidence          Not very much confidence
## 342   Quite a lot of confidence         Quite a lot of confidence
## 343   Quite a lot of confidence         Quite a lot of confidence
## 344    Not very much confidence         Quite a lot of confidence
## 345                  Don't know                        Don't know
## 346   Quite a lot of confidence         Quite a lot of confidence
## 347                  Don't know                        Don't know
## 348   Quite a lot of confidence         Quite a lot of confidence
## 349    Not very much confidence          Not very much confidence
## 350    Not very much confidence          Not very much confidence
## 351      None at all confidence            None at all confidence
## 352                  Don't know                        Don't know
## 353   Quite a lot of confidence            None at all confidence
## 354   Quite a lot of confidence         Quite a lot of confidence
## 355   Quite a lot of confidence          Not very much confidence
## 356   Quite a lot of confidence                        Don't know
## 357      None at all confidence          Not very much confidence
## 358    Not very much confidence            None at all confidence
## 359    Not very much confidence         Quite a lot of confidence
## 360   Quite a lot of confidence        A great deal of confidence
## 361   Quite a lot of confidence         Quite a lot of confidence
## 362   Quite a lot of confidence         Quite a lot of confidence
## 363   Quite a lot of confidence         Quite a lot of confidence
## 364    Not very much confidence            None at all confidence
## 365                  Don't know                        Don't know
## 366      None at all confidence            None at all confidence
## 367    Not very much confidence          Not very much confidence
## 368   Quite a lot of confidence         Quite a lot of confidence
## 369      None at all confidence          Not very much confidence
## 370   Quite a lot of confidence          Not very much confidence
## 371    Not very much confidence          Not very much confidence
## 372   Quite a lot of confidence         Quite a lot of confidence
## 373                  Don't know          Not very much confidence
## 374   Quite a lot of confidence          Not very much confidence
## 375                  Don't know         Quite a lot of confidence
## 376   Quite a lot of confidence         Quite a lot of confidence
## 377   Quite a lot of confidence         Quite a lot of confidence
## 378   Quite a lot of confidence         Quite a lot of confidence
## 379   Quite a lot of confidence          Not very much confidence
## 380   Quite a lot of confidence         Quite a lot of confidence
## 381   Quite a lot of confidence         Quite a lot of confidence
## 382   Quite a lot of confidence         Quite a lot of confidence
## 383    Not very much confidence         Quite a lot of confidence
## 384    Not very much confidence          Not very much confidence
## 385   Quite a lot of confidence         Quite a lot of confidence
## 386   Quite a lot of confidence         Quite a lot of confidence
## 387   Quite a lot of confidence         Quite a lot of confidence
## 388   Quite a lot of confidence         Quite a lot of confidence
## 389   Quite a lot of confidence         Quite a lot of confidence
## 390    Not very much confidence            None at all confidence
## 391   Quite a lot of confidence          Not very much confidence
## 392    Not very much confidence          Not very much confidence
## 393   Quite a lot of confidence                        Don't know
## 394   Quite a lot of confidence         Quite a lot of confidence
## 395    Not very much confidence          Not very much confidence
## 396   Quite a lot of confidence         Quite a lot of confidence
## 397      None at all confidence            None at all confidence
## 398    Not very much confidence          Not very much confidence
## 399   Quite a lot of confidence         Quite a lot of confidence
## 400   Quite a lot of confidence         Quite a lot of confidence
## 401   Quite a lot of confidence         Quite a lot of confidence
## 402                  Don't know                        Don't know
## 403   Quite a lot of confidence         Quite a lot of confidence
## 404   Quite a lot of confidence         Quite a lot of confidence
## 405    Not very much confidence            None at all confidence
## 406   Quite a lot of confidence         Quite a lot of confidence
## 407   Quite a lot of confidence         Quite a lot of confidence
## 408   Quite a lot of confidence         Quite a lot of confidence
## 409    Not very much confidence         Quite a lot of confidence
## 410    Not very much confidence          Not very much confidence
## 411   Quite a lot of confidence         Quite a lot of confidence
## 412    Not very much confidence        A great deal of confidence
## 413   Quite a lot of confidence        A great deal of confidence
## 414   Quite a lot of confidence          Not very much confidence
## 415                  Don't know                        Don't know
## 416   Quite a lot of confidence         Quite a lot of confidence
## 417                  Don't know                        Don't know
## 418   Quite a lot of confidence         Quite a lot of confidence
## 419   Quite a lot of confidence         Quite a lot of confidence
## 420   Quite a lot of confidence          Not very much confidence
## 421   Quite a lot of confidence        A great deal of confidence
## 422                  Don't know                        Don't know
## 423    Not very much confidence         Quite a lot of confidence
## 424   Quite a lot of confidence        A great deal of confidence
## 425   Quite a lot of confidence        A great deal of confidence
## 426  A great deal of confidence        A great deal of confidence
## 427   Quite a lot of confidence        A great deal of confidence
## 428                  Don't know                        Don't know
## 429   Quite a lot of confidence         Quite a lot of confidence
## 430   Quite a lot of confidence        A great deal of confidence
## 431   Quite a lot of confidence        A great deal of confidence
## 432                  Don't know                        Don't know
## 433   Quite a lot of confidence        A great deal of confidence
## 434   Quite a lot of confidence        A great deal of confidence
## 435    Not very much confidence         Quite a lot of confidence
## 436   Quite a lot of confidence        A great deal of confidence
## 437  A great deal of confidence        A great deal of confidence
## 438   Quite a lot of confidence        A great deal of confidence
## 439  A great deal of confidence        A great deal of confidence
## 440   Quite a lot of confidence         Quite a lot of confidence
## 441  A great deal of confidence        A great deal of confidence
## 442   Quite a lot of confidence         Quite a lot of confidence
## 443  A great deal of confidence        A great deal of confidence
## 444   Quite a lot of confidence         Quite a lot of confidence
## 445  A great deal of confidence        A great deal of confidence
## 446  A great deal of confidence        A great deal of confidence
## 447  A great deal of confidence        A great deal of confidence
## 448  A great deal of confidence        A great deal of confidence
## 449  A great deal of confidence        A great deal of confidence
## 450   Quite a lot of confidence         Quite a lot of confidence
## 451   Quite a lot of confidence         Quite a lot of confidence
## 452  A great deal of confidence        A great deal of confidence
## 453   Quite a lot of confidence         Quite a lot of confidence
## 454   Quite a lot of confidence         Quite a lot of confidence
## 455    Not very much confidence         Quite a lot of confidence
## 456   Quite a lot of confidence         Quite a lot of confidence
## 457   Quite a lot of confidence         Quite a lot of confidence
## 458    Not very much confidence            None at all confidence
## 459      None at all confidence            None at all confidence
## 460   Quite a lot of confidence          Not very much confidence
## 461                  Don't know                        Don't know
## 462   Quite a lot of confidence         Quite a lot of confidence
## 463      None at all confidence                        Don't know
## 464  A great deal of confidence          Not very much confidence
## 465   Quite a lot of confidence        A great deal of confidence
## 466      None at all confidence          Not very much confidence
## 467   Quite a lot of confidence        A great deal of confidence
## 468      None at all confidence          Not very much confidence
## 469      None at all confidence            None at all confidence
## 470    Not very much confidence         Quite a lot of confidence
## 471      None at all confidence          Not very much confidence
## 472   Quite a lot of confidence          Not very much confidence
## 473   Quite a lot of confidence         Quite a lot of confidence
## 474   Quite a lot of confidence         Quite a lot of confidence
## 475    Not very much confidence          Not very much confidence
## 476    Not very much confidence          Not very much confidence
## 477    Not very much confidence          Not very much confidence
## 478   Quite a lot of confidence         Quite a lot of confidence
## 479                  Don't know                        Don't know
## 480                  Don't know          Not very much confidence
## 481   Quite a lot of confidence         Quite a lot of confidence
## 482      None at all confidence            None at all confidence
## 483      None at all confidence            None at all confidence
## 484    Not very much confidence          Not very much confidence
## 485   Quite a lot of confidence         Quite a lot of confidence
## 486   Quite a lot of confidence          Not very much confidence
## 487                  Don't know                        Don't know
## 488    Not very much confidence         Quite a lot of confidence
## 489   Quite a lot of confidence         Quite a lot of confidence
## 490      None at all confidence            None at all confidence
## 491    Not very much confidence          Not very much confidence
## 492   Quite a lot of confidence         Quite a lot of confidence
## 493      None at all confidence            None at all confidence
## 494   Quite a lot of confidence          Not very much confidence
## 495      None at all confidence            None at all confidence
## 496    Not very much confidence         Quite a lot of confidence
##      Confidence.in..Civil.Service Confidence.in..Political.Parties
## 1        Not very much confidence         Not very much confidence
## 2                      Don't know           None at all confidence
## 3        Not very much confidence           None at all confidence
## 4       Quite a lot of confidence           None at all confidence
## 5        Not very much confidence         Not very much confidence
## 6        Not very much confidence         Not very much confidence
## 7        Not very much confidence           None at all confidence
## 8       Quite a lot of confidence         Not very much confidence
## 9       Quite a lot of confidence         Not very much confidence
## 10      Quite a lot of confidence        Quite a lot of confidence
## 11                           <NA>           None at all confidence
## 12      Quite a lot of confidence           None at all confidence
## 13      Quite a lot of confidence        Quite a lot of confidence
## 14       Not very much confidence           None at all confidence
## 15       Not very much confidence           None at all confidence
## 16      Quite a lot of confidence                             <NA>
## 17      Quite a lot of confidence       A great deal of confidence
## 18      Quite a lot of confidence        Quite a lot of confidence
## 19      Quite a lot of confidence         Not very much confidence
## 20      Quite a lot of confidence        Quite a lot of confidence
## 21     A great deal of confidence         Not very much confidence
## 22      Quite a lot of confidence           None at all confidence
## 23     A great deal of confidence        Quite a lot of confidence
## 24      Quite a lot of confidence        Quite a lot of confidence
## 25       Not very much confidence         Not very much confidence
## 26      Quite a lot of confidence       A great deal of confidence
## 27      Quite a lot of confidence         Not very much confidence
## 28      Quite a lot of confidence         Not very much confidence
## 29       Not very much confidence         Not very much confidence
## 30      Quite a lot of confidence        Quite a lot of confidence
## 31       Not very much confidence         Not very much confidence
## 32                     Don't know        Quite a lot of confidence
## 33       Not very much confidence         Not very much confidence
## 34      Quite a lot of confidence         Not very much confidence
## 35     A great deal of confidence        Quite a lot of confidence
## 36         None at all confidence         Not very much confidence
## 37      Quite a lot of confidence        Quite a lot of confidence
## 38      Quite a lot of confidence        Quite a lot of confidence
## 39      Quite a lot of confidence        Quite a lot of confidence
## 40       Not very much confidence         Not very much confidence
## 41       Not very much confidence           None at all confidence
## 42      Quite a lot of confidence        Quite a lot of confidence
## 43      Quite a lot of confidence        Quite a lot of confidence
## 44      Quite a lot of confidence        Quite a lot of confidence
## 45       Not very much confidence           None at all confidence
## 46      Quite a lot of confidence           None at all confidence
## 47      Quite a lot of confidence         Not very much confidence
## 48      Quite a lot of confidence        Quite a lot of confidence
## 49       Not very much confidence         Not very much confidence
## 50                     Don't know         Not very much confidence
## 51       Not very much confidence           None at all confidence
## 52      Quite a lot of confidence         Not very much confidence
## 53      Quite a lot of confidence         Not very much confidence
## 54      Quite a lot of confidence           None at all confidence
## 55      Quite a lot of confidence         Not very much confidence
## 56      Quite a lot of confidence        Quite a lot of confidence
## 57       Not very much confidence        Quite a lot of confidence
## 58       Not very much confidence        Quite a lot of confidence
## 59       Not very much confidence        Quite a lot of confidence
## 60      Quite a lot of confidence        Quite a lot of confidence
## 61      Quite a lot of confidence        Quite a lot of confidence
## 62      Quite a lot of confidence         Not very much confidence
## 63      Quite a lot of confidence         Not very much confidence
## 64      Quite a lot of confidence         Not very much confidence
## 65      Quite a lot of confidence         Not very much confidence
## 66      Quite a lot of confidence         Not very much confidence
## 67      Quite a lot of confidence         Not very much confidence
## 68      Quite a lot of confidence         Not very much confidence
## 69         None at all confidence           None at all confidence
## 70         None at all confidence           None at all confidence
## 71      Quite a lot of confidence         Not very much confidence
## 72      Quite a lot of confidence         Not very much confidence
## 73      Quite a lot of confidence        Quite a lot of confidence
## 74      Quite a lot of confidence         Not very much confidence
## 75      Quite a lot of confidence         Not very much confidence
## 76      Quite a lot of confidence           None at all confidence
## 77      Quite a lot of confidence           None at all confidence
## 78      Quite a lot of confidence         Not very much confidence
## 79      Quite a lot of confidence           None at all confidence
## 80         None at all confidence           None at all confidence
## 81      Quite a lot of confidence           None at all confidence
## 82      Quite a lot of confidence           None at all confidence
## 83      Quite a lot of confidence         Not very much confidence
## 84      Quite a lot of confidence         Not very much confidence
## 85      Quite a lot of confidence        Quite a lot of confidence
## 86       Not very much confidence        Quite a lot of confidence
## 87       Not very much confidence         Not very much confidence
## 88     A great deal of confidence        Quite a lot of confidence
## 89      Quite a lot of confidence        Quite a lot of confidence
## 90      Quite a lot of confidence        Quite a lot of confidence
## 91      Quite a lot of confidence        Quite a lot of confidence
## 92      Quite a lot of confidence        Quite a lot of confidence
## 93      Quite a lot of confidence        Quite a lot of confidence
## 94      Quite a lot of confidence        Quite a lot of confidence
## 95      Quite a lot of confidence        Quite a lot of confidence
## 96      Quite a lot of confidence         Not very much confidence
## 97      Quite a lot of confidence        Quite a lot of confidence
## 98      Quite a lot of confidence         Not very much confidence
## 99      Quite a lot of confidence        Quite a lot of confidence
## 100     Quite a lot of confidence        Quite a lot of confidence
## 101     Quite a lot of confidence         Not very much confidence
## 102     Quite a lot of confidence         Not very much confidence
## 103    A great deal of confidence        Quite a lot of confidence
## 104     Quite a lot of confidence         Not very much confidence
## 105    A great deal of confidence       A great deal of confidence
## 106     Quite a lot of confidence        Quite a lot of confidence
## 107     Quite a lot of confidence        Quite a lot of confidence
## 108     Quite a lot of confidence        Quite a lot of confidence
## 109                    Don't know                       Don't know
## 110                    Don't know        Quite a lot of confidence
## 111                          <NA>                             <NA>
## 112     Quite a lot of confidence         Not very much confidence
## 113                    Don't know       A great deal of confidence
## 114    A great deal of confidence         Not very much confidence
## 115    A great deal of confidence        Quite a lot of confidence
## 116                    Don't know                       Don't know
## 117    A great deal of confidence        Quite a lot of confidence
## 118                    Don't know                       Don't know
## 119     Quite a lot of confidence        Quite a lot of confidence
## 120     Quite a lot of confidence         Not very much confidence
## 121    A great deal of confidence        Quite a lot of confidence
## 122     Quite a lot of confidence        Quite a lot of confidence
## 123                    Don't know         Not very much confidence
## 124     Quite a lot of confidence        Quite a lot of confidence
## 125     Quite a lot of confidence       A great deal of confidence
## 126     Quite a lot of confidence         Not very much confidence
## 127     Quite a lot of confidence        Quite a lot of confidence
## 128     Quite a lot of confidence         Not very much confidence
## 129     Quite a lot of confidence         Not very much confidence
## 130     Quite a lot of confidence        Quite a lot of confidence
## 131     Quite a lot of confidence         Not very much confidence
## 132     Quite a lot of confidence         Not very much confidence
## 133     Quite a lot of confidence         Not very much confidence
## 134     Quite a lot of confidence        Quite a lot of confidence
## 135      Not very much confidence        Quite a lot of confidence
## 136        None at all confidence           None at all confidence
## 137     Quite a lot of confidence        Quite a lot of confidence
## 138      Not very much confidence         Not very much confidence
## 139      Not very much confidence        Quite a lot of confidence
## 140      Not very much confidence        Quite a lot of confidence
## 141    A great deal of confidence        Quite a lot of confidence
## 142     Quite a lot of confidence         Not very much confidence
## 143    A great deal of confidence       A great deal of confidence
## 144    A great deal of confidence       A great deal of confidence
## 145                    Don't know        Quite a lot of confidence
## 146      Not very much confidence         Not very much confidence
## 147     Quite a lot of confidence           None at all confidence
## 148      Not very much confidence        Quite a lot of confidence
## 149    A great deal of confidence       A great deal of confidence
## 150     Quite a lot of confidence                       Don't know
## 151                    Don't know                       Don't know
## 152    A great deal of confidence        Quite a lot of confidence
## 153                    Don't know                       Don't know
## 154     Quite a lot of confidence           None at all confidence
## 155     Quite a lot of confidence         Not very much confidence
## 156                    Don't know                       Don't know
## 157      Not very much confidence         Not very much confidence
## 158    A great deal of confidence         Not very much confidence
## 159                    Don't know                       Don't know
## 160      Not very much confidence       A great deal of confidence
## 161     Quite a lot of confidence       A great deal of confidence
## 162                    Don't know                       Don't know
## 163                    Don't know                       Don't know
## 164                    Don't know                       Don't know
## 165    A great deal of confidence         Not very much confidence
## 166     Quite a lot of confidence        Quite a lot of confidence
## 167    A great deal of confidence         Not very much confidence
## 168     Quite a lot of confidence        Quite a lot of confidence
## 169    A great deal of confidence       A great deal of confidence
## 170    A great deal of confidence        Quite a lot of confidence
## 171                    Don't know                       Don't know
## 172                    Don't know                       Don't know
## 173                    Don't know                       Don't know
## 174    A great deal of confidence       A great deal of confidence
## 175    A great deal of confidence       A great deal of confidence
## 176     Quite a lot of confidence           None at all confidence
## 177    A great deal of confidence                       Don't know
## 178                    Don't know                       Don't know
## 179                    Don't know                       Don't know
## 180    A great deal of confidence        Quite a lot of confidence
## 181    A great deal of confidence        Quite a lot of confidence
## 182     Quite a lot of confidence        Quite a lot of confidence
## 183                    Don't know                       Don't know
## 184                    Don't know                       Don't know
## 185    A great deal of confidence        Quite a lot of confidence
## 186    A great deal of confidence        Quite a lot of confidence
## 187     Quite a lot of confidence       A great deal of confidence
## 188                    Don't know                       Don't know
## 189                    Don't know                       Don't know
## 190     Quite a lot of confidence         Not very much confidence
## 191     Quite a lot of confidence        Quite a lot of confidence
## 192                    Don't know                       Don't know
## 193    A great deal of confidence        Quite a lot of confidence
## 194    A great deal of confidence       A great deal of confidence
## 195    A great deal of confidence        Quite a lot of confidence
## 196    A great deal of confidence       A great deal of confidence
## 197    A great deal of confidence        Quite a lot of confidence
## 198    A great deal of confidence        Quite a lot of confidence
## 199    A great deal of confidence         Not very much confidence
## 200                          <NA>                             <NA>
## 201     Quite a lot of confidence         Not very much confidence
## 202      Not very much confidence           None at all confidence
## 203     Quite a lot of confidence           None at all confidence
## 204     Quite a lot of confidence       A great deal of confidence
## 205      Not very much confidence       A great deal of confidence
## 206      Not very much confidence         Not very much confidence
## 207      Not very much confidence        Quite a lot of confidence
## 208      Not very much confidence        Quite a lot of confidence
## 209      Not very much confidence           None at all confidence
## 210     Quite a lot of confidence         Not very much confidence
## 211      Not very much confidence           None at all confidence
## 212      Not very much confidence           None at all confidence
## 213      Not very much confidence           None at all confidence
## 214      Not very much confidence           None at all confidence
## 215      Not very much confidence           None at all confidence
## 216      Not very much confidence           None at all confidence
## 217      Not very much confidence           None at all confidence
## 218      Not very much confidence           None at all confidence
## 219     Quite a lot of confidence       A great deal of confidence
## 220     Quite a lot of confidence         Not very much confidence
## 221     Quite a lot of confidence        Quite a lot of confidence
## 222      Not very much confidence         Not very much confidence
## 223     Quite a lot of confidence         Not very much confidence
## 224      Not very much confidence           None at all confidence
## 225    A great deal of confidence       A great deal of confidence
## 226     Quite a lot of confidence        Quite a lot of confidence
## 227     Quite a lot of confidence         Not very much confidence
## 228     Quite a lot of confidence         Not very much confidence
## 229    A great deal of confidence         Not very much confidence
## 230    A great deal of confidence        Quite a lot of confidence
## 231      Not very much confidence           None at all confidence
## 232      Not very much confidence           None at all confidence
## 233      Not very much confidence           None at all confidence
## 234      Not very much confidence           None at all confidence
## 235      Not very much confidence           None at all confidence
## 236        None at all confidence         Not very much confidence
## 237     Quite a lot of confidence        Quite a lot of confidence
## 238      Not very much confidence        Quite a lot of confidence
## 239      Not very much confidence           None at all confidence
## 240      Not very much confidence           None at all confidence
## 241      Not very much confidence           None at all confidence
## 242      Not very much confidence           None at all confidence
## 243     Quite a lot of confidence           None at all confidence
## 244      Not very much confidence           None at all confidence
## 245      Not very much confidence         Not very much confidence
## 246    A great deal of confidence        Quite a lot of confidence
## 247      Not very much confidence       A great deal of confidence
## 248      Not very much confidence        Quite a lot of confidence
## 249      Not very much confidence        Quite a lot of confidence
## 250    A great deal of confidence        Quite a lot of confidence
## 251     Quite a lot of confidence         Not very much confidence
## 252     Quite a lot of confidence        Quite a lot of confidence
## 253                    Don't know        Quite a lot of confidence
## 254     Quite a lot of confidence         Not very much confidence
## 255     Quite a lot of confidence        Quite a lot of confidence
## 256     Quite a lot of confidence         Not very much confidence
## 257    A great deal of confidence         Not very much confidence
## 258    A great deal of confidence         Not very much confidence
## 259                    Don't know                       Don't know
## 260     Quite a lot of confidence        Quite a lot of confidence
## 261     Quite a lot of confidence         Not very much confidence
## 262     Quite a lot of confidence        Quite a lot of confidence
## 263    A great deal of confidence       A great deal of confidence
## 264     Quite a lot of confidence        Quite a lot of confidence
## 265     Quite a lot of confidence        Quite a lot of confidence
## 266     Quite a lot of confidence        Quite a lot of confidence
## 267     Quite a lot of confidence        Quite a lot of confidence
## 268     Quite a lot of confidence        Quite a lot of confidence
## 269                    Don't know        Quite a lot of confidence
## 270     Quite a lot of confidence        Quite a lot of confidence
## 271     Quite a lot of confidence        Quite a lot of confidence
## 272     Quite a lot of confidence        Quite a lot of confidence
## 273     Quite a lot of confidence        Quite a lot of confidence
## 274     Quite a lot of confidence         Not very much confidence
## 275     Quite a lot of confidence        Quite a lot of confidence
## 276      Not very much confidence        Quite a lot of confidence
## 277                    Don't know                       Don't know
## 278     Quite a lot of confidence        Quite a lot of confidence
## 279     Quite a lot of confidence         Not very much confidence
## 280     Quite a lot of confidence         Not very much confidence
## 281    A great deal of confidence       A great deal of confidence
## 282    A great deal of confidence         Not very much confidence
## 283    A great deal of confidence        Quite a lot of confidence
## 284     Quite a lot of confidence         Not very much confidence
## 285     Quite a lot of confidence        Quite a lot of confidence
## 286     Quite a lot of confidence        Quite a lot of confidence
## 287     Quite a lot of confidence        Quite a lot of confidence
## 288                    Don't know         Not very much confidence
## 289                    Don't know        Quite a lot of confidence
## 290    A great deal of confidence         Not very much confidence
## 291      Not very much confidence         Not very much confidence
## 292                    Don't know         Not very much confidence
## 293    A great deal of confidence        Quite a lot of confidence
## 294    A great deal of confidence         Not very much confidence
## 295     Quite a lot of confidence        Quite a lot of confidence
## 296                    Don't know                       Don't know
## 297                    Don't know         Not very much confidence
## 298    A great deal of confidence       A great deal of confidence
## 299                    Don't know        Quite a lot of confidence
## 300    A great deal of confidence        Quite a lot of confidence
## 302     Quite a lot of confidence        Quite a lot of confidence
## 303     Quite a lot of confidence        Quite a lot of confidence
## 304      Not very much confidence         Not very much confidence
## 305        None at all confidence           None at all confidence
## 306     Quite a lot of confidence           None at all confidence
## 307     Quite a lot of confidence           None at all confidence
## 308      Not very much confidence         Not very much confidence
## 309      Not very much confidence         Not very much confidence
## 310     Quite a lot of confidence           None at all confidence
## 311     Quite a lot of confidence         Not very much confidence
## 312     Quite a lot of confidence         Not very much confidence
## 313      Not very much confidence         Not very much confidence
## 314        None at all confidence           None at all confidence
## 315     Quite a lot of confidence        Quite a lot of confidence
## 316     Quite a lot of confidence         Not very much confidence
## 317      Not very much confidence           None at all confidence
## 318     Quite a lot of confidence           None at all confidence
## 319      Not very much confidence         Not very much confidence
## 320     Quite a lot of confidence         Not very much confidence
## 321     Quite a lot of confidence         Not very much confidence
## 322     Quite a lot of confidence         Not very much confidence
## 323     Quite a lot of confidence        Quite a lot of confidence
## 324     Quite a lot of confidence        Quite a lot of confidence
## 325     Quite a lot of confidence        Quite a lot of confidence
## 326     Quite a lot of confidence        Quite a lot of confidence
## 327     Quite a lot of confidence         Not very much confidence
## 328      Not very much confidence         Not very much confidence
## 329                    Don't know        Quite a lot of confidence
## 330                    Don't know        Quite a lot of confidence
## 331    A great deal of confidence                       Don't know
## 332    A great deal of confidence                       Don't know
## 333    A great deal of confidence                       Don't know
## 334    A great deal of confidence         Not very much confidence
## 335      Not very much confidence        Quite a lot of confidence
## 336      Not very much confidence       A great deal of confidence
## 337     Quite a lot of confidence         Not very much confidence
## 338      Not very much confidence        Quite a lot of confidence
## 339     Quite a lot of confidence           None at all confidence
## 340     Quite a lot of confidence         Not very much confidence
## 341      Not very much confidence           None at all confidence
## 342     Quite a lot of confidence        Quite a lot of confidence
## 343     Quite a lot of confidence        Quite a lot of confidence
## 344     Quite a lot of confidence         Not very much confidence
## 345                    Don't know                       Don't know
## 346     Quite a lot of confidence         Not very much confidence
## 347    A great deal of confidence         Not very much confidence
## 348    A great deal of confidence       A great deal of confidence
## 349      Not very much confidence         Not very much confidence
## 350      Not very much confidence           None at all confidence
## 351        None at all confidence           None at all confidence
## 352                    Don't know                       Don't know
## 353                    Don't know                       Don't know
## 354                    Don't know         Not very much confidence
## 355     Quite a lot of confidence         Not very much confidence
## 356                    Don't know         Not very much confidence
## 357      Not very much confidence           None at all confidence
## 358     Quite a lot of confidence           None at all confidence
## 359     Quite a lot of confidence           None at all confidence
## 360     Quite a lot of confidence        Quite a lot of confidence
## 361     Quite a lot of confidence         Not very much confidence
## 362      Not very much confidence         Not very much confidence
## 363     Quite a lot of confidence         Not very much confidence
## 364     Quite a lot of confidence           None at all confidence
## 365      Not very much confidence           None at all confidence
## 366      Not very much confidence           None at all confidence
## 367      Not very much confidence           None at all confidence
## 368     Quite a lot of confidence         Not very much confidence
## 369     Quite a lot of confidence           None at all confidence
## 370                    Don't know         Not very much confidence
## 371      Not very much confidence        Quite a lot of confidence
## 372      Not very much confidence           None at all confidence
## 373     Quite a lot of confidence         Not very much confidence
## 374      Not very much confidence         Not very much confidence
## 375     Quite a lot of confidence           None at all confidence
## 376     Quite a lot of confidence         Not very much confidence
## 377     Quite a lot of confidence         Not very much confidence
## 378      Not very much confidence           None at all confidence
## 379      Not very much confidence           None at all confidence
## 380     Quite a lot of confidence         Not very much confidence
## 381                    Don't know         Not very much confidence
## 382                    Don't know         Not very much confidence
## 383     Quite a lot of confidence         Not very much confidence
## 384                    Don't know         Not very much confidence
## 385     Quite a lot of confidence         Not very much confidence
## 386     Quite a lot of confidence         Not very much confidence
## 387     Quite a lot of confidence         Not very much confidence
## 388     Quite a lot of confidence         Not very much confidence
## 389                    Don't know        Quite a lot of confidence
## 390        None at all confidence           None at all confidence
## 391      Not very much confidence           None at all confidence
## 392      Not very much confidence           None at all confidence
## 393                    Don't know         Not very much confidence
## 394                    Don't know         Not very much confidence
## 395     Quite a lot of confidence         Not very much confidence
## 396     Quite a lot of confidence           None at all confidence
## 397      Not very much confidence           None at all confidence
## 398                    Don't know           None at all confidence
## 399                    Don't know         Not very much confidence
## 400     Quite a lot of confidence         Not very much confidence
## 401     Quite a lot of confidence         Not very much confidence
## 402                    Don't know           None at all confidence
## 403    A great deal of confidence           None at all confidence
## 404     Quite a lot of confidence           None at all confidence
## 405      Not very much confidence           None at all confidence
## 406     Quite a lot of confidence           None at all confidence
## 407     Quite a lot of confidence           None at all confidence
## 408     Quite a lot of confidence           None at all confidence
## 409        None at all confidence         Not very much confidence
## 410     Quite a lot of confidence           None at all confidence
## 411    A great deal of confidence         Not very much confidence
## 412    A great deal of confidence           None at all confidence
## 413    A great deal of confidence           None at all confidence
## 414     Quite a lot of confidence         Not very much confidence
## 415                    Don't know                       Don't know
## 416     Quite a lot of confidence           None at all confidence
## 417     Quite a lot of confidence         Not very much confidence
## 418                    Don't know           None at all confidence
## 419     Quite a lot of confidence        Quite a lot of confidence
## 420     Quite a lot of confidence        Quite a lot of confidence
## 421    A great deal of confidence           None at all confidence
## 422                    Don't know                       Don't know
## 423     Quite a lot of confidence           None at all confidence
## 424    A great deal of confidence           None at all confidence
## 425    A great deal of confidence       A great deal of confidence
## 426    A great deal of confidence        Quite a lot of confidence
## 427    A great deal of confidence       A great deal of confidence
## 428                    Don't know                       Don't know
## 429     Quite a lot of confidence         Not very much confidence
## 430    A great deal of confidence         Not very much confidence
## 431    A great deal of confidence       A great deal of confidence
## 432                    Don't know                       Don't know
## 433    A great deal of confidence           None at all confidence
## 434    A great deal of confidence       A great deal of confidence
## 435     Quite a lot of confidence         Not very much confidence
## 436    A great deal of confidence         Not very much confidence
## 437    A great deal of confidence         Not very much confidence
## 438     Quite a lot of confidence         Not very much confidence
## 439    A great deal of confidence       A great deal of confidence
## 440     Quite a lot of confidence         Not very much confidence
## 441    A great deal of confidence       A great deal of confidence
## 442     Quite a lot of confidence         Not very much confidence
## 443    A great deal of confidence           None at all confidence
## 444     Quite a lot of confidence         Not very much confidence
## 445    A great deal of confidence        Quite a lot of confidence
## 446    A great deal of confidence        Quite a lot of confidence
## 447    A great deal of confidence         Not very much confidence
## 448    A great deal of confidence       A great deal of confidence
## 449    A great deal of confidence         Not very much confidence
## 450     Quite a lot of confidence        Quite a lot of confidence
## 451     Quite a lot of confidence           None at all confidence
## 452    A great deal of confidence         Not very much confidence
## 453      Not very much confidence         Not very much confidence
## 454     Quite a lot of confidence       A great deal of confidence
## 455     Quite a lot of confidence         Not very much confidence
## 456      Not very much confidence        Quite a lot of confidence
## 457     Quite a lot of confidence         Not very much confidence
## 458        None at all confidence           None at all confidence
## 459      Not very much confidence           None at all confidence
## 460        None at all confidence         Not very much confidence
## 461      Not very much confidence         Not very much confidence
## 462    A great deal of confidence           None at all confidence
## 463    A great deal of confidence        Quite a lot of confidence
## 464      Not very much confidence           None at all confidence
## 465      Not very much confidence        Quite a lot of confidence
## 466      Not very much confidence           None at all confidence
## 467     Quite a lot of confidence        Quite a lot of confidence
## 468      Not very much confidence           None at all confidence
## 469      Not very much confidence           None at all confidence
## 470    A great deal of confidence           None at all confidence
## 471     Quite a lot of confidence           None at all confidence
## 472                          <NA>         Not very much confidence
## 473     Quite a lot of confidence        Quite a lot of confidence
## 474     Quite a lot of confidence        Quite a lot of confidence
## 475     Quite a lot of confidence        Quite a lot of confidence
## 476      Not very much confidence         Not very much confidence
## 477                    Don't know        Quite a lot of confidence
## 478     Quite a lot of confidence        Quite a lot of confidence
## 479                    Don't know                       Don't know
## 480      Not very much confidence         Not very much confidence
## 481     Quite a lot of confidence        Quite a lot of confidence
## 482        None at all confidence           None at all confidence
## 483      Not very much confidence           None at all confidence
## 484      Not very much confidence           None at all confidence
## 485     Quite a lot of confidence       A great deal of confidence
## 486    A great deal of confidence        Quite a lot of confidence
## 487                    Don't know                       Don't know
## 488     Quite a lot of confidence         Not very much confidence
## 489     Quite a lot of confidence         Not very much confidence
## 490      Not very much confidence           None at all confidence
## 491     Quite a lot of confidence           None at all confidence
## 492     Quite a lot of confidence       A great deal of confidence
## 493      Not very much confidence           None at all confidence
## 494      Not very much confidence           None at all confidence
## 495     Quite a lot of confidence           None at all confidence
## 496     Quite a lot of confidence         Not very much confidence
##      Confidence.in..Higher.Judiciary Confidence.in..Lower.Courts
## 1          Quite a lot of confidence   Quite a lot of confidence
## 2          Quite a lot of confidence   Quite a lot of confidence
## 3           Not very much confidence   Quite a lot of confidence
## 4           Not very much confidence   Quite a lot of confidence
## 5           Not very much confidence   Quite a lot of confidence
## 6          Quite a lot of confidence  A great deal of confidence
## 7         A great deal of confidence  A great deal of confidence
## 8          Quite a lot of confidence  A great deal of confidence
## 9          Quite a lot of confidence  A great deal of confidence
## 10                        Don't know                  Don't know
## 11          Not very much confidence   Quite a lot of confidence
## 12         Quite a lot of confidence   Quite a lot of confidence
## 13          Not very much confidence   Quite a lot of confidence
## 14         Quite a lot of confidence   Quite a lot of confidence
## 15         Quite a lot of confidence  A great deal of confidence
## 16                        Don't know  A great deal of confidence
## 17        A great deal of confidence  A great deal of confidence
## 18        A great deal of confidence  A great deal of confidence
## 19        A great deal of confidence   Quite a lot of confidence
## 20                        Don't know                  Don't know
## 21         Quite a lot of confidence  A great deal of confidence
## 22            None at all confidence    Not very much confidence
## 23        A great deal of confidence  A great deal of confidence
## 24         Quite a lot of confidence    Not very much confidence
## 25          Not very much confidence  A great deal of confidence
## 26        A great deal of confidence  A great deal of confidence
## 27         Quite a lot of confidence    Not very much confidence
## 28        A great deal of confidence  A great deal of confidence
## 29         Quite a lot of confidence   Quite a lot of confidence
## 30         Quite a lot of confidence   Quite a lot of confidence
## 31        A great deal of confidence  A great deal of confidence
## 32         Quite a lot of confidence   Quite a lot of confidence
## 33        A great deal of confidence  A great deal of confidence
## 34          Not very much confidence   Quite a lot of confidence
## 35        A great deal of confidence  A great deal of confidence
## 36         Quite a lot of confidence   Quite a lot of confidence
## 37         Quite a lot of confidence    Not very much confidence
## 38         Quite a lot of confidence   Quite a lot of confidence
## 39          Not very much confidence    Not very much confidence
## 40         Quite a lot of confidence   Quite a lot of confidence
## 41            None at all confidence    Not very much confidence
## 42          Not very much confidence   Quite a lot of confidence
## 43         Quite a lot of confidence   Quite a lot of confidence
## 44          Not very much confidence    Not very much confidence
## 45         Quite a lot of confidence   Quite a lot of confidence
## 46        A great deal of confidence   Quite a lot of confidence
## 47         Quite a lot of confidence    Not very much confidence
## 48         Quite a lot of confidence    Not very much confidence
## 49         Quite a lot of confidence   Quite a lot of confidence
## 50         Quite a lot of confidence  A great deal of confidence
## 51          Not very much confidence    Not very much confidence
## 52                        Don't know                  Don't know
## 53          Not very much confidence   Quite a lot of confidence
## 54          Not very much confidence    Not very much confidence
## 55         Quite a lot of confidence   Quite a lot of confidence
## 56                        Don't know                  Don't know
## 57                        Don't know                  Don't know
## 58         Quite a lot of confidence   Quite a lot of confidence
## 59                        Don't know                  Don't know
## 60         Quite a lot of confidence      None at all confidence
## 61         Quite a lot of confidence   Quite a lot of confidence
## 62         Quite a lot of confidence   Quite a lot of confidence
## 63         Quite a lot of confidence   Quite a lot of confidence
## 64         Quite a lot of confidence   Quite a lot of confidence
## 65         Quite a lot of confidence   Quite a lot of confidence
## 66         Quite a lot of confidence   Quite a lot of confidence
## 67          Not very much confidence    Not very much confidence
## 68         Quite a lot of confidence   Quite a lot of confidence
## 69          Not very much confidence    Not very much confidence
## 70            None at all confidence      None at all confidence
## 71          Not very much confidence   Quite a lot of confidence
## 72         Quite a lot of confidence   Quite a lot of confidence
## 73         Quite a lot of confidence   Quite a lot of confidence
## 74         Quite a lot of confidence   Quite a lot of confidence
## 75         Quite a lot of confidence   Quite a lot of confidence
## 76         Quite a lot of confidence   Quite a lot of confidence
## 77         Quite a lot of confidence   Quite a lot of confidence
## 78         Quite a lot of confidence   Quite a lot of confidence
## 79         Quite a lot of confidence   Quite a lot of confidence
## 80         Quite a lot of confidence   Quite a lot of confidence
## 81         Quite a lot of confidence   Quite a lot of confidence
## 82          Not very much confidence   Quite a lot of confidence
## 83         Quite a lot of confidence   Quite a lot of confidence
## 84         Quite a lot of confidence   Quite a lot of confidence
## 85         Quite a lot of confidence   Quite a lot of confidence
## 86                        Don't know                  Don't know
## 87          Not very much confidence    Not very much confidence
## 88        A great deal of confidence  A great deal of confidence
## 89         Quite a lot of confidence   Quite a lot of confidence
## 90         Quite a lot of confidence   Quite a lot of confidence
## 91         Quite a lot of confidence   Quite a lot of confidence
## 92         Quite a lot of confidence   Quite a lot of confidence
## 93         Quite a lot of confidence   Quite a lot of confidence
## 94         Quite a lot of confidence   Quite a lot of confidence
## 95         Quite a lot of confidence   Quite a lot of confidence
## 96         Quite a lot of confidence   Quite a lot of confidence
## 97         Quite a lot of confidence   Quite a lot of confidence
## 98         Quite a lot of confidence   Quite a lot of confidence
## 99         Quite a lot of confidence   Quite a lot of confidence
## 100        Quite a lot of confidence   Quite a lot of confidence
## 101        Quite a lot of confidence  A great deal of confidence
## 102                       Don't know  A great deal of confidence
## 103       A great deal of confidence  A great deal of confidence
## 104                       Don't know  A great deal of confidence
## 105        Quite a lot of confidence  A great deal of confidence
## 106       A great deal of confidence  A great deal of confidence
## 107        Quite a lot of confidence  A great deal of confidence
## 108        Quite a lot of confidence   Quite a lot of confidence
## 109                       Don't know  A great deal of confidence
## 110       A great deal of confidence  A great deal of confidence
## 111                             <NA>                        <NA>
## 112        Quite a lot of confidence  A great deal of confidence
## 113       A great deal of confidence  A great deal of confidence
## 114       A great deal of confidence  A great deal of confidence
## 115        Quite a lot of confidence  A great deal of confidence
## 116       A great deal of confidence  A great deal of confidence
## 117       A great deal of confidence   Quite a lot of confidence
## 118                       Don't know  A great deal of confidence
## 119        Quite a lot of confidence  A great deal of confidence
## 120        Quite a lot of confidence  A great deal of confidence
## 121       A great deal of confidence  A great deal of confidence
## 122       A great deal of confidence  A great deal of confidence
## 123        Quite a lot of confidence   Quite a lot of confidence
## 124        Quite a lot of confidence   Quite a lot of confidence
## 125       A great deal of confidence   Quite a lot of confidence
## 126        Quite a lot of confidence  A great deal of confidence
## 127       A great deal of confidence  A great deal of confidence
## 128        Quite a lot of confidence  A great deal of confidence
## 129       A great deal of confidence  A great deal of confidence
## 130        Quite a lot of confidence                        <NA>
## 131        Quite a lot of confidence    Not very much confidence
## 132        Quite a lot of confidence   Quite a lot of confidence
## 133        Quite a lot of confidence  A great deal of confidence
## 134        Quite a lot of confidence  A great deal of confidence
## 135         Not very much confidence   Quite a lot of confidence
## 136           None at all confidence      None at all confidence
## 137                             <NA>  A great deal of confidence
## 138        Quite a lot of confidence   Quite a lot of confidence
## 139         Not very much confidence   Quite a lot of confidence
## 140         Not very much confidence   Quite a lot of confidence
## 141       A great deal of confidence  A great deal of confidence
## 142        Quite a lot of confidence  A great deal of confidence
## 143       A great deal of confidence  A great deal of confidence
## 144       A great deal of confidence  A great deal of confidence
## 145       A great deal of confidence  A great deal of confidence
## 146         Not very much confidence    Not very much confidence
## 147         Not very much confidence    Not very much confidence
## 148         Not very much confidence   Quite a lot of confidence
## 149       A great deal of confidence  A great deal of confidence
## 150                       Don't know                  Don't know
## 151                       Don't know                  Don't know
## 152       A great deal of confidence  A great deal of confidence
## 153                       Don't know  A great deal of confidence
## 154        Quite a lot of confidence  A great deal of confidence
## 155        Quite a lot of confidence   Quite a lot of confidence
## 156                       Don't know                  Don't know
## 157        Quite a lot of confidence   Quite a lot of confidence
## 158       A great deal of confidence   Quite a lot of confidence
## 159                             <NA>   Quite a lot of confidence
## 160        Quite a lot of confidence  A great deal of confidence
## 161       A great deal of confidence  A great deal of confidence
## 162       A great deal of confidence   Quite a lot of confidence
## 163                       Don't know                  Don't know
## 164                       Don't know                  Don't know
## 165       A great deal of confidence  A great deal of confidence
## 166       A great deal of confidence  A great deal of confidence
## 167       A great deal of confidence   Quite a lot of confidence
## 168       A great deal of confidence  A great deal of confidence
## 169       A great deal of confidence  A great deal of confidence
## 170       A great deal of confidence   Quite a lot of confidence
## 171       A great deal of confidence   Quite a lot of confidence
## 172                       Don't know  A great deal of confidence
## 173                       Don't know   Quite a lot of confidence
## 174       A great deal of confidence  A great deal of confidence
## 175       A great deal of confidence  A great deal of confidence
## 176           None at all confidence      None at all confidence
## 177       A great deal of confidence   Quite a lot of confidence
## 178       A great deal of confidence   Quite a lot of confidence
## 179                       Don't know  A great deal of confidence
## 180       A great deal of confidence   Quite a lot of confidence
## 181       A great deal of confidence  A great deal of confidence
## 182       A great deal of confidence  A great deal of confidence
## 183                       Don't know   Quite a lot of confidence
## 184                       Don't know   Quite a lot of confidence
## 185       A great deal of confidence   Quite a lot of confidence
## 186       A great deal of confidence   Quite a lot of confidence
## 187       A great deal of confidence  A great deal of confidence
## 188                       Don't know   Quite a lot of confidence
## 189                       Don't know  A great deal of confidence
## 190        Quite a lot of confidence  A great deal of confidence
## 191        Quite a lot of confidence   Quite a lot of confidence
## 192        Quite a lot of confidence  A great deal of confidence
## 193        Quite a lot of confidence  A great deal of confidence
## 194       A great deal of confidence   Quite a lot of confidence
## 195        Quite a lot of confidence  A great deal of confidence
## 196       A great deal of confidence  A great deal of confidence
## 197       A great deal of confidence  A great deal of confidence
## 198       A great deal of confidence  A great deal of confidence
## 199       A great deal of confidence  A great deal of confidence
## 200                             <NA>                        <NA>
## 201       A great deal of confidence  A great deal of confidence
## 202       A great deal of confidence  A great deal of confidence
## 203        Quite a lot of confidence  A great deal of confidence
## 204        Quite a lot of confidence   Quite a lot of confidence
## 205        Quite a lot of confidence   Quite a lot of confidence
## 206        Quite a lot of confidence   Quite a lot of confidence
## 207        Quite a lot of confidence   Quite a lot of confidence
## 208        Quite a lot of confidence   Quite a lot of confidence
## 209       A great deal of confidence   Quite a lot of confidence
## 210       A great deal of confidence  A great deal of confidence
## 211       A great deal of confidence  A great deal of confidence
## 212       A great deal of confidence  A great deal of confidence
## 213       A great deal of confidence  A great deal of confidence
## 214       A great deal of confidence  A great deal of confidence
## 215       A great deal of confidence  A great deal of confidence
## 216       A great deal of confidence  A great deal of confidence
## 217       A great deal of confidence  A great deal of confidence
## 218        Quite a lot of confidence  A great deal of confidence
## 219       A great deal of confidence  A great deal of confidence
## 220       A great deal of confidence  A great deal of confidence
## 221         Not very much confidence  A great deal of confidence
## 222       A great deal of confidence  A great deal of confidence
## 223       A great deal of confidence  A great deal of confidence
## 224         Not very much confidence   Quite a lot of confidence
## 225        Quite a lot of confidence    Not very much confidence
## 226       A great deal of confidence    Not very much confidence
## 227       A great deal of confidence  A great deal of confidence
## 228         Not very much confidence  A great deal of confidence
## 229       A great deal of confidence  A great deal of confidence
## 230       A great deal of confidence   Quite a lot of confidence
## 231       A great deal of confidence   Quite a lot of confidence
## 232        Quite a lot of confidence  A great deal of confidence
## 233       A great deal of confidence  A great deal of confidence
## 234       A great deal of confidence  A great deal of confidence
## 235       A great deal of confidence  A great deal of confidence
## 236       A great deal of confidence   Quite a lot of confidence
## 237       A great deal of confidence   Quite a lot of confidence
## 238        Quite a lot of confidence    Not very much confidence
## 239       A great deal of confidence  A great deal of confidence
## 240       A great deal of confidence  A great deal of confidence
## 241       A great deal of confidence  A great deal of confidence
## 242       A great deal of confidence  A great deal of confidence
## 243       A great deal of confidence  A great deal of confidence
## 244       A great deal of confidence  A great deal of confidence
## 245       A great deal of confidence  A great deal of confidence
## 246       A great deal of confidence   Quite a lot of confidence
## 247       A great deal of confidence   Quite a lot of confidence
## 248           None at all confidence   Quite a lot of confidence
## 249        Quite a lot of confidence    Not very much confidence
## 250         Not very much confidence    Not very much confidence
## 251        Quite a lot of confidence   Quite a lot of confidence
## 252        Quite a lot of confidence   Quite a lot of confidence
## 253        Quite a lot of confidence   Quite a lot of confidence
## 254        Quite a lot of confidence   Quite a lot of confidence
## 255        Quite a lot of confidence   Quite a lot of confidence
## 256        Quite a lot of confidence    Not very much confidence
## 257         Not very much confidence  A great deal of confidence
## 258       A great deal of confidence   Quite a lot of confidence
## 259       A great deal of confidence  A great deal of confidence
## 260        Quite a lot of confidence   Quite a lot of confidence
## 261         Not very much confidence    Not very much confidence
## 262        Quite a lot of confidence   Quite a lot of confidence
## 263        Quite a lot of confidence  A great deal of confidence
## 264        Quite a lot of confidence   Quite a lot of confidence
## 265        Quite a lot of confidence   Quite a lot of confidence
## 266        Quite a lot of confidence   Quite a lot of confidence
## 267        Quite a lot of confidence   Quite a lot of confidence
## 268        Quite a lot of confidence   Quite a lot of confidence
## 269        Quite a lot of confidence   Quite a lot of confidence
## 270        Quite a lot of confidence   Quite a lot of confidence
## 271        Quite a lot of confidence   Quite a lot of confidence
## 272        Quite a lot of confidence   Quite a lot of confidence
## 273        Quite a lot of confidence   Quite a lot of confidence
## 274        Quite a lot of confidence   Quite a lot of confidence
## 275        Quite a lot of confidence   Quite a lot of confidence
## 276        Quite a lot of confidence   Quite a lot of confidence
## 277        Quite a lot of confidence   Quite a lot of confidence
## 278        Quite a lot of confidence   Quite a lot of confidence
## 279        Quite a lot of confidence   Quite a lot of confidence
## 280        Quite a lot of confidence   Quite a lot of confidence
## 281       A great deal of confidence  A great deal of confidence
## 282        Quite a lot of confidence   Quite a lot of confidence
## 283       A great deal of confidence  A great deal of confidence
## 284        Quite a lot of confidence   Quite a lot of confidence
## 285        Quite a lot of confidence   Quite a lot of confidence
## 286        Quite a lot of confidence   Quite a lot of confidence
## 287        Quite a lot of confidence   Quite a lot of confidence
## 288        Quite a lot of confidence   Quite a lot of confidence
## 289       A great deal of confidence  A great deal of confidence
## 290       A great deal of confidence  A great deal of confidence
## 291        Quite a lot of confidence   Quite a lot of confidence
## 292                       Don't know   Quite a lot of confidence
## 293       A great deal of confidence  A great deal of confidence
## 294       A great deal of confidence  A great deal of confidence
## 295        Quite a lot of confidence   Quite a lot of confidence
## 296        Quite a lot of confidence   Quite a lot of confidence
## 297        Quite a lot of confidence   Quite a lot of confidence
## 298       A great deal of confidence  A great deal of confidence
## 299        Quite a lot of confidence   Quite a lot of confidence
## 300        Quite a lot of confidence  A great deal of confidence
## 302        Quite a lot of confidence   Quite a lot of confidence
## 303        Quite a lot of confidence  A great deal of confidence
## 304         Not very much confidence    Not very much confidence
## 305       A great deal of confidence    Not very much confidence
## 306         Not very much confidence   Quite a lot of confidence
## 307           None at all confidence    Not very much confidence
## 308         Not very much confidence    Not very much confidence
## 309        Quite a lot of confidence   Quite a lot of confidence
## 310         Not very much confidence  A great deal of confidence
## 311        Quite a lot of confidence   Quite a lot of confidence
## 312        Quite a lot of confidence   Quite a lot of confidence
## 313         Not very much confidence    Not very much confidence
## 314           None at all confidence  A great deal of confidence
## 315        Quite a lot of confidence    Not very much confidence
## 316         Not very much confidence    Not very much confidence
## 317        Quite a lot of confidence   Quite a lot of confidence
## 318        Quite a lot of confidence   Quite a lot of confidence
## 319         Not very much confidence    Not very much confidence
## 320        Quite a lot of confidence   Quite a lot of confidence
## 321        Quite a lot of confidence    Not very much confidence
## 322        Quite a lot of confidence   Quite a lot of confidence
## 323        Quite a lot of confidence   Quite a lot of confidence
## 324        Quite a lot of confidence   Quite a lot of confidence
## 325        Quite a lot of confidence   Quite a lot of confidence
## 326        Quite a lot of confidence   Quite a lot of confidence
## 327        Quite a lot of confidence   Quite a lot of confidence
## 328         Not very much confidence    Not very much confidence
## 329         Not very much confidence   Quite a lot of confidence
## 330         Not very much confidence   Quite a lot of confidence
## 331       A great deal of confidence   Quite a lot of confidence
## 332       A great deal of confidence   Quite a lot of confidence
## 333       A great deal of confidence   Quite a lot of confidence
## 334         Not very much confidence  A great deal of confidence
## 335       A great deal of confidence    Not very much confidence
## 336         Not very much confidence  A great deal of confidence
## 337        Quite a lot of confidence    Not very much confidence
## 338        Quite a lot of confidence    Not very much confidence
## 339        Quite a lot of confidence   Quite a lot of confidence
## 340       A great deal of confidence   Quite a lot of confidence
## 341         Not very much confidence    Not very much confidence
## 342        Quite a lot of confidence   Quite a lot of confidence
## 343       A great deal of confidence  A great deal of confidence
## 344         Not very much confidence   Quite a lot of confidence
## 345        Quite a lot of confidence   Quite a lot of confidence
## 346        Quite a lot of confidence   Quite a lot of confidence
## 347        Quite a lot of confidence   Quite a lot of confidence
## 348                       Don't know   Quite a lot of confidence
## 349        Quite a lot of confidence  A great deal of confidence
## 350        Quite a lot of confidence   Quite a lot of confidence
## 351        Quite a lot of confidence   Quite a lot of confidence
## 352                       Don't know                  Don't know
## 353        Quite a lot of confidence   Quite a lot of confidence
## 354        Quite a lot of confidence   Quite a lot of confidence
## 355       A great deal of confidence  A great deal of confidence
## 356        Quite a lot of confidence   Quite a lot of confidence
## 357        Quite a lot of confidence   Quite a lot of confidence
## 358        Quite a lot of confidence   Quite a lot of confidence
## 359        Quite a lot of confidence   Quite a lot of confidence
## 360       A great deal of confidence   Quite a lot of confidence
## 361        Quite a lot of confidence    Not very much confidence
## 362        Quite a lot of confidence   Quite a lot of confidence
## 363        Quite a lot of confidence   Quite a lot of confidence
## 364        Quite a lot of confidence   Quite a lot of confidence
## 365                       Don't know                  Don't know
## 366        Quite a lot of confidence   Quite a lot of confidence
## 367        Quite a lot of confidence   Quite a lot of confidence
## 368        Quite a lot of confidence   Quite a lot of confidence
## 369        Quite a lot of confidence   Quite a lot of confidence
## 370        Quite a lot of confidence   Quite a lot of confidence
## 371        Quite a lot of confidence   Quite a lot of confidence
## 372        Quite a lot of confidence   Quite a lot of confidence
## 373       A great deal of confidence  A great deal of confidence
## 374        Quite a lot of confidence   Quite a lot of confidence
## 375        Quite a lot of confidence   Quite a lot of confidence
## 376        Quite a lot of confidence   Quite a lot of confidence
## 377       A great deal of confidence   Quite a lot of confidence
## 378        Quite a lot of confidence   Quite a lot of confidence
## 379        Quite a lot of confidence   Quite a lot of confidence
## 380        Quite a lot of confidence   Quite a lot of confidence
## 381        Quite a lot of confidence   Quite a lot of confidence
## 382        Quite a lot of confidence   Quite a lot of confidence
## 383        Quite a lot of confidence   Quite a lot of confidence
## 384        Quite a lot of confidence   Quite a lot of confidence
## 385        Quite a lot of confidence   Quite a lot of confidence
## 386        Quite a lot of confidence   Quite a lot of confidence
## 387        Quite a lot of confidence   Quite a lot of confidence
## 388        Quite a lot of confidence   Quite a lot of confidence
## 389        Quite a lot of confidence   Quite a lot of confidence
## 390         Not very much confidence   Quite a lot of confidence
## 391        Quite a lot of confidence   Quite a lot of confidence
## 392        Quite a lot of confidence   Quite a lot of confidence
## 393        Quite a lot of confidence   Quite a lot of confidence
## 394        Quite a lot of confidence   Quite a lot of confidence
## 395        Quite a lot of confidence   Quite a lot of confidence
## 396        Quite a lot of confidence   Quite a lot of confidence
## 397        Quite a lot of confidence   Quite a lot of confidence
## 398        Quite a lot of confidence   Quite a lot of confidence
## 399        Quite a lot of confidence   Quite a lot of confidence
## 400        Quite a lot of confidence   Quite a lot of confidence
## 401        Quite a lot of confidence   Quite a lot of confidence
## 402        Quite a lot of confidence   Quite a lot of confidence
## 403       A great deal of confidence  A great deal of confidence
## 404        Quite a lot of confidence   Quite a lot of confidence
## 405         Not very much confidence    Not very much confidence
## 406       A great deal of confidence  A great deal of confidence
## 407        Quite a lot of confidence  A great deal of confidence
## 408        Quite a lot of confidence  A great deal of confidence
## 409        Quite a lot of confidence   Quite a lot of confidence
## 410       A great deal of confidence  A great deal of confidence
## 411       A great deal of confidence  A great deal of confidence
## 412       A great deal of confidence  A great deal of confidence
## 413       A great deal of confidence  A great deal of confidence
## 414        Quite a lot of confidence   Quite a lot of confidence
## 415                       Don't know   Quite a lot of confidence
## 416        Quite a lot of confidence   Quite a lot of confidence
## 417        Quite a lot of confidence   Quite a lot of confidence
## 418       A great deal of confidence  A great deal of confidence
## 419        Quite a lot of confidence   Quite a lot of confidence
## 420        Quite a lot of confidence   Quite a lot of confidence
## 421       A great deal of confidence  A great deal of confidence
## 422                       Don't know  A great deal of confidence
## 423        Quite a lot of confidence   Quite a lot of confidence
## 424       A great deal of confidence  A great deal of confidence
## 425       A great deal of confidence  A great deal of confidence
## 426       A great deal of confidence  A great deal of confidence
## 427       A great deal of confidence  A great deal of confidence
## 428                       Don't know                  Don't know
## 429        Quite a lot of confidence   Quite a lot of confidence
## 430       A great deal of confidence  A great deal of confidence
## 431       A great deal of confidence  A great deal of confidence
## 432                       Don't know                  Don't know
## 433       A great deal of confidence  A great deal of confidence
## 434       A great deal of confidence  A great deal of confidence
## 435        Quite a lot of confidence   Quite a lot of confidence
## 436       A great deal of confidence  A great deal of confidence
## 437       A great deal of confidence  A great deal of confidence
## 438        Quite a lot of confidence   Quite a lot of confidence
## 439       A great deal of confidence  A great deal of confidence
## 440        Quite a lot of confidence   Quite a lot of confidence
## 441       A great deal of confidence  A great deal of confidence
## 442                             <NA>   Quite a lot of confidence
## 443       A great deal of confidence  A great deal of confidence
## 444        Quite a lot of confidence   Quite a lot of confidence
## 445       A great deal of confidence  A great deal of confidence
## 446       A great deal of confidence  A great deal of confidence
## 447       A great deal of confidence  A great deal of confidence
## 448       A great deal of confidence  A great deal of confidence
## 449       A great deal of confidence  A great deal of confidence
## 450        Quite a lot of confidence   Quite a lot of confidence
## 451        Quite a lot of confidence   Quite a lot of confidence
## 452       A great deal of confidence  A great deal of confidence
## 453         Not very much confidence   Quite a lot of confidence
## 454         Not very much confidence    Not very much confidence
## 455       A great deal of confidence   Quite a lot of confidence
## 456           None at all confidence      None at all confidence
## 457        Quite a lot of confidence   Quite a lot of confidence
## 458         Not very much confidence    Not very much confidence
## 459        Quite a lot of confidence   Quite a lot of confidence
## 460           None at all confidence      None at all confidence
## 461                       Don't know    Not very much confidence
## 462       A great deal of confidence   Quite a lot of confidence
## 463         Not very much confidence   Quite a lot of confidence
## 464           None at all confidence   Quite a lot of confidence
## 465        Quite a lot of confidence    Not very much confidence
## 466           None at all confidence      None at all confidence
## 467       A great deal of confidence  A great deal of confidence
## 468        Quite a lot of confidence   Quite a lot of confidence
## 469        Quite a lot of confidence  A great deal of confidence
## 470       A great deal of confidence  A great deal of confidence
## 471        Quite a lot of confidence  A great deal of confidence
## 472       A great deal of confidence  A great deal of confidence
## 473       A great deal of confidence  A great deal of confidence
## 474        Quite a lot of confidence   Quite a lot of confidence
## 475        Quite a lot of confidence   Quite a lot of confidence
## 476         Not very much confidence    Not very much confidence
## 477        Quite a lot of confidence   Quite a lot of confidence
## 478        Quite a lot of confidence                        <NA>
## 479                       Don't know                  Don't know
## 480        Quite a lot of confidence   Quite a lot of confidence
## 481        Quite a lot of confidence   Quite a lot of confidence
## 482           None at all confidence      None at all confidence
## 483        Quite a lot of confidence   Quite a lot of confidence
## 484         Not very much confidence    Not very much confidence
## 485       A great deal of confidence   Quite a lot of confidence
## 486       A great deal of confidence  A great deal of confidence
## 487                       Don't know                  Don't know
## 488        Quite a lot of confidence   Quite a lot of confidence
## 489        Quite a lot of confidence   Quite a lot of confidence
## 490           None at all confidence      None at all confidence
## 491        Quite a lot of confidence   Quite a lot of confidence
## 492       A great deal of confidence   Quite a lot of confidence
## 493         Not very much confidence    Not very much confidence
## 494         Not very much confidence    Not very much confidence
## 495       A great deal of confidence  A great deal of confidence
## 496        Quite a lot of confidence   Quite a lot of confidence
##       Confidence.in..The.Police    Confidence.in..The.Army
## 1     Quite a lot of confidence  Quite a lot of confidence
## 2     Quite a lot of confidence  Quite a lot of confidence
## 3      Not very much confidence   Not very much confidence
## 4     Quite a lot of confidence A great deal of confidence
## 5     Quite a lot of confidence  Quite a lot of confidence
## 6    A great deal of confidence A great deal of confidence
## 7    A great deal of confidence A great deal of confidence
## 8    A great deal of confidence A great deal of confidence
## 9    A great deal of confidence A great deal of confidence
## 10    Quite a lot of confidence  Quite a lot of confidence
## 11    Quite a lot of confidence  Quite a lot of confidence
## 12    Quite a lot of confidence  Quite a lot of confidence
## 13    Quite a lot of confidence  Quite a lot of confidence
## 14     Not very much confidence A great deal of confidence
## 15     Not very much confidence A great deal of confidence
## 16    Quite a lot of confidence   Not very much confidence
## 17   A great deal of confidence A great deal of confidence
## 18   A great deal of confidence A great deal of confidence
## 19    Quite a lot of confidence   Not very much confidence
## 20    Quite a lot of confidence  Quite a lot of confidence
## 21    Quite a lot of confidence A great deal of confidence
## 22     Not very much confidence     None at all confidence
## 23   A great deal of confidence A great deal of confidence
## 24     Not very much confidence  Quite a lot of confidence
## 25   A great deal of confidence A great deal of confidence
## 26    Quite a lot of confidence                 Don't know
## 27     Not very much confidence   Not very much confidence
## 28   A great deal of confidence A great deal of confidence
## 29     Not very much confidence   Not very much confidence
## 30     Not very much confidence   Not very much confidence
## 31   A great deal of confidence A great deal of confidence
## 32    Quite a lot of confidence                 Don't know
## 33   A great deal of confidence A great deal of confidence
## 34     Not very much confidence   Not very much confidence
## 35   A great deal of confidence A great deal of confidence
## 36     Not very much confidence   Not very much confidence
## 37     Not very much confidence  Quite a lot of confidence
## 38    Quite a lot of confidence A great deal of confidence
## 39     Not very much confidence  Quite a lot of confidence
## 40     Not very much confidence  Quite a lot of confidence
## 41     Not very much confidence  Quite a lot of confidence
## 42     Not very much confidence  Quite a lot of confidence
## 43     Not very much confidence  Quite a lot of confidence
## 44     Not very much confidence  Quite a lot of confidence
## 45    Quite a lot of confidence  Quite a lot of confidence
## 46     Not very much confidence   Not very much confidence
## 47     Not very much confidence  Quite a lot of confidence
## 48    Quite a lot of confidence  Quite a lot of confidence
## 49    Quite a lot of confidence  Quite a lot of confidence
## 50    Quite a lot of confidence  Quite a lot of confidence
## 51     Not very much confidence  Quite a lot of confidence
## 52     Not very much confidence                 Don't know
## 53    Quite a lot of confidence  Quite a lot of confidence
## 54     Not very much confidence  Quite a lot of confidence
## 55     Not very much confidence  Quite a lot of confidence
## 56    Quite a lot of confidence                 Don't know
## 57    Quite a lot of confidence  Quite a lot of confidence
## 58     Not very much confidence  Quite a lot of confidence
## 59     Not very much confidence A great deal of confidence
## 60    Quite a lot of confidence                 Don't know
## 61    Quite a lot of confidence  Quite a lot of confidence
## 62    Quite a lot of confidence  Quite a lot of confidence
## 63    Quite a lot of confidence  Quite a lot of confidence
## 64    Quite a lot of confidence  Quite a lot of confidence
## 65    Quite a lot of confidence  Quite a lot of confidence
## 66    Quite a lot of confidence  Quite a lot of confidence
## 67     Not very much confidence   Not very much confidence
## 68    Quite a lot of confidence  Quite a lot of confidence
## 69       None at all confidence     None at all confidence
## 70       None at all confidence   Not very much confidence
## 71    Quite a lot of confidence  Quite a lot of confidence
## 72    Quite a lot of confidence  Quite a lot of confidence
## 73    Quite a lot of confidence  Quite a lot of confidence
## 74    Quite a lot of confidence  Quite a lot of confidence
## 75    Quite a lot of confidence  Quite a lot of confidence
## 76    Quite a lot of confidence  Quite a lot of confidence
## 77    Quite a lot of confidence  Quite a lot of confidence
## 78    Quite a lot of confidence  Quite a lot of confidence
## 79    Quite a lot of confidence  Quite a lot of confidence
## 80    Quite a lot of confidence  Quite a lot of confidence
## 81    Quite a lot of confidence  Quite a lot of confidence
## 82    Quite a lot of confidence  Quite a lot of confidence
## 83     Not very much confidence   Not very much confidence
## 84    Quite a lot of confidence  Quite a lot of confidence
## 85    Quite a lot of confidence  Quite a lot of confidence
## 86                   Don't know                 Don't know
## 87     Not very much confidence  Quite a lot of confidence
## 88    Quite a lot of confidence  Quite a lot of confidence
## 89    Quite a lot of confidence  Quite a lot of confidence
## 90    Quite a lot of confidence  Quite a lot of confidence
## 91    Quite a lot of confidence  Quite a lot of confidence
## 92    Quite a lot of confidence  Quite a lot of confidence
## 93    Quite a lot of confidence  Quite a lot of confidence
## 94    Quite a lot of confidence  Quite a lot of confidence
## 95    Quite a lot of confidence  Quite a lot of confidence
## 96    Quite a lot of confidence  Quite a lot of confidence
## 97    Quite a lot of confidence  Quite a lot of confidence
## 98    Quite a lot of confidence  Quite a lot of confidence
## 99    Quite a lot of confidence  Quite a lot of confidence
## 100   Quite a lot of confidence  Quite a lot of confidence
## 101   Quite a lot of confidence  Quite a lot of confidence
## 102  A great deal of confidence A great deal of confidence
## 103  A great deal of confidence A great deal of confidence
## 104  A great deal of confidence A great deal of confidence
## 105  A great deal of confidence A great deal of confidence
## 106  A great deal of confidence A great deal of confidence
## 107  A great deal of confidence A great deal of confidence
## 108    Not very much confidence   Not very much confidence
## 109  A great deal of confidence A great deal of confidence
## 110  A great deal of confidence A great deal of confidence
## 111                        <NA>                       <NA>
## 112  A great deal of confidence A great deal of confidence
## 113  A great deal of confidence A great deal of confidence
## 114  A great deal of confidence A great deal of confidence
## 115    Not very much confidence A great deal of confidence
## 116  A great deal of confidence                 Don't know
## 117  A great deal of confidence A great deal of confidence
## 118  A great deal of confidence A great deal of confidence
## 119  A great deal of confidence A great deal of confidence
## 120  A great deal of confidence A great deal of confidence
## 121  A great deal of confidence A great deal of confidence
## 122  A great deal of confidence A great deal of confidence
## 123  A great deal of confidence A great deal of confidence
## 124   Quite a lot of confidence  Quite a lot of confidence
## 125   Quite a lot of confidence A great deal of confidence
## 126  A great deal of confidence A great deal of confidence
## 127  A great deal of confidence A great deal of confidence
## 128  A great deal of confidence A great deal of confidence
## 129  A great deal of confidence A great deal of confidence
## 130   Quite a lot of confidence A great deal of confidence
## 131   Quite a lot of confidence  Quite a lot of confidence
## 132  A great deal of confidence A great deal of confidence
## 133  A great deal of confidence A great deal of confidence
## 134  A great deal of confidence A great deal of confidence
## 135    Not very much confidence  Quite a lot of confidence
## 136      None at all confidence     None at all confidence
## 137   Quite a lot of confidence  Quite a lot of confidence
## 138   Quite a lot of confidence   Not very much confidence
## 139   Quite a lot of confidence  Quite a lot of confidence
## 140    Not very much confidence  Quite a lot of confidence
## 141  A great deal of confidence A great deal of confidence
## 142  A great deal of confidence  Quite a lot of confidence
## 143  A great deal of confidence A great deal of confidence
## 144  A great deal of confidence A great deal of confidence
## 145  A great deal of confidence                 Don't know
## 146    Not very much confidence   Not very much confidence
## 147   Quite a lot of confidence  Quite a lot of confidence
## 148   Quite a lot of confidence  Quite a lot of confidence
## 149   Quite a lot of confidence  Quite a lot of confidence
## 150   Quite a lot of confidence A great deal of confidence
## 151  A great deal of confidence A great deal of confidence
## 152  A great deal of confidence A great deal of confidence
## 153   Quite a lot of confidence  Quite a lot of confidence
## 154  A great deal of confidence A great deal of confidence
## 155   Quite a lot of confidence A great deal of confidence
## 156  A great deal of confidence A great deal of confidence
## 157   Quite a lot of confidence  Quite a lot of confidence
## 158   Quite a lot of confidence A great deal of confidence
## 159   Quite a lot of confidence  Quite a lot of confidence
## 160  A great deal of confidence A great deal of confidence
## 161  A great deal of confidence A great deal of confidence
## 162  A great deal of confidence A great deal of confidence
## 163   Quite a lot of confidence  Quite a lot of confidence
## 164  A great deal of confidence A great deal of confidence
## 165  A great deal of confidence A great deal of confidence
## 166  A great deal of confidence A great deal of confidence
## 167   Quite a lot of confidence A great deal of confidence
## 168  A great deal of confidence A great deal of confidence
## 169  A great deal of confidence A great deal of confidence
## 170  A great deal of confidence A great deal of confidence
## 171  A great deal of confidence A great deal of confidence
## 172   Quite a lot of confidence  Quite a lot of confidence
## 173  A great deal of confidence  Quite a lot of confidence
## 174  A great deal of confidence A great deal of confidence
## 175  A great deal of confidence A great deal of confidence
## 176  A great deal of confidence A great deal of confidence
## 177   Quite a lot of confidence  Quite a lot of confidence
## 178  A great deal of confidence A great deal of confidence
## 179   Quite a lot of confidence A great deal of confidence
## 180  A great deal of confidence  Quite a lot of confidence
## 181  A great deal of confidence A great deal of confidence
## 182   Quite a lot of confidence  Quite a lot of confidence
## 183  A great deal of confidence  Quite a lot of confidence
## 184  A great deal of confidence A great deal of confidence
## 185  A great deal of confidence A great deal of confidence
## 186  A great deal of confidence  Quite a lot of confidence
## 187  A great deal of confidence A great deal of confidence
## 188  A great deal of confidence A great deal of confidence
## 189   Quite a lot of confidence A great deal of confidence
## 190  A great deal of confidence A great deal of confidence
## 191  A great deal of confidence A great deal of confidence
## 192  A great deal of confidence A great deal of confidence
## 193  A great deal of confidence A great deal of confidence
## 194   Quite a lot of confidence  Quite a lot of confidence
## 195  A great deal of confidence A great deal of confidence
## 196   Quite a lot of confidence  Quite a lot of confidence
## 197  A great deal of confidence A great deal of confidence
## 198  A great deal of confidence A great deal of confidence
## 199  A great deal of confidence A great deal of confidence
## 200                        <NA> A great deal of confidence
## 201   Quite a lot of confidence A great deal of confidence
## 202   Quite a lot of confidence A great deal of confidence
## 203    Not very much confidence A great deal of confidence
## 204    Not very much confidence  Quite a lot of confidence
## 205    Not very much confidence A great deal of confidence
## 206  A great deal of confidence A great deal of confidence
## 207   Quite a lot of confidence A great deal of confidence
## 208  A great deal of confidence A great deal of confidence
## 209    Not very much confidence A great deal of confidence
## 210   Quite a lot of confidence A great deal of confidence
## 211   Quite a lot of confidence A great deal of confidence
## 212   Quite a lot of confidence  Quite a lot of confidence
## 213   Quite a lot of confidence A great deal of confidence
## 214   Quite a lot of confidence A great deal of confidence
## 215   Quite a lot of confidence A great deal of confidence
## 216   Quite a lot of confidence A great deal of confidence
## 217   Quite a lot of confidence A great deal of confidence
## 218   Quite a lot of confidence A great deal of confidence
## 219   Quite a lot of confidence A great deal of confidence
## 220   Quite a lot of confidence A great deal of confidence
## 221    Not very much confidence A great deal of confidence
## 222    Not very much confidence A great deal of confidence
## 223   Quite a lot of confidence A great deal of confidence
## 224    Not very much confidence  Quite a lot of confidence
## 225  A great deal of confidence  Quite a lot of confidence
## 226   Quite a lot of confidence   Not very much confidence
## 227   Quite a lot of confidence A great deal of confidence
## 228   Quite a lot of confidence A great deal of confidence
## 229   Quite a lot of confidence A great deal of confidence
## 230   Quite a lot of confidence  Quite a lot of confidence
## 231   Quite a lot of confidence A great deal of confidence
## 232  A great deal of confidence A great deal of confidence
## 233   Quite a lot of confidence  Quite a lot of confidence
## 234   Quite a lot of confidence  Quite a lot of confidence
## 235   Quite a lot of confidence  Quite a lot of confidence
## 236    Not very much confidence     None at all confidence
## 237    Not very much confidence  Quite a lot of confidence
## 238      None at all confidence     None at all confidence
## 239   Quite a lot of confidence  Quite a lot of confidence
## 240   Quite a lot of confidence  Quite a lot of confidence
## 241   Quite a lot of confidence  Quite a lot of confidence
## 242   Quite a lot of confidence  Quite a lot of confidence
## 243    Not very much confidence  Quite a lot of confidence
## 244   Quite a lot of confidence  Quite a lot of confidence
## 245      None at all confidence  Quite a lot of confidence
## 246   Quite a lot of confidence  Quite a lot of confidence
## 247    Not very much confidence A great deal of confidence
## 248   Quite a lot of confidence A great deal of confidence
## 249   Quite a lot of confidence   Not very much confidence
## 250      None at all confidence A great deal of confidence
## 251  A great deal of confidence  Quite a lot of confidence
## 252   Quite a lot of confidence  Quite a lot of confidence
## 253   Quite a lot of confidence  Quite a lot of confidence
## 254    Not very much confidence  Quite a lot of confidence
## 255   Quite a lot of confidence  Quite a lot of confidence
## 256    Not very much confidence   Not very much confidence
## 257  A great deal of confidence A great deal of confidence
## 258  A great deal of confidence  Quite a lot of confidence
## 259  A great deal of confidence A great deal of confidence
## 260   Quite a lot of confidence  Quite a lot of confidence
## 261    Not very much confidence   Not very much confidence
## 262   Quite a lot of confidence  Quite a lot of confidence
## 263   Quite a lot of confidence A great deal of confidence
## 264   Quite a lot of confidence  Quite a lot of confidence
## 265   Quite a lot of confidence  Quite a lot of confidence
## 266   Quite a lot of confidence  Quite a lot of confidence
## 267   Quite a lot of confidence  Quite a lot of confidence
## 268   Quite a lot of confidence  Quite a lot of confidence
## 269   Quite a lot of confidence  Quite a lot of confidence
## 270   Quite a lot of confidence  Quite a lot of confidence
## 271   Quite a lot of confidence  Quite a lot of confidence
## 272   Quite a lot of confidence  Quite a lot of confidence
## 273   Quite a lot of confidence  Quite a lot of confidence
## 274  A great deal of confidence  Quite a lot of confidence
## 275   Quite a lot of confidence  Quite a lot of confidence
## 276    Not very much confidence  Quite a lot of confidence
## 277   Quite a lot of confidence  Quite a lot of confidence
## 278   Quite a lot of confidence  Quite a lot of confidence
## 279   Quite a lot of confidence  Quite a lot of confidence
## 280   Quite a lot of confidence  Quite a lot of confidence
## 281  A great deal of confidence A great deal of confidence
## 282   Quite a lot of confidence  Quite a lot of confidence
## 283  A great deal of confidence A great deal of confidence
## 284    Not very much confidence  Quite a lot of confidence
## 285   Quite a lot of confidence  Quite a lot of confidence
## 286   Quite a lot of confidence  Quite a lot of confidence
## 287   Quite a lot of confidence  Quite a lot of confidence
## 288   Quite a lot of confidence  Quite a lot of confidence
## 289  A great deal of confidence  Quite a lot of confidence
## 290  A great deal of confidence A great deal of confidence
## 291   Quite a lot of confidence  Quite a lot of confidence
## 292   Quite a lot of confidence  Quite a lot of confidence
## 293  A great deal of confidence A great deal of confidence
## 294  A great deal of confidence A great deal of confidence
## 295   Quite a lot of confidence  Quite a lot of confidence
## 296  A great deal of confidence A great deal of confidence
## 297   Quite a lot of confidence                 Don't know
## 298  A great deal of confidence   Not very much confidence
## 299   Quite a lot of confidence  Quite a lot of confidence
## 300  A great deal of confidence A great deal of confidence
## 302   Quite a lot of confidence  Quite a lot of confidence
## 303    Not very much confidence   Not very much confidence
## 304   Quite a lot of confidence  Quite a lot of confidence
## 305   Quite a lot of confidence   Not very much confidence
## 306      None at all confidence   Not very much confidence
## 307    Not very much confidence  Quite a lot of confidence
## 308    Not very much confidence  Quite a lot of confidence
## 309   Quite a lot of confidence   Not very much confidence
## 310      None at all confidence   Not very much confidence
## 311   Quite a lot of confidence  Quite a lot of confidence
## 312   Quite a lot of confidence  Quite a lot of confidence
## 313    Not very much confidence   Not very much confidence
## 314  A great deal of confidence A great deal of confidence
## 315   Quite a lot of confidence A great deal of confidence
## 316   Quite a lot of confidence  Quite a lot of confidence
## 317    Not very much confidence  Quite a lot of confidence
## 318   Quite a lot of confidence  Quite a lot of confidence
## 319    Not very much confidence  Quite a lot of confidence
## 320    Not very much confidence  Quite a lot of confidence
## 321   Quite a lot of confidence   Not very much confidence
## 322   Quite a lot of confidence  Quite a lot of confidence
## 323   Quite a lot of confidence  Quite a lot of confidence
## 324   Quite a lot of confidence  Quite a lot of confidence
## 325   Quite a lot of confidence  Quite a lot of confidence
## 326   Quite a lot of confidence  Quite a lot of confidence
## 327   Quite a lot of confidence  Quite a lot of confidence
## 328    Not very much confidence   Not very much confidence
## 329  A great deal of confidence A great deal of confidence
## 330    Not very much confidence A great deal of confidence
## 331    Not very much confidence     None at all confidence
## 332    Not very much confidence  Quite a lot of confidence
## 333    Not very much confidence  Quite a lot of confidence
## 334   Quite a lot of confidence   Not very much confidence
## 335   Quite a lot of confidence A great deal of confidence
## 336    Not very much confidence  Quite a lot of confidence
## 337   Quite a lot of confidence     None at all confidence
## 338   Quite a lot of confidence A great deal of confidence
## 339    Not very much confidence A great deal of confidence
## 340   Quite a lot of confidence A great deal of confidence
## 341    Not very much confidence  Quite a lot of confidence
## 342   Quite a lot of confidence  Quite a lot of confidence
## 343   Quite a lot of confidence  Quite a lot of confidence
## 344   Quite a lot of confidence  Quite a lot of confidence
## 345   Quite a lot of confidence                 Don't know
## 346    Not very much confidence  Quite a lot of confidence
## 347    Not very much confidence   Not very much confidence
## 348    Not very much confidence                 Don't know
## 349    Not very much confidence   Not very much confidence
## 350   Quite a lot of confidence  Quite a lot of confidence
## 351    Not very much confidence   Not very much confidence
## 352                  Don't know                 Don't know
## 353      None at all confidence  Quite a lot of confidence
## 354   Quite a lot of confidence  Quite a lot of confidence
## 355   Quite a lot of confidence  Quite a lot of confidence
## 356      None at all confidence  Quite a lot of confidence
## 357   Quite a lot of confidence  Quite a lot of confidence
## 358   Quite a lot of confidence A great deal of confidence
## 359    Not very much confidence  Quite a lot of confidence
## 360  A great deal of confidence  Quite a lot of confidence
## 361  A great deal of confidence A great deal of confidence
## 362      None at all confidence  Quite a lot of confidence
## 363   Quite a lot of confidence  Quite a lot of confidence
## 364   Quite a lot of confidence  Quite a lot of confidence
## 365   Quite a lot of confidence  Quite a lot of confidence
## 366    Not very much confidence  Quite a lot of confidence
## 367   Quite a lot of confidence  Quite a lot of confidence
## 368    Not very much confidence   Not very much confidence
## 369    Not very much confidence  Quite a lot of confidence
## 370   Quite a lot of confidence  Quite a lot of confidence
## 371   Quite a lot of confidence  Quite a lot of confidence
## 372   Quite a lot of confidence   Not very much confidence
## 373   Quite a lot of confidence  Quite a lot of confidence
## 374    Not very much confidence  Quite a lot of confidence
## 375   Quite a lot of confidence A great deal of confidence
## 376   Quite a lot of confidence  Quite a lot of confidence
## 377   Quite a lot of confidence  Quite a lot of confidence
## 378   Quite a lot of confidence A great deal of confidence
## 379      None at all confidence  Quite a lot of confidence
## 380   Quite a lot of confidence  Quite a lot of confidence
## 381   Quite a lot of confidence  Quite a lot of confidence
## 382   Quite a lot of confidence  Quite a lot of confidence
## 383   Quite a lot of confidence  Quite a lot of confidence
## 384   Quite a lot of confidence  Quite a lot of confidence
## 385   Quite a lot of confidence  Quite a lot of confidence
## 386   Quite a lot of confidence  Quite a lot of confidence
## 387   Quite a lot of confidence  Quite a lot of confidence
## 388   Quite a lot of confidence  Quite a lot of confidence
## 389   Quite a lot of confidence  Quite a lot of confidence
## 390      None at all confidence     None at all confidence
## 391   Quite a lot of confidence  Quite a lot of confidence
## 392    Not very much confidence  Quite a lot of confidence
## 393   Quite a lot of confidence  Quite a lot of confidence
## 394   Quite a lot of confidence A great deal of confidence
## 395   Quite a lot of confidence  Quite a lot of confidence
## 396    Not very much confidence  Quite a lot of confidence
## 397    Not very much confidence A great deal of confidence
## 398   Quite a lot of confidence  Quite a lot of confidence
## 399   Quite a lot of confidence  Quite a lot of confidence
## 400   Quite a lot of confidence A great deal of confidence
## 401   Quite a lot of confidence  Quite a lot of confidence
## 402   Quite a lot of confidence  Quite a lot of confidence
## 403  A great deal of confidence A great deal of confidence
## 404   Quite a lot of confidence  Quite a lot of confidence
## 405    Not very much confidence  Quite a lot of confidence
## 406  A great deal of confidence A great deal of confidence
## 407  A great deal of confidence A great deal of confidence
## 408  A great deal of confidence A great deal of confidence
## 409    Not very much confidence A great deal of confidence
## 410  A great deal of confidence A great deal of confidence
## 411   Quite a lot of confidence  Quite a lot of confidence
## 412  A great deal of confidence A great deal of confidence
## 413  A great deal of confidence A great deal of confidence
## 414  A great deal of confidence                       <NA>
## 415   Quite a lot of confidence  Quite a lot of confidence
## 416   Quite a lot of confidence  Quite a lot of confidence
## 417   Quite a lot of confidence  Quite a lot of confidence
## 418  A great deal of confidence A great deal of confidence
## 419   Quite a lot of confidence  Quite a lot of confidence
## 420  A great deal of confidence A great deal of confidence
## 421  A great deal of confidence A great deal of confidence
## 422  A great deal of confidence A great deal of confidence
## 423   Quite a lot of confidence  Quite a lot of confidence
## 424  A great deal of confidence A great deal of confidence
## 425  A great deal of confidence A great deal of confidence
## 426  A great deal of confidence A great deal of confidence
## 427  A great deal of confidence A great deal of confidence
## 428                  Don't know                 Don't know
## 429   Quite a lot of confidence  Quite a lot of confidence
## 430  A great deal of confidence A great deal of confidence
## 431  A great deal of confidence A great deal of confidence
## 432                  Don't know                 Don't know
## 433  A great deal of confidence A great deal of confidence
## 434  A great deal of confidence A great deal of confidence
## 435   Quite a lot of confidence  Quite a lot of confidence
## 436  A great deal of confidence A great deal of confidence
## 437  A great deal of confidence A great deal of confidence
## 438   Quite a lot of confidence                       <NA>
## 439  A great deal of confidence A great deal of confidence
## 440   Quite a lot of confidence  Quite a lot of confidence
## 441  A great deal of confidence A great deal of confidence
## 442   Quite a lot of confidence  Quite a lot of confidence
## 443  A great deal of confidence A great deal of confidence
## 444   Quite a lot of confidence  Quite a lot of confidence
## 445  A great deal of confidence A great deal of confidence
## 446  A great deal of confidence A great deal of confidence
## 447  A great deal of confidence   Not very much confidence
## 448  A great deal of confidence A great deal of confidence
## 449  A great deal of confidence A great deal of confidence
## 450   Quite a lot of confidence  Quite a lot of confidence
## 451   Quite a lot of confidence     None at all confidence
## 452    Not very much confidence   Not very much confidence
## 453   Quite a lot of confidence  Quite a lot of confidence
## 454    Not very much confidence   Not very much confidence
## 455    Not very much confidence   Not very much confidence
## 456   Quite a lot of confidence  Quite a lot of confidence
## 457   Quite a lot of confidence  Quite a lot of confidence
## 458    Not very much confidence  Quite a lot of confidence
## 459    Not very much confidence  Quite a lot of confidence
## 460                  Don't know  Quite a lot of confidence
## 461  A great deal of confidence                       <NA>
## 462   Quite a lot of confidence  Quite a lot of confidence
## 463  A great deal of confidence   Not very much confidence
## 464   Quite a lot of confidence  Quite a lot of confidence
## 465  A great deal of confidence A great deal of confidence
## 466    Not very much confidence  Quite a lot of confidence
## 467  A great deal of confidence A great deal of confidence
## 468      None at all confidence A great deal of confidence
## 469    Not very much confidence  Quite a lot of confidence
## 470    Not very much confidence  Quite a lot of confidence
## 471    Not very much confidence A great deal of confidence
## 472   Quite a lot of confidence  Quite a lot of confidence
## 473    Not very much confidence   Not very much confidence
## 474   Quite a lot of confidence  Quite a lot of confidence
## 475  A great deal of confidence  Quite a lot of confidence
## 476    Not very much confidence   Not very much confidence
## 477   Quite a lot of confidence  Quite a lot of confidence
## 478    Not very much confidence   Not very much confidence
## 479                  Don't know                 Don't know
## 480    Not very much confidence   Not very much confidence
## 481   Quite a lot of confidence  Quite a lot of confidence
## 482      None at all confidence  Quite a lot of confidence
## 483    Not very much confidence   Not very much confidence
## 484    Not very much confidence   Not very much confidence
## 485   Quite a lot of confidence  Quite a lot of confidence
## 486   Quite a lot of confidence A great deal of confidence
## 487                  Don't know                 Don't know
## 488   Quite a lot of confidence  Quite a lot of confidence
## 489   Quite a lot of confidence  Quite a lot of confidence
## 490      None at all confidence  Quite a lot of confidence
## 491   Quite a lot of confidence  Quite a lot of confidence
## 492   Quite a lot of confidence  Quite a lot of confidence
## 493      None at all confidence A great deal of confidence
## 494   Quite a lot of confidence  Quite a lot of confidence
## 495  A great deal of confidence A great deal of confidence
## 496   Quite a lot of confidence  Quite a lot of confidence
##             Confidence.in..NGOs Confidence.in..Trade.Unions
## 1     Quite a lot of confidence   Quite a lot of confidence
## 2      Not very much confidence                  Don't know
## 3      Not very much confidence   Quite a lot of confidence
## 4    A great deal of confidence    Not very much confidence
## 5      Not very much confidence   Quite a lot of confidence
## 6                          <NA>    Not very much confidence
## 7      Not very much confidence   Quite a lot of confidence
## 8      Not very much confidence   Quite a lot of confidence
## 9     Quite a lot of confidence   Quite a lot of confidence
## 10    Quite a lot of confidence   Quite a lot of confidence
## 11    Quite a lot of confidence    Not very much confidence
## 12    Quite a lot of confidence   Quite a lot of confidence
## 13    Quite a lot of confidence   Quite a lot of confidence
## 14    Quite a lot of confidence    Not very much confidence
## 15    Quite a lot of confidence    Not very much confidence
## 16                   Don't know                  Don't know
## 17    Quite a lot of confidence   Quite a lot of confidence
## 18    Quite a lot of confidence    Not very much confidence
## 19    Quite a lot of confidence    Not very much confidence
## 20    Quite a lot of confidence   Quite a lot of confidence
## 21   A great deal of confidence  A great deal of confidence
## 22     Not very much confidence    Not very much confidence
## 23    Quite a lot of confidence   Quite a lot of confidence
## 24     Not very much confidence   Quite a lot of confidence
## 25    Quite a lot of confidence   Quite a lot of confidence
## 26                   Don't know                  Don't know
## 27    Quite a lot of confidence   Quite a lot of confidence
## 28    Quite a lot of confidence                  Don't know
## 29    Quite a lot of confidence                  Don't know
## 30     Not very much confidence    Not very much confidence
## 31    Quite a lot of confidence    Not very much confidence
## 32                   Don't know                  Don't know
## 33    Quite a lot of confidence    Not very much confidence
## 34    Quite a lot of confidence   Quite a lot of confidence
## 35   A great deal of confidence   Quite a lot of confidence
## 36     Not very much confidence   Quite a lot of confidence
## 37    Quite a lot of confidence    Not very much confidence
## 38     Not very much confidence    Not very much confidence
## 39    Quite a lot of confidence   Quite a lot of confidence
## 40    Quite a lot of confidence    Not very much confidence
## 41    Quite a lot of confidence    Not very much confidence
## 42    Quite a lot of confidence  A great deal of confidence
## 43    Quite a lot of confidence   Quite a lot of confidence
## 44     Not very much confidence    Not very much confidence
## 45     Not very much confidence                  Don't know
## 46   A great deal of confidence   Quite a lot of confidence
## 47     Not very much confidence    Not very much confidence
## 48     Not very much confidence      None at all confidence
## 49     Not very much confidence      None at all confidence
## 50     Not very much confidence                  Don't know
## 51     Not very much confidence    Not very much confidence
## 52                   Don't know                  Don't know
## 53    Quite a lot of confidence   Quite a lot of confidence
## 54    Quite a lot of confidence   Quite a lot of confidence
## 55    Quite a lot of confidence    Not very much confidence
## 56                   Don't know                  Don't know
## 57                   Don't know                  Don't know
## 58    Quite a lot of confidence                  Don't know
## 59                   Don't know                  Don't know
## 60    Quite a lot of confidence      None at all confidence
## 61    Quite a lot of confidence   Quite a lot of confidence
## 62    Quite a lot of confidence   Quite a lot of confidence
## 63    Quite a lot of confidence   Quite a lot of confidence
## 64    Quite a lot of confidence   Quite a lot of confidence
## 65    Quite a lot of confidence   Quite a lot of confidence
## 66    Quite a lot of confidence   Quite a lot of confidence
## 67     Not very much confidence    Not very much confidence
## 68    Quite a lot of confidence    Not very much confidence
## 69     Not very much confidence      None at all confidence
## 70    Quite a lot of confidence    Not very much confidence
## 71    Quite a lot of confidence   Quite a lot of confidence
## 72    Quite a lot of confidence    Not very much confidence
## 73    Quite a lot of confidence   Quite a lot of confidence
## 74    Quite a lot of confidence   Quite a lot of confidence
## 75    Quite a lot of confidence   Quite a lot of confidence
## 76    Quite a lot of confidence   Quite a lot of confidence
## 77    Quite a lot of confidence   Quite a lot of confidence
## 78    Quite a lot of confidence   Quite a lot of confidence
## 79    Quite a lot of confidence   Quite a lot of confidence
## 80    Quite a lot of confidence   Quite a lot of confidence
## 81    Quite a lot of confidence   Quite a lot of confidence
## 82    Quite a lot of confidence   Quite a lot of confidence
## 83     Not very much confidence    Not very much confidence
## 84    Quite a lot of confidence   Quite a lot of confidence
## 85    Quite a lot of confidence   Quite a lot of confidence
## 86                   Don't know                  Don't know
## 87    Quite a lot of confidence    Not very much confidence
## 88    Quite a lot of confidence   Quite a lot of confidence
## 89    Quite a lot of confidence   Quite a lot of confidence
## 90    Quite a lot of confidence   Quite a lot of confidence
## 91    Quite a lot of confidence   Quite a lot of confidence
## 92    Quite a lot of confidence   Quite a lot of confidence
## 93    Quite a lot of confidence   Quite a lot of confidence
## 94    Quite a lot of confidence   Quite a lot of confidence
## 95    Quite a lot of confidence   Quite a lot of confidence
## 96    Quite a lot of confidence   Quite a lot of confidence
## 97    Quite a lot of confidence   Quite a lot of confidence
## 98    Quite a lot of confidence   Quite a lot of confidence
## 99    Quite a lot of confidence   Quite a lot of confidence
## 100   Quite a lot of confidence   Quite a lot of confidence
## 101    Not very much confidence                  Don't know
## 102   Quite a lot of confidence                  Don't know
## 103   Quite a lot of confidence                  Don't know
## 104    Not very much confidence                  Don't know
## 105    Not very much confidence                  Don't know
## 106   Quite a lot of confidence  A great deal of confidence
## 107  A great deal of confidence                  Don't know
## 108   Quite a lot of confidence  A great deal of confidence
## 109   Quite a lot of confidence                  Don't know
## 110   Quite a lot of confidence                  Don't know
## 111                        <NA>                        <NA>
## 112   Quite a lot of confidence                  Don't know
## 113                  Don't know                  Don't know
## 114   Quite a lot of confidence                  Don't know
## 115   Quite a lot of confidence                        <NA>
## 116                  Don't know                  Don't know
## 117   Quite a lot of confidence                  Don't know
## 118                  Don't know                  Don't know
## 119                  Don't know                  Don't know
## 120                  Don't know   Quite a lot of confidence
## 121                  Don't know                  Don't know
## 122    Not very much confidence   Quite a lot of confidence
## 123                  Don't know  A great deal of confidence
## 124   Quite a lot of confidence                  Don't know
## 125   Quite a lot of confidence                  Don't know
## 126                  Don't know                  Don't know
## 127   Quite a lot of confidence                  Don't know
## 128   Quite a lot of confidence                  Don't know
## 129   Quite a lot of confidence                  Don't know
## 130                        <NA>   Quite a lot of confidence
## 131   Quite a lot of confidence                  Don't know
## 132   Quite a lot of confidence                  Don't know
## 133   Quite a lot of confidence                  Don't know
## 134  A great deal of confidence                  Don't know
## 135    Not very much confidence   Quite a lot of confidence
## 136      None at all confidence      None at all confidence
## 137  A great deal of confidence  A great deal of confidence
## 138   Quite a lot of confidence                  Don't know
## 139   Quite a lot of confidence                  Don't know
## 140    Not very much confidence   Quite a lot of confidence
## 141  A great deal of confidence  A great deal of confidence
## 142   Quite a lot of confidence                  Don't know
## 143  A great deal of confidence                  Don't know
## 144  A great deal of confidence  A great deal of confidence
## 145  A great deal of confidence                  Don't know
## 146    Not very much confidence    Not very much confidence
## 147    Not very much confidence      None at all confidence
## 148    Not very much confidence    Not very much confidence
## 149  A great deal of confidence   Quite a lot of confidence
## 150   Quite a lot of confidence  A great deal of confidence
## 151                  Don't know                  Don't know
## 152  A great deal of confidence   Quite a lot of confidence
## 153                  Don't know                  Don't know
## 154  A great deal of confidence  A great deal of confidence
## 155  A great deal of confidence  A great deal of confidence
## 156                  Don't know                  Don't know
## 157  A great deal of confidence  A great deal of confidence
## 158  A great deal of confidence   Quite a lot of confidence
## 159   Quite a lot of confidence    Not very much confidence
## 160  A great deal of confidence   Quite a lot of confidence
## 161  A great deal of confidence  A great deal of confidence
## 162  A great deal of confidence                  Don't know
## 163                  Don't know                  Don't know
## 164                  Don't know                  Don't know
## 165  A great deal of confidence  A great deal of confidence
## 166  A great deal of confidence  A great deal of confidence
## 167  A great deal of confidence   Quite a lot of confidence
## 168  A great deal of confidence                  Don't know
## 169  A great deal of confidence                  Don't know
## 170                  Don't know                  Don't know
## 171                  Don't know                  Don't know
## 172                  Don't know                  Don't know
## 173                  Don't know                  Don't know
## 174  A great deal of confidence  A great deal of confidence
## 175   Quite a lot of confidence                  Don't know
## 176  A great deal of confidence   Quite a lot of confidence
## 177  A great deal of confidence                  Don't know
## 178  A great deal of confidence                  Don't know
## 179  A great deal of confidence                  Don't know
## 180  A great deal of confidence   Quite a lot of confidence
## 181  A great deal of confidence                  Don't know
## 182  A great deal of confidence                  Don't know
## 183  A great deal of confidence                  Don't know
## 184  A great deal of confidence                  Don't know
## 185  A great deal of confidence    Not very much confidence
## 186  A great deal of confidence   Quite a lot of confidence
## 187   Quite a lot of confidence                  Don't know
## 188  A great deal of confidence                  Don't know
## 189   Quite a lot of confidence                  Don't know
## 190   Quite a lot of confidence                  Don't know
## 191  A great deal of confidence                  Don't know
## 192  A great deal of confidence                  Don't know
## 193  A great deal of confidence   Quite a lot of confidence
## 194  A great deal of confidence                  Don't know
## 195  A great deal of confidence                  Don't know
## 196                  Don't know                  Don't know
## 197   Quite a lot of confidence                  Don't know
## 198  A great deal of confidence                  Don't know
## 199  A great deal of confidence  A great deal of confidence
## 200  A great deal of confidence  A great deal of confidence
## 201   Quite a lot of confidence   Quite a lot of confidence
## 202   Quite a lot of confidence   Quite a lot of confidence
## 203    Not very much confidence   Quite a lot of confidence
## 204    Not very much confidence   Quite a lot of confidence
## 205    Not very much confidence   Quite a lot of confidence
## 206   Quite a lot of confidence    Not very much confidence
## 207   Quite a lot of confidence   Quite a lot of confidence
## 208   Quite a lot of confidence  A great deal of confidence
## 209   Quite a lot of confidence   Quite a lot of confidence
## 210   Quite a lot of confidence   Quite a lot of confidence
## 211   Quite a lot of confidence   Quite a lot of confidence
## 212   Quite a lot of confidence   Quite a lot of confidence
## 213   Quite a lot of confidence   Quite a lot of confidence
## 214   Quite a lot of confidence   Quite a lot of confidence
## 215   Quite a lot of confidence   Quite a lot of confidence
## 216   Quite a lot of confidence   Quite a lot of confidence
## 217   Quite a lot of confidence   Quite a lot of confidence
## 218    Not very much confidence  A great deal of confidence
## 219   Quite a lot of confidence    Not very much confidence
## 220   Quite a lot of confidence  A great deal of confidence
## 221   Quite a lot of confidence  A great deal of confidence
## 222   Quite a lot of confidence    Not very much confidence
## 223   Quite a lot of confidence   Quite a lot of confidence
## 224   Quite a lot of confidence  A great deal of confidence
## 225   Quite a lot of confidence  A great deal of confidence
## 226  A great deal of confidence   Quite a lot of confidence
## 227   Quite a lot of confidence  A great deal of confidence
## 228   Quite a lot of confidence    Not very much confidence
## 229   Quite a lot of confidence   Quite a lot of confidence
## 230  A great deal of confidence   Quite a lot of confidence
## 231   Quite a lot of confidence   Quite a lot of confidence
## 232   Quite a lot of confidence   Quite a lot of confidence
## 233    Not very much confidence   Quite a lot of confidence
## 234    Not very much confidence   Quite a lot of confidence
## 235    Not very much confidence   Quite a lot of confidence
## 236   Quite a lot of confidence      None at all confidence
## 237    Not very much confidence   Quite a lot of confidence
## 238   Quite a lot of confidence    Not very much confidence
## 239    Not very much confidence   Quite a lot of confidence
## 240    Not very much confidence   Quite a lot of confidence
## 241    Not very much confidence   Quite a lot of confidence
## 242    Not very much confidence   Quite a lot of confidence
## 243    Not very much confidence   Quite a lot of confidence
## 244    Not very much confidence   Quite a lot of confidence
## 245   Quite a lot of confidence  A great deal of confidence
## 246  A great deal of confidence   Quite a lot of confidence
## 247   Quite a lot of confidence    Not very much confidence
## 248   Quite a lot of confidence   Quite a lot of confidence
## 249    Not very much confidence   Quite a lot of confidence
## 250   Quite a lot of confidence   Quite a lot of confidence
## 251   Quite a lot of confidence   Quite a lot of confidence
## 252   Quite a lot of confidence   Quite a lot of confidence
## 253                  Don't know                  Don't know
## 254   Quite a lot of confidence    Not very much confidence
## 255   Quite a lot of confidence    Not very much confidence
## 256    Not very much confidence      None at all confidence
## 257                  Don't know                  Don't know
## 258  A great deal of confidence                  Don't know
## 259  A great deal of confidence  A great deal of confidence
## 260   Quite a lot of confidence   Quite a lot of confidence
## 261    Not very much confidence    Not very much confidence
## 262  A great deal of confidence   Quite a lot of confidence
## 263   Quite a lot of confidence  A great deal of confidence
## 264    Not very much confidence    Not very much confidence
## 265   Quite a lot of confidence   Quite a lot of confidence
## 266   Quite a lot of confidence   Quite a lot of confidence
## 267   Quite a lot of confidence                  Don't know
## 268   Quite a lot of confidence   Quite a lot of confidence
## 269   Quite a lot of confidence                  Don't know
## 270   Quite a lot of confidence                  Don't know
## 271   Quite a lot of confidence   Quite a lot of confidence
## 272   Quite a lot of confidence   Quite a lot of confidence
## 273   Quite a lot of confidence   Quite a lot of confidence
## 274    Not very much confidence   Quite a lot of confidence
## 275    Not very much confidence    Not very much confidence
## 276    Not very much confidence   Quite a lot of confidence
## 277   Quite a lot of confidence   Quite a lot of confidence
## 278   Quite a lot of confidence   Quite a lot of confidence
## 279   Quite a lot of confidence   Quite a lot of confidence
## 280    Not very much confidence    Not very much confidence
## 281  A great deal of confidence  A great deal of confidence
## 282   Quite a lot of confidence   Quite a lot of confidence
## 283   Quite a lot of confidence   Quite a lot of confidence
## 284    Not very much confidence   Quite a lot of confidence
## 285   Quite a lot of confidence                  Don't know
## 286   Quite a lot of confidence   Quite a lot of confidence
## 287   Quite a lot of confidence   Quite a lot of confidence
## 288   Quite a lot of confidence   Quite a lot of confidence
## 289                  Don't know                  Don't know
## 290   Quite a lot of confidence   Quite a lot of confidence
## 291   Quite a lot of confidence   Quite a lot of confidence
## 292                  Don't know                  Don't know
## 293   Quite a lot of confidence   Quite a lot of confidence
## 294    Not very much confidence    Not very much confidence
## 295    Not very much confidence    Not very much confidence
## 296                  Don't know                  Don't know
## 297                  Don't know   Quite a lot of confidence
## 298    Not very much confidence  A great deal of confidence
## 299   Quite a lot of confidence   Quite a lot of confidence
## 300    Not very much confidence   Quite a lot of confidence
## 302   Quite a lot of confidence      None at all confidence
## 303    Not very much confidence   Quite a lot of confidence
## 304   Quite a lot of confidence   Quite a lot of confidence
## 305   Quite a lot of confidence    Not very much confidence
## 306    Not very much confidence      None at all confidence
## 307      None at all confidence      None at all confidence
## 308      None at all confidence      None at all confidence
## 309    Not very much confidence    Not very much confidence
## 310    Not very much confidence    Not very much confidence
## 311   Quite a lot of confidence   Quite a lot of confidence
## 312   Quite a lot of confidence   Quite a lot of confidence
## 313    Not very much confidence    Not very much confidence
## 314    Not very much confidence    Not very much confidence
## 315                  Don't know                  Don't know
## 316    Not very much confidence    Not very much confidence
## 317   Quite a lot of confidence      None at all confidence
## 318                  Don't know                  Don't know
## 319    Not very much confidence    Not very much confidence
## 320   Quite a lot of confidence   Quite a lot of confidence
## 321    Not very much confidence   Quite a lot of confidence
## 322                  Don't know                  Don't know
## 323   Quite a lot of confidence                  Don't know
## 324   Quite a lot of confidence                  Don't know
## 325   Quite a lot of confidence   Quite a lot of confidence
## 326   Quite a lot of confidence   Quite a lot of confidence
## 327   Quite a lot of confidence   Quite a lot of confidence
## 328   Quite a lot of confidence    Not very much confidence
## 329   Quite a lot of confidence   Quite a lot of confidence
## 330    Not very much confidence   Quite a lot of confidence
## 331    Not very much confidence   Quite a lot of confidence
## 332  A great deal of confidence                  Don't know
## 333  A great deal of confidence                  Don't know
## 334      None at all confidence    Not very much confidence
## 335    Not very much confidence   Quite a lot of confidence
## 336    Not very much confidence   Quite a lot of confidence
## 337    Not very much confidence   Quite a lot of confidence
## 338    Not very much confidence  A great deal of confidence
## 339   Quite a lot of confidence    Not very much confidence
## 340    Not very much confidence    Not very much confidence
## 341   Quite a lot of confidence    Not very much confidence
## 342   Quite a lot of confidence    Not very much confidence
## 343   Quite a lot of confidence    Not very much confidence
## 344   Quite a lot of confidence    Not very much confidence
## 345                  Don't know  A great deal of confidence
## 346  A great deal of confidence   Quite a lot of confidence
## 347    Not very much confidence                  Don't know
## 348                  Don't know                  Don't know
## 349    Not very much confidence    Not very much confidence
## 350      None at all confidence      None at all confidence
## 351      None at all confidence                  Don't know
## 352                  Don't know                  Don't know
## 353   Quite a lot of confidence   Quite a lot of confidence
## 354                  Don't know                  Don't know
## 355   Quite a lot of confidence   Quite a lot of confidence
## 356   Quite a lot of confidence                  Don't know
## 357    Not very much confidence   Quite a lot of confidence
## 358   Quite a lot of confidence   Quite a lot of confidence
## 359    Not very much confidence    Not very much confidence
## 360  A great deal of confidence   Quite a lot of confidence
## 361    Not very much confidence   Quite a lot of confidence
## 362    Not very much confidence   Quite a lot of confidence
## 363   Quite a lot of confidence   Quite a lot of confidence
## 364   Quite a lot of confidence   Quite a lot of confidence
## 365   Quite a lot of confidence                  Don't know
## 366    Not very much confidence   Quite a lot of confidence
## 367   Quite a lot of confidence   Quite a lot of confidence
## 368    Not very much confidence                  Don't know
## 369    Not very much confidence                  Don't know
## 370    Not very much confidence    Not very much confidence
## 371   Quite a lot of confidence   Quite a lot of confidence
## 372    Not very much confidence    Not very much confidence
## 373   Quite a lot of confidence   Quite a lot of confidence
## 374   Quite a lot of confidence   Quite a lot of confidence
## 375                  Don't know                  Don't know
## 376   Quite a lot of confidence                  Don't know
## 377                  Don't know                  Don't know
## 378   Quite a lot of confidence    Not very much confidence
## 379   Quite a lot of confidence   Quite a lot of confidence
## 380    Not very much confidence   Quite a lot of confidence
## 381                  Don't know                  Don't know
## 382                  Don't know                  Don't know
## 383                  Don't know   Quite a lot of confidence
## 384                  Don't know                  Don't know
## 385   Quite a lot of confidence   Quite a lot of confidence
## 386    Not very much confidence    Not very much confidence
## 387    Not very much confidence   Quite a lot of confidence
## 388                  Don't know                  Don't know
## 389   Quite a lot of confidence    Not very much confidence
## 390   Quite a lot of confidence    Not very much confidence
## 391    Not very much confidence    Not very much confidence
## 392    Not very much confidence   Quite a lot of confidence
## 393                  Don't know                  Don't know
## 394                  Don't know                  Don't know
## 395   Quite a lot of confidence   Quite a lot of confidence
## 396  A great deal of confidence   Quite a lot of confidence
## 397      None at all confidence    Not very much confidence
## 398                  Don't know    Not very much confidence
## 399                  Don't know   Quite a lot of confidence
## 400                  Don't know   Quite a lot of confidence
## 401    Not very much confidence   Quite a lot of confidence
## 402                  Don't know                  Don't know
## 403  A great deal of confidence   Quite a lot of confidence
## 404   Quite a lot of confidence    Not very much confidence
## 405    Not very much confidence    Not very much confidence
## 406  A great deal of confidence                  Don't know
## 407  A great deal of confidence  A great deal of confidence
## 408  A great deal of confidence  A great deal of confidence
## 409    Not very much confidence    Not very much confidence
## 410  A great deal of confidence                  Don't know
## 411  A great deal of confidence   Quite a lot of confidence
## 412  A great deal of confidence  A great deal of confidence
## 413  A great deal of confidence  A great deal of confidence
## 414   Quite a lot of confidence                        <NA>
## 415   Quite a lot of confidence                  Don't know
## 416   Quite a lot of confidence   Quite a lot of confidence
## 417                  Don't know                  Don't know
## 418                  Don't know                  Don't know
## 419   Quite a lot of confidence   Quite a lot of confidence
## 420  A great deal of confidence                        <NA>
## 421  A great deal of confidence  A great deal of confidence
## 422                  Don't know                  Don't know
## 423    Not very much confidence      None at all confidence
## 424  A great deal of confidence      None at all confidence
## 425  A great deal of confidence  A great deal of confidence
## 426  A great deal of confidence  A great deal of confidence
## 427  A great deal of confidence  A great deal of confidence
## 428                  Don't know                  Don't know
## 429   Quite a lot of confidence   Quite a lot of confidence
## 430  A great deal of confidence  A great deal of confidence
## 431  A great deal of confidence  A great deal of confidence
## 432                  Don't know                  Don't know
## 433  A great deal of confidence  A great deal of confidence
## 434  A great deal of confidence  A great deal of confidence
## 435   Quite a lot of confidence                  Don't know
## 436  A great deal of confidence  A great deal of confidence
## 437  A great deal of confidence  A great deal of confidence
## 438                        <NA>   Quite a lot of confidence
## 439  A great deal of confidence  A great deal of confidence
## 440   Quite a lot of confidence   Quite a lot of confidence
## 441  A great deal of confidence  A great deal of confidence
## 442   Quite a lot of confidence   Quite a lot of confidence
## 443  A great deal of confidence  A great deal of confidence
## 444   Quite a lot of confidence  A great deal of confidence
## 445  A great deal of confidence  A great deal of confidence
## 446  A great deal of confidence  A great deal of confidence
## 447  A great deal of confidence  A great deal of confidence
## 448  A great deal of confidence  A great deal of confidence
## 449  A great deal of confidence  A great deal of confidence
## 450   Quite a lot of confidence   Quite a lot of confidence
## 451   Quite a lot of confidence      None at all confidence
## 452  A great deal of confidence    Not very much confidence
## 453   Quite a lot of confidence   Quite a lot of confidence
## 454    Not very much confidence   Quite a lot of confidence
## 455    Not very much confidence   Quite a lot of confidence
## 456      None at all confidence      None at all confidence
## 457                  Don't know                  Don't know
## 458      None at all confidence      None at all confidence
## 459    Not very much confidence                  Don't know
## 460                        <NA>    Not very much confidence
## 461                  Don't know   Quite a lot of confidence
## 462   Quite a lot of confidence  A great deal of confidence
## 463   Quite a lot of confidence      None at all confidence
## 464    Not very much confidence    Not very much confidence
## 465   Quite a lot of confidence    Not very much confidence
## 466      None at all confidence                  Don't know
## 467   Quite a lot of confidence  A great deal of confidence
## 468   Quite a lot of confidence    Not very much confidence
## 469                  Don't know    Not very much confidence
## 470                  Don't know                  Don't know
## 471   Quite a lot of confidence   Quite a lot of confidence
## 472    Not very much confidence   Quite a lot of confidence
## 473    Not very much confidence    Not very much confidence
## 474   Quite a lot of confidence                  Don't know
## 475   Quite a lot of confidence   Quite a lot of confidence
## 476    Not very much confidence    Not very much confidence
## 477   Quite a lot of confidence   Quite a lot of confidence
## 478    Not very much confidence    Not very much confidence
## 479                  Don't know                  Don't know
## 480    Not very much confidence    Not very much confidence
## 481    Not very much confidence    Not very much confidence
## 482    Not very much confidence    Not very much confidence
## 483                  Don't know                  Don't know
## 484   Quite a lot of confidence   Quite a lot of confidence
## 485    Not very much confidence   Quite a lot of confidence
## 486  A great deal of confidence   Quite a lot of confidence
## 487                  Don't know                  Don't know
## 488    Not very much confidence    Not very much confidence
## 489   Quite a lot of confidence      None at all confidence
## 490      None at all confidence      None at all confidence
## 491                        <NA>    Not very much confidence
## 492   Quite a lot of confidence   Quite a lot of confidence
## 493      None at all confidence      None at all confidence
## 494   Quite a lot of confidence    Not very much confidence
## 495   Quite a lot of confidence    Not very much confidence
## 496    Not very much confidence    Not very much confidence
##      Confidence.in..Student.Unions Confidence.in..CDO.office..DAO.
## 1        Quite a lot of confidence       Quite a lot of confidence
## 2         Not very much confidence       Quite a lot of confidence
## 3        Quite a lot of confidence       Quite a lot of confidence
## 4       A great deal of confidence      A great deal of confidence
## 5         Not very much confidence       Quite a lot of confidence
## 6        Quite a lot of confidence       Quite a lot of confidence
## 7         Not very much confidence      A great deal of confidence
## 8           None at all confidence       Quite a lot of confidence
## 9         Not very much confidence       Quite a lot of confidence
## 10       Quite a lot of confidence       Quite a lot of confidence
## 11          None at all confidence       Quite a lot of confidence
## 12       Quite a lot of confidence      A great deal of confidence
## 13      A great deal of confidence       Quite a lot of confidence
## 14       Quite a lot of confidence        Not very much confidence
## 15       Quite a lot of confidence       Quite a lot of confidence
## 16       Quite a lot of confidence       Quite a lot of confidence
## 17      A great deal of confidence      A great deal of confidence
## 18       Quite a lot of confidence       Quite a lot of confidence
## 19       Quite a lot of confidence      A great deal of confidence
## 20       Quite a lot of confidence       Quite a lot of confidence
## 21                            <NA>      A great deal of confidence
## 22        Not very much confidence       Quite a lot of confidence
## 23       Quite a lot of confidence      A great deal of confidence
## 24        Not very much confidence       Quite a lot of confidence
## 25       Quite a lot of confidence        Not very much confidence
## 26                      Don't know                      Don't know
## 27        Not very much confidence       Quite a lot of confidence
## 28                      Don't know       Quite a lot of confidence
## 29                      Don't know      A great deal of confidence
## 30        Not very much confidence       Quite a lot of confidence
## 31       Quite a lot of confidence       Quite a lot of confidence
## 32                      Don't know                      Don't know
## 33       Quite a lot of confidence        Not very much confidence
## 34       Quite a lot of confidence       Quite a lot of confidence
## 35      A great deal of confidence       Quite a lot of confidence
## 36       Quite a lot of confidence          None at all confidence
## 37       Quite a lot of confidence       Quite a lot of confidence
## 38       Quite a lot of confidence       Quite a lot of confidence
## 39       Quite a lot of confidence        Not very much confidence
## 40       Quite a lot of confidence       Quite a lot of confidence
## 41       Quite a lot of confidence       Quite a lot of confidence
## 42       Quite a lot of confidence       Quite a lot of confidence
## 43       Quite a lot of confidence       Quite a lot of confidence
## 44       Quite a lot of confidence       Quite a lot of confidence
## 45        Not very much confidence        Not very much confidence
## 46          None at all confidence        Not very much confidence
## 47        Not very much confidence        Not very much confidence
## 48          None at all confidence       Quite a lot of confidence
## 49        Not very much confidence       Quite a lot of confidence
## 50       Quite a lot of confidence       Quite a lot of confidence
## 51       Quite a lot of confidence       Quite a lot of confidence
## 52                      Don't know                      Don't know
## 53       Quite a lot of confidence       Quite a lot of confidence
## 54       Quite a lot of confidence       Quite a lot of confidence
## 55       Quite a lot of confidence       Quite a lot of confidence
## 56       Quite a lot of confidence                      Don't know
## 57       Quite a lot of confidence                      Don't know
## 58       Quite a lot of confidence       Quite a lot of confidence
## 59       Quite a lot of confidence                      Don't know
## 60       Quite a lot of confidence       Quite a lot of confidence
## 61       Quite a lot of confidence       Quite a lot of confidence
## 62       Quite a lot of confidence       Quite a lot of confidence
## 63       Quite a lot of confidence       Quite a lot of confidence
## 64       Quite a lot of confidence       Quite a lot of confidence
## 65       Quite a lot of confidence       Quite a lot of confidence
## 66       Quite a lot of confidence       Quite a lot of confidence
## 67       Quite a lot of confidence        Not very much confidence
## 68       Quite a lot of confidence       Quite a lot of confidence
## 69        Not very much confidence       Quite a lot of confidence
## 70       Quite a lot of confidence       Quite a lot of confidence
## 71       Quite a lot of confidence       Quite a lot of confidence
## 72       Quite a lot of confidence       Quite a lot of confidence
## 73       Quite a lot of confidence       Quite a lot of confidence
## 74       Quite a lot of confidence       Quite a lot of confidence
## 75       Quite a lot of confidence       Quite a lot of confidence
## 76       Quite a lot of confidence       Quite a lot of confidence
## 77       Quite a lot of confidence       Quite a lot of confidence
## 78       Quite a lot of confidence       Quite a lot of confidence
## 79       Quite a lot of confidence       Quite a lot of confidence
## 80       Quite a lot of confidence       Quite a lot of confidence
## 81       Quite a lot of confidence       Quite a lot of confidence
## 82       Quite a lot of confidence       Quite a lot of confidence
## 83       Quite a lot of confidence       Quite a lot of confidence
## 84       Quite a lot of confidence       Quite a lot of confidence
## 85       Quite a lot of confidence       Quite a lot of confidence
## 86       Quite a lot of confidence       Quite a lot of confidence
## 87       Quite a lot of confidence       Quite a lot of confidence
## 88       Quite a lot of confidence       Quite a lot of confidence
## 89       Quite a lot of confidence       Quite a lot of confidence
## 90       Quite a lot of confidence      A great deal of confidence
## 91       Quite a lot of confidence       Quite a lot of confidence
## 92       Quite a lot of confidence       Quite a lot of confidence
## 93       Quite a lot of confidence       Quite a lot of confidence
## 94       Quite a lot of confidence       Quite a lot of confidence
## 95       Quite a lot of confidence       Quite a lot of confidence
## 96       Quite a lot of confidence       Quite a lot of confidence
## 97       Quite a lot of confidence       Quite a lot of confidence
## 98       Quite a lot of confidence       Quite a lot of confidence
## 99       Quite a lot of confidence       Quite a lot of confidence
## 100      Quite a lot of confidence       Quite a lot of confidence
## 101                     Don't know       Quite a lot of confidence
## 102                     Don't know       Quite a lot of confidence
## 103      Quite a lot of confidence      A great deal of confidence
## 104                     Don't know                      Don't know
## 105                     Don't know       Quite a lot of confidence
## 106                     Don't know                      Don't know
## 107                     Don't know       Quite a lot of confidence
## 108     A great deal of confidence       Quite a lot of confidence
## 109                     Don't know                      Don't know
## 110                     Don't know      A great deal of confidence
## 111                           <NA>                            <NA>
## 112      Quite a lot of confidence       Quite a lot of confidence
## 113                     Don't know      A great deal of confidence
## 114       Not very much confidence       Quite a lot of confidence
## 115                     Don't know                      Don't know
## 116     A great deal of confidence                      Don't know
## 117     A great deal of confidence      A great deal of confidence
## 118                     Don't know                      Don't know
## 119     A great deal of confidence      A great deal of confidence
## 120      Quite a lot of confidence      A great deal of confidence
## 121                     Don't know      A great deal of confidence
## 122     A great deal of confidence       Quite a lot of confidence
## 123      Quite a lot of confidence       Quite a lot of confidence
## 124                     Don't know      A great deal of confidence
## 125     A great deal of confidence       Quite a lot of confidence
## 126                     Don't know      A great deal of confidence
## 127     A great deal of confidence      A great deal of confidence
## 128      Quite a lot of confidence       Quite a lot of confidence
## 129     A great deal of confidence      A great deal of confidence
## 130     A great deal of confidence                            <NA>
## 131      Quite a lot of confidence       Quite a lot of confidence
## 132                     Don't know                      Don't know
## 133                     Don't know                      Don't know
## 134     A great deal of confidence                      Don't know
## 135                     Don't know       Quite a lot of confidence
## 136         None at all confidence          None at all confidence
## 137     A great deal of confidence       Quite a lot of confidence
## 138                     Don't know       Quite a lot of confidence
## 139     A great deal of confidence      A great deal of confidence
## 140       Not very much confidence       Quite a lot of confidence
## 141     A great deal of confidence      A great deal of confidence
## 142                     Don't know                      Don't know
## 143                     Don't know                      Don't know
## 144     A great deal of confidence      A great deal of confidence
## 145     A great deal of confidence                      Don't know
## 146       Not very much confidence        Not very much confidence
## 147       Not very much confidence       Quite a lot of confidence
## 148      Quite a lot of confidence       Quite a lot of confidence
## 149      Quite a lot of confidence       Quite a lot of confidence
## 150      Quite a lot of confidence       Quite a lot of confidence
## 151                     Don't know      A great deal of confidence
## 152     A great deal of confidence      A great deal of confidence
## 153                     Don't know       Quite a lot of confidence
## 154     A great deal of confidence      A great deal of confidence
## 155                     Don't know      A great deal of confidence
## 156                     Don't know      A great deal of confidence
## 157     A great deal of confidence      A great deal of confidence
## 158     A great deal of confidence      A great deal of confidence
## 159                     Don't know      A great deal of confidence
## 160     A great deal of confidence      A great deal of confidence
## 161      Quite a lot of confidence      A great deal of confidence
## 162                     Don't know                      Don't know
## 163                     Don't know                      Don't know
## 164                     Don't know      A great deal of confidence
## 165     A great deal of confidence      A great deal of confidence
## 166                     Don't know      A great deal of confidence
## 167     A great deal of confidence      A great deal of confidence
## 168                     Don't know      A great deal of confidence
## 169                     Don't know      A great deal of confidence
## 170                     Don't know       Quite a lot of confidence
## 171                     Don't know                      Don't know
## 172                     Don't know      A great deal of confidence
## 173                     Don't know      A great deal of confidence
## 174                     Don't know      A great deal of confidence
## 175                     Don't know      A great deal of confidence
## 176      Quite a lot of confidence       Quite a lot of confidence
## 177                     Don't know       Quite a lot of confidence
## 178                     Don't know      A great deal of confidence
## 179                     Don't know      A great deal of confidence
## 180      Quite a lot of confidence      A great deal of confidence
## 181                     Don't know      A great deal of confidence
## 182                     Don't know      A great deal of confidence
## 183                     Don't know                      Don't know
## 184                     Don't know      A great deal of confidence
## 185       Not very much confidence       Quite a lot of confidence
## 186                     Don't know      A great deal of confidence
## 187     A great deal of confidence       Quite a lot of confidence
## 188                     Don't know      A great deal of confidence
## 189                     Don't know       Quite a lot of confidence
## 190                     Don't know       Quite a lot of confidence
## 191                     Don't know       Quite a lot of confidence
## 192                     Don't know      A great deal of confidence
## 193     A great deal of confidence      A great deal of confidence
## 194                     Don't know      A great deal of confidence
## 195                     Don't know      A great deal of confidence
## 196                     Don't know      A great deal of confidence
## 197                     Don't know      A great deal of confidence
## 198                     Don't know      A great deal of confidence
## 199     A great deal of confidence       Quite a lot of confidence
## 200     A great deal of confidence      A great deal of confidence
## 201     A great deal of confidence       Quite a lot of confidence
## 202     A great deal of confidence        Not very much confidence
## 203     A great deal of confidence      A great deal of confidence
## 204       Not very much confidence      A great deal of confidence
## 205     A great deal of confidence       Quite a lot of confidence
## 206      Quite a lot of confidence       Quite a lot of confidence
## 207     A great deal of confidence      A great deal of confidence
## 208     A great deal of confidence      A great deal of confidence
## 209     A great deal of confidence       Quite a lot of confidence
## 210      Quite a lot of confidence      A great deal of confidence
## 211     A great deal of confidence       Quite a lot of confidence
## 212     A great deal of confidence       Quite a lot of confidence
## 213     A great deal of confidence       Quite a lot of confidence
## 214     A great deal of confidence       Quite a lot of confidence
## 215     A great deal of confidence       Quite a lot of confidence
## 216     A great deal of confidence       Quite a lot of confidence
## 217     A great deal of confidence       Quite a lot of confidence
## 218     A great deal of confidence      A great deal of confidence
## 219     A great deal of confidence      A great deal of confidence
## 220     A great deal of confidence       Quite a lot of confidence
## 221     A great deal of confidence       Quite a lot of confidence
## 222      Quite a lot of confidence      A great deal of confidence
## 223     A great deal of confidence       Quite a lot of confidence
## 224     A great deal of confidence       Quite a lot of confidence
## 225     A great deal of confidence        Not very much confidence
## 226      Quite a lot of confidence          None at all confidence
## 227     A great deal of confidence       Quite a lot of confidence
## 228      Quite a lot of confidence      A great deal of confidence
## 229     A great deal of confidence        Not very much confidence
## 230       Not very much confidence        Not very much confidence
## 231       Not very much confidence      A great deal of confidence
## 232     A great deal of confidence       Quite a lot of confidence
## 233      Quite a lot of confidence        Not very much confidence
## 234      Quite a lot of confidence        Not very much confidence
## 235      Quite a lot of confidence       Quite a lot of confidence
## 236     A great deal of confidence        Not very much confidence
## 237       Not very much confidence          None at all confidence
## 238      Quite a lot of confidence       Quite a lot of confidence
## 239      Quite a lot of confidence       Quite a lot of confidence
## 240      Quite a lot of confidence       Quite a lot of confidence
## 241       Not very much confidence        Not very much confidence
## 242      Quite a lot of confidence       Quite a lot of confidence
## 243      Quite a lot of confidence        Not very much confidence
## 244      Quite a lot of confidence       Quite a lot of confidence
## 245       Not very much confidence       Quite a lot of confidence
## 246       Not very much confidence        Not very much confidence
## 247       Not very much confidence       Quite a lot of confidence
## 248       Not very much confidence          None at all confidence
## 249     A great deal of confidence       Quite a lot of confidence
## 250       Not very much confidence       Quite a lot of confidence
## 251      Quite a lot of confidence       Quite a lot of confidence
## 252      Quite a lot of confidence       Quite a lot of confidence
## 253                     Don't know       Quite a lot of confidence
## 254       Not very much confidence       Quite a lot of confidence
## 255       Not very much confidence       Quite a lot of confidence
## 256       Not very much confidence        Not very much confidence
## 257     A great deal of confidence      A great deal of confidence
## 258                     Don't know       Quite a lot of confidence
## 259                     Don't know       Quite a lot of confidence
## 260      Quite a lot of confidence       Quite a lot of confidence
## 261       Not very much confidence       Quite a lot of confidence
## 262      Quite a lot of confidence       Quite a lot of confidence
## 263     A great deal of confidence       Quite a lot of confidence
## 264       Not very much confidence        Not very much confidence
## 265      Quite a lot of confidence       Quite a lot of confidence
## 266      Quite a lot of confidence       Quite a lot of confidence
## 267                     Don't know       Quite a lot of confidence
## 268      Quite a lot of confidence       Quite a lot of confidence
## 269                     Don't know       Quite a lot of confidence
## 270                     Don't know       Quite a lot of confidence
## 271      Quite a lot of confidence       Quite a lot of confidence
## 272      Quite a lot of confidence       Quite a lot of confidence
## 273      Quite a lot of confidence       Quite a lot of confidence
## 274     A great deal of confidence       Quite a lot of confidence
## 275      Quite a lot of confidence       Quite a lot of confidence
## 276       Not very much confidence       Quite a lot of confidence
## 277      Quite a lot of confidence       Quite a lot of confidence
## 278      Quite a lot of confidence       Quite a lot of confidence
## 279      Quite a lot of confidence       Quite a lot of confidence
## 280       Not very much confidence       Quite a lot of confidence
## 281     A great deal of confidence      A great deal of confidence
## 282      Quite a lot of confidence       Quite a lot of confidence
## 283      Quite a lot of confidence      A great deal of confidence
## 284       Not very much confidence       Quite a lot of confidence
## 285                     Don't know                      Don't know
## 286      Quite a lot of confidence       Quite a lot of confidence
## 287      Quite a lot of confidence       Quite a lot of confidence
## 288      Quite a lot of confidence       Quite a lot of confidence
## 289       Not very much confidence       Quite a lot of confidence
## 290      Quite a lot of confidence       Quite a lot of confidence
## 291      Quite a lot of confidence       Quite a lot of confidence
## 292                     Don't know      A great deal of confidence
## 293      Quite a lot of confidence      A great deal of confidence
## 294      Quite a lot of confidence       Quite a lot of confidence
## 295       Not very much confidence       Quite a lot of confidence
## 296                     Don't know       Quite a lot of confidence
## 297     A great deal of confidence      A great deal of confidence
## 298     A great deal of confidence      A great deal of confidence
## 299      Quite a lot of confidence       Quite a lot of confidence
## 300      Quite a lot of confidence       Quite a lot of confidence
## 302         None at all confidence       Quite a lot of confidence
## 303     A great deal of confidence      A great deal of confidence
## 304      Quite a lot of confidence       Quite a lot of confidence
## 305       Not very much confidence        Not very much confidence
## 306         None at all confidence       Quite a lot of confidence
## 307         None at all confidence       Quite a lot of confidence
## 308         None at all confidence        Not very much confidence
## 309       Not very much confidence       Quite a lot of confidence
## 310       Not very much confidence      A great deal of confidence
## 311                     Don't know      A great deal of confidence
## 312      Quite a lot of confidence       Quite a lot of confidence
## 313       Not very much confidence       Quite a lot of confidence
## 314       Not very much confidence      A great deal of confidence
## 315                     Don't know      A great deal of confidence
## 316       Not very much confidence       Quite a lot of confidence
## 317         None at all confidence       Quite a lot of confidence
## 318                     Don't know       Quite a lot of confidence
## 319       Not very much confidence        Not very much confidence
## 320      Quite a lot of confidence       Quite a lot of confidence
## 321      Quite a lot of confidence       Quite a lot of confidence
## 322                     Don't know       Quite a lot of confidence
## 323                     Don't know       Quite a lot of confidence
## 324                     Don't know       Quite a lot of confidence
## 325      Quite a lot of confidence       Quite a lot of confidence
## 326      Quite a lot of confidence       Quite a lot of confidence
## 327       Not very much confidence       Quite a lot of confidence
## 328      Quite a lot of confidence                      Don't know
## 329      Quite a lot of confidence        Not very much confidence
## 330                     Don't know                      Don't know
## 331     A great deal of confidence                      Don't know
## 332     A great deal of confidence       Quite a lot of confidence
## 333     A great deal of confidence       Quite a lot of confidence
## 334      Quite a lot of confidence      A great deal of confidence
## 335       Not very much confidence       Quite a lot of confidence
## 336       Not very much confidence       Quite a lot of confidence
## 337       Not very much confidence       Quite a lot of confidence
## 338      Quite a lot of confidence        Not very much confidence
## 339         None at all confidence       Quite a lot of confidence
## 340     A great deal of confidence      A great deal of confidence
## 341         None at all confidence        Not very much confidence
## 342       Not very much confidence       Quite a lot of confidence
## 343       Not very much confidence       Quite a lot of confidence
## 344       Not very much confidence       Quite a lot of confidence
## 345     A great deal of confidence      A great deal of confidence
## 346       Not very much confidence       Quite a lot of confidence
## 347       Not very much confidence       Quite a lot of confidence
## 348                     Don't know      A great deal of confidence
## 349      Quite a lot of confidence       Quite a lot of confidence
## 350         None at all confidence       Quite a lot of confidence
## 351                     Don't know       Quite a lot of confidence
## 352                     Don't know                      Don't know
## 353      Quite a lot of confidence       Quite a lot of confidence
## 354                     Don't know       Quite a lot of confidence
## 355      Quite a lot of confidence      A great deal of confidence
## 356      Quite a lot of confidence       Quite a lot of confidence
## 357      Quite a lot of confidence       Quite a lot of confidence
## 358      Quite a lot of confidence       Quite a lot of confidence
## 359       Not very much confidence       Quite a lot of confidence
## 360     A great deal of confidence      A great deal of confidence
## 361      Quite a lot of confidence       Quite a lot of confidence
## 362      Quite a lot of confidence       Quite a lot of confidence
## 363     A great deal of confidence       Quite a lot of confidence
## 364       Not very much confidence       Quite a lot of confidence
## 365                     Don't know                      Don't know
## 366      Quite a lot of confidence       Quite a lot of confidence
## 367      Quite a lot of confidence       Quite a lot of confidence
## 368                     Don't know       Quite a lot of confidence
## 369                     Don't know        Not very much confidence
## 370      Quite a lot of confidence       Quite a lot of confidence
## 371                     Don't know       Quite a lot of confidence
## 372       Not very much confidence       Quite a lot of confidence
## 373     A great deal of confidence      A great deal of confidence
## 374      Quite a lot of confidence       Quite a lot of confidence
## 375      Quite a lot of confidence       Quite a lot of confidence
## 376                     Don't know       Quite a lot of confidence
## 377      Quite a lot of confidence       Quite a lot of confidence
## 378      Quite a lot of confidence       Quite a lot of confidence
## 379      Quite a lot of confidence       Quite a lot of confidence
## 380      Quite a lot of confidence       Quite a lot of confidence
## 381                     Don't know       Quite a lot of confidence
## 382                     Don't know       Quite a lot of confidence
## 383      Quite a lot of confidence       Quite a lot of confidence
## 384                     Don't know       Quite a lot of confidence
## 385      Quite a lot of confidence       Quite a lot of confidence
## 386      Quite a lot of confidence       Quite a lot of confidence
## 387      Quite a lot of confidence       Quite a lot of confidence
## 388      Quite a lot of confidence       Quite a lot of confidence
## 389      Quite a lot of confidence       Quite a lot of confidence
## 390       Not very much confidence        Not very much confidence
## 391       Not very much confidence       Quite a lot of confidence
## 392      Quite a lot of confidence       Quite a lot of confidence
## 393                     Don't know                      Don't know
## 394      Quite a lot of confidence       Quite a lot of confidence
## 395      Quite a lot of confidence       Quite a lot of confidence
## 396      Quite a lot of confidence      A great deal of confidence
## 397      Quite a lot of confidence       Quite a lot of confidence
## 398       Not very much confidence       Quite a lot of confidence
## 399      Quite a lot of confidence       Quite a lot of confidence
## 400      Quite a lot of confidence       Quite a lot of confidence
## 401      Quite a lot of confidence       Quite a lot of confidence
## 402                     Don't know       Quite a lot of confidence
## 403     A great deal of confidence      A great deal of confidence
## 404      Quite a lot of confidence       Quite a lot of confidence
## 405       Not very much confidence       Quite a lot of confidence
## 406                     Don't know      A great deal of confidence
## 407     A great deal of confidence      A great deal of confidence
## 408     A great deal of confidence      A great deal of confidence
## 409       Not very much confidence       Quite a lot of confidence
## 410                     Don't know                      Don't know
## 411     A great deal of confidence      A great deal of confidence
## 412     A great deal of confidence      A great deal of confidence
## 413     A great deal of confidence      A great deal of confidence
## 414                           <NA>       Quite a lot of confidence
## 415                     Don't know       Quite a lot of confidence
## 416      Quite a lot of confidence       Quite a lot of confidence
## 417                     Don't know                      Don't know
## 418                     Don't know      A great deal of confidence
## 419      Quite a lot of confidence       Quite a lot of confidence
## 420                           <NA>      A great deal of confidence
## 421     A great deal of confidence      A great deal of confidence
## 422                     Don't know      A great deal of confidence
## 423         None at all confidence       Quite a lot of confidence
## 424     A great deal of confidence      A great deal of confidence
## 425      Quite a lot of confidence       Quite a lot of confidence
## 426     A great deal of confidence      A great deal of confidence
## 427     A great deal of confidence      A great deal of confidence
## 428                     Don't know                      Don't know
## 429      Quite a lot of confidence                            <NA>
## 430     A great deal of confidence      A great deal of confidence
## 431     A great deal of confidence      A great deal of confidence
## 432                     Don't know                      Don't know
## 433     A great deal of confidence      A great deal of confidence
## 434     A great deal of confidence      A great deal of confidence
## 435                     Don't know       Quite a lot of confidence
## 436     A great deal of confidence      A great deal of confidence
## 437     A great deal of confidence      A great deal of confidence
## 438      Quite a lot of confidence       Quite a lot of confidence
## 439     A great deal of confidence      A great deal of confidence
## 440      Quite a lot of confidence       Quite a lot of confidence
## 441     A great deal of confidence      A great deal of confidence
## 442      Quite a lot of confidence       Quite a lot of confidence
## 443     A great deal of confidence      A great deal of confidence
## 444     A great deal of confidence      A great deal of confidence
## 445     A great deal of confidence      A great deal of confidence
## 446     A great deal of confidence      A great deal of confidence
## 447     A great deal of confidence      A great deal of confidence
## 448     A great deal of confidence      A great deal of confidence
## 449     A great deal of confidence      A great deal of confidence
## 450      Quite a lot of confidence       Quite a lot of confidence
## 451      Quite a lot of confidence       Quite a lot of confidence
## 452       Not very much confidence      A great deal of confidence
## 453      Quite a lot of confidence       Quite a lot of confidence
## 454                           <NA>        Not very much confidence
## 455                           <NA>      A great deal of confidence
## 456                           <NA>        Not very much confidence
## 457                           <NA>                      Don't know
## 458                           <NA>        Not very much confidence
## 459                           <NA>        Not very much confidence
## 460                           <NA>          None at all confidence
## 461                           <NA>       Quite a lot of confidence
## 462                           <NA>        Not very much confidence
## 463                           <NA>      A great deal of confidence
## 464                           <NA>        Not very much confidence
## 465                           <NA>        Not very much confidence
## 466                           <NA>       Quite a lot of confidence
## 467                           <NA>      A great deal of confidence
## 468                           <NA>        Not very much confidence
## 469                           <NA>      A great deal of confidence
## 470                           <NA>       Quite a lot of confidence
## 471                           <NA>        Not very much confidence
## 472                           <NA>      A great deal of confidence
## 473                           <NA>        Not very much confidence
## 474                           <NA>                      Don't know
## 475                           <NA>        Not very much confidence
## 476                           <NA>        Not very much confidence
## 477                           <NA>          None at all confidence
## 478                           <NA>        Not very much confidence
## 479                           <NA>                      Don't know
## 480                           <NA>        Not very much confidence
## 481                           <NA>       Quite a lot of confidence
## 482                           <NA>        Not very much confidence
## 483                           <NA>       Quite a lot of confidence
## 484                           <NA>        Not very much confidence
## 485                           <NA>       Quite a lot of confidence
## 486                           <NA>      A great deal of confidence
## 487                           <NA>                      Don't know
## 488                           <NA>       Quite a lot of confidence
## 489                           <NA>       Quite a lot of confidence
## 490                           <NA>          None at all confidence
## 491                           <NA>        Not very much confidence
## 492                           <NA>      A great deal of confidence
## 493                           <NA>          None at all confidence
## 494                           <NA>        Not very much confidence
## 495                           <NA>        Not very much confidence
## 496                           <NA>       Quite a lot of confidence
##      Confidence.in..District.Development.Committee..DDC..office
## 1                                     Quite a lot of confidence
## 2                                                    Don't know
## 3                                     Quite a lot of confidence
## 4                                     Quite a lot of confidence
## 5                                     Quite a lot of confidence
## 6                                     Quite a lot of confidence
## 7                                     Quite a lot of confidence
## 8                                     Quite a lot of confidence
## 9                                      Not very much confidence
## 10                                     Not very much confidence
## 11                                    Quite a lot of confidence
## 12                                    Quite a lot of confidence
## 13                                     Not very much confidence
## 14                                     Not very much confidence
## 15                                     Not very much confidence
## 16                                    Quite a lot of confidence
## 17                                   A great deal of confidence
## 18                                    Quite a lot of confidence
## 19                                   A great deal of confidence
## 20                                    Quite a lot of confidence
## 21                                   A great deal of confidence
## 22                                    Quite a lot of confidence
## 23                                   A great deal of confidence
## 24                                    Quite a lot of confidence
## 25                                     Not very much confidence
## 26                                    Quite a lot of confidence
## 27                                     Not very much confidence
## 28                                    Quite a lot of confidence
## 29                                   A great deal of confidence
## 30                                    Quite a lot of confidence
## 31                                    Quite a lot of confidence
## 32                                                   Don't know
## 33                                    Quite a lot of confidence
## 34                                    Quite a lot of confidence
## 35                                    Quite a lot of confidence
## 36                                     Not very much confidence
## 37                                    Quite a lot of confidence
## 38                                    Quite a lot of confidence
## 39                                     Not very much confidence
## 40                                    Quite a lot of confidence
## 41                                     Not very much confidence
## 42                                    Quite a lot of confidence
## 43                                    Quite a lot of confidence
## 44                                    Quite a lot of confidence
## 45                                    Quite a lot of confidence
## 46                                    Quite a lot of confidence
## 47                                     Not very much confidence
## 48                                    Quite a lot of confidence
## 49                                    Quite a lot of confidence
## 50                                    Quite a lot of confidence
## 51                                    Quite a lot of confidence
## 52                                                   Don't know
## 53                                    Quite a lot of confidence
## 54                                    Quite a lot of confidence
## 55                                    Quite a lot of confidence
## 56                                                   Don't know
## 57                                                   Don't know
## 58                                                   Don't know
## 59                                                   Don't know
## 60                                    Quite a lot of confidence
## 61                                    Quite a lot of confidence
## 62                                    Quite a lot of confidence
## 63                                    Quite a lot of confidence
## 64                                    Quite a lot of confidence
## 65                                    Quite a lot of confidence
## 66                                    Quite a lot of confidence
## 67                                     Not very much confidence
## 68                                    Quite a lot of confidence
## 69                                     Not very much confidence
## 70                                     Not very much confidence
## 71                                    Quite a lot of confidence
## 72                                    Quite a lot of confidence
## 73                                    Quite a lot of confidence
## 74                                    Quite a lot of confidence
## 75                                    Quite a lot of confidence
## 76                                    Quite a lot of confidence
## 77                                    Quite a lot of confidence
## 78                                    Quite a lot of confidence
## 79                                    Quite a lot of confidence
## 80                                    Quite a lot of confidence
## 81                                    Quite a lot of confidence
## 82                                    Quite a lot of confidence
## 83                                    Quite a lot of confidence
## 84                                    Quite a lot of confidence
## 85                                    Quite a lot of confidence
## 86                                    Quite a lot of confidence
## 87                                    Quite a lot of confidence
## 88                                    Quite a lot of confidence
## 89                                    Quite a lot of confidence
## 90                                   A great deal of confidence
## 91                                    Quite a lot of confidence
## 92                                    Quite a lot of confidence
## 93                                    Quite a lot of confidence
## 94                                    Quite a lot of confidence
## 95                                    Quite a lot of confidence
## 96                                    Quite a lot of confidence
## 97                                    Quite a lot of confidence
## 98                                    Quite a lot of confidence
## 99                                    Quite a lot of confidence
## 100                                   Quite a lot of confidence
## 101                                   Quite a lot of confidence
## 102                                   Quite a lot of confidence
## 103                                   Quite a lot of confidence
## 104                                                  Don't know
## 105                                   Quite a lot of confidence
## 106                                  A great deal of confidence
## 107                                   Quite a lot of confidence
## 108                                   Quite a lot of confidence
## 109                                                  Don't know
## 110                                                  Don't know
## 111                                                        <NA>
## 112                                   Quite a lot of confidence
## 113                                   Quite a lot of confidence
## 114                                  A great deal of confidence
## 115                                   Quite a lot of confidence
## 116                                                  Don't know
## 117                                   Quite a lot of confidence
## 118                                                  Don't know
## 119                                  A great deal of confidence
## 120                                  A great deal of confidence
## 121                                   Quite a lot of confidence
## 122                                  A great deal of confidence
## 123                                   Quite a lot of confidence
## 124                                  A great deal of confidence
## 125                                  A great deal of confidence
## 126                                   Quite a lot of confidence
## 127                                   Quite a lot of confidence
## 128                                  A great deal of confidence
## 129                                   Quite a lot of confidence
## 130                                  A great deal of confidence
## 131                                  A great deal of confidence
## 132                                   Quite a lot of confidence
## 133                                   Quite a lot of confidence
## 134                                   Quite a lot of confidence
## 135                                   Quite a lot of confidence
## 136                                      None at all confidence
## 137                                   Quite a lot of confidence
## 138                                  A great deal of confidence
## 139                                  A great deal of confidence
## 140                                   Quite a lot of confidence
## 141                                   Quite a lot of confidence
## 142                                   Quite a lot of confidence
## 143                                   Quite a lot of confidence
## 144                                  A great deal of confidence
## 145                                                  Don't know
## 146                                    Not very much confidence
## 147                                   Quite a lot of confidence
## 148                                   Quite a lot of confidence
## 149                                   Quite a lot of confidence
## 150                                  A great deal of confidence
## 151                                                  Don't know
## 152                                   Quite a lot of confidence
## 153                                   Quite a lot of confidence
## 154                                  A great deal of confidence
## 155                                   Quite a lot of confidence
## 156                                                  Don't know
## 157                                   Quite a lot of confidence
## 158                                   Quite a lot of confidence
## 159                                  A great deal of confidence
## 160                                   Quite a lot of confidence
## 161                                  A great deal of confidence
## 162                                  A great deal of confidence
## 163                                   Quite a lot of confidence
## 164                                  A great deal of confidence
## 165                                  A great deal of confidence
## 166                                  A great deal of confidence
## 167                                   Quite a lot of confidence
## 168                                   Quite a lot of confidence
## 169                                   Quite a lot of confidence
## 170                                  A great deal of confidence
## 171                                  A great deal of confidence
## 172                                   Quite a lot of confidence
## 173                                   Quite a lot of confidence
## 174                                  A great deal of confidence
## 175                                   Quite a lot of confidence
## 176                                   Quite a lot of confidence
## 177                                   Quite a lot of confidence
## 178                                   Quite a lot of confidence
## 179                                   Quite a lot of confidence
## 180                                   Quite a lot of confidence
## 181                                   Quite a lot of confidence
## 182                                   Quite a lot of confidence
## 183                                                  Don't know
## 184                                   Quite a lot of confidence
## 185                                  A great deal of confidence
## 186                                   Quite a lot of confidence
## 187                                  A great deal of confidence
## 188                                   Quite a lot of confidence
## 189                                  A great deal of confidence
## 190                                  A great deal of confidence
## 191                                  A great deal of confidence
## 192                                  A great deal of confidence
## 193                                  A great deal of confidence
## 194                                   Quite a lot of confidence
## 195                                   Quite a lot of confidence
## 196                                   Quite a lot of confidence
## 197                                   Quite a lot of confidence
## 198                                   Quite a lot of confidence
## 199                                  A great deal of confidence
## 200                                   Quite a lot of confidence
## 201                                      None at all confidence
## 202                                    Not very much confidence
## 203                                      None at all confidence
## 204                                   Quite a lot of confidence
## 205                                   Quite a lot of confidence
## 206                                   Quite a lot of confidence
## 207                                    Not very much confidence
## 208                                   Quite a lot of confidence
## 209                                   Quite a lot of confidence
## 210                                    Not very much confidence
## 211                                   Quite a lot of confidence
## 212                                   Quite a lot of confidence
## 213                                   Quite a lot of confidence
## 214                                   Quite a lot of confidence
## 215                                   Quite a lot of confidence
## 216                                   Quite a lot of confidence
## 217                                   Quite a lot of confidence
## 218                                   Quite a lot of confidence
## 219                                    Not very much confidence
## 220                                   Quite a lot of confidence
## 221                                    Not very much confidence
## 222                                    Not very much confidence
## 223                                      None at all confidence
## 224                                    Not very much confidence
## 225                                      None at all confidence
## 226                                    Not very much confidence
## 227                                    Not very much confidence
## 228                                    Not very much confidence
## 229                                   Quite a lot of confidence
## 230                                  A great deal of confidence
## 231                                   Quite a lot of confidence
## 232                                  A great deal of confidence
## 233                                    Not very much confidence
## 234                                    Not very much confidence
## 235                                   Quite a lot of confidence
## 236                                   Quite a lot of confidence
## 237                                   Quite a lot of confidence
## 238                                  A great deal of confidence
## 239                                   Quite a lot of confidence
## 240                                   Quite a lot of confidence
## 241                                    Not very much confidence
## 242                                   Quite a lot of confidence
## 243                                   Quite a lot of confidence
## 244                                   Quite a lot of confidence
## 245                                      None at all confidence
## 246                                   Quite a lot of confidence
## 247                                  A great deal of confidence
## 248                                    Not very much confidence
## 249                                  A great deal of confidence
## 250                                    Not very much confidence
## 251                                   Quite a lot of confidence
## 252                                   Quite a lot of confidence
## 253                                   Quite a lot of confidence
## 254                                   Quite a lot of confidence
## 255                                   Quite a lot of confidence
## 256                                    Not very much confidence
## 257                                  A great deal of confidence
## 258                                  A great deal of confidence
## 259                                   Quite a lot of confidence
## 260                                   Quite a lot of confidence
## 261                                   Quite a lot of confidence
## 262                                   Quite a lot of confidence
## 263                                  A great deal of confidence
## 264                                   Quite a lot of confidence
## 265                                   Quite a lot of confidence
## 266                                   Quite a lot of confidence
## 267                                   Quite a lot of confidence
## 268                                   Quite a lot of confidence
## 269                                   Quite a lot of confidence
## 270                                   Quite a lot of confidence
## 271                                   Quite a lot of confidence
## 272                                   Quite a lot of confidence
## 273                                   Quite a lot of confidence
## 274                                    Not very much confidence
## 275                                   Quite a lot of confidence
## 276                                    Not very much confidence
## 277                                   Quite a lot of confidence
## 278                                   Quite a lot of confidence
## 279                                   Quite a lot of confidence
## 280                                   Quite a lot of confidence
## 281                                  A great deal of confidence
## 282                                   Quite a lot of confidence
## 283                                  A great deal of confidence
## 284                                   Quite a lot of confidence
## 285                                   Quite a lot of confidence
## 286                                   Quite a lot of confidence
## 287                                   Quite a lot of confidence
## 288                                   Quite a lot of confidence
## 289                                   Quite a lot of confidence
## 290                                   Quite a lot of confidence
## 291                                   Quite a lot of confidence
## 292                                   Quite a lot of confidence
## 293                                  A great deal of confidence
## 294                                   Quite a lot of confidence
## 295                                   Quite a lot of confidence
## 296                                   Quite a lot of confidence
## 297                                  A great deal of confidence
## 298                                  A great deal of confidence
## 299                                   Quite a lot of confidence
## 300                                   Quite a lot of confidence
## 302                                   Quite a lot of confidence
## 303                                  A great deal of confidence
## 304                                   Quite a lot of confidence
## 305                                    Not very much confidence
## 306                                   Quite a lot of confidence
## 307                                   Quite a lot of confidence
## 308                                    Not very much confidence
## 309                                   Quite a lot of confidence
## 310                                   Quite a lot of confidence
## 311                                  A great deal of confidence
## 312                                   Quite a lot of confidence
## 313                                    Not very much confidence
## 314                                   Quite a lot of confidence
## 315                                  A great deal of confidence
## 316                                   Quite a lot of confidence
## 317                                   Quite a lot of confidence
## 318                                   Quite a lot of confidence
## 319                                    Not very much confidence
## 320                                   Quite a lot of confidence
## 321                                   Quite a lot of confidence
## 322                                   Quite a lot of confidence
## 323                                   Quite a lot of confidence
## 324                                   Quite a lot of confidence
## 325                                   Quite a lot of confidence
## 326                                   Quite a lot of confidence
## 327                                   Quite a lot of confidence
## 328                                   Quite a lot of confidence
## 329                                    Not very much confidence
## 330                                  A great deal of confidence
## 331                                  A great deal of confidence
## 332                                    Not very much confidence
## 333                                   Quite a lot of confidence
## 334                                                  Don't know
## 335                                  A great deal of confidence
## 336                                    Not very much confidence
## 337                                    Not very much confidence
## 338                                   Quite a lot of confidence
## 339                                   Quite a lot of confidence
## 340                                   Quite a lot of confidence
## 341                                    Not very much confidence
## 342                                   Quite a lot of confidence
## 343                                    Not very much confidence
## 344                                   Quite a lot of confidence
## 345                                  A great deal of confidence
## 346                                   Quite a lot of confidence
## 347                                   Quite a lot of confidence
## 348                                  A great deal of confidence
## 349                                   Quite a lot of confidence
## 350                                   Quite a lot of confidence
## 351                                   Quite a lot of confidence
## 352                                                  Don't know
## 353                                   Quite a lot of confidence
## 354                                   Quite a lot of confidence
## 355                                   Quite a lot of confidence
## 356                                   Quite a lot of confidence
## 357                                   Quite a lot of confidence
## 358                                   Quite a lot of confidence
## 359                                   Quite a lot of confidence
## 360                                  A great deal of confidence
## 361                                   Quite a lot of confidence
## 362                                   Quite a lot of confidence
## 363                                   Quite a lot of confidence
## 364                                   Quite a lot of confidence
## 365                                                  Don't know
## 366                                   Quite a lot of confidence
## 367                                   Quite a lot of confidence
## 368                                   Quite a lot of confidence
## 369                                    Not very much confidence
## 370                                   Quite a lot of confidence
## 371                                   Quite a lot of confidence
## 372                                   Quite a lot of confidence
## 373                                  A great deal of confidence
## 374                                   Quite a lot of confidence
## 375                                   Quite a lot of confidence
## 376                                   Quite a lot of confidence
## 377                                   Quite a lot of confidence
## 378                                   Quite a lot of confidence
## 379                                   Quite a lot of confidence
## 380                                   Quite a lot of confidence
## 381                                   Quite a lot of confidence
## 382                                   Quite a lot of confidence
## 383                                   Quite a lot of confidence
## 384                                   Quite a lot of confidence
## 385                                   Quite a lot of confidence
## 386                                   Quite a lot of confidence
## 387                                   Quite a lot of confidence
## 388                                   Quite a lot of confidence
## 389                                   Quite a lot of confidence
## 390                                    Not very much confidence
## 391                                   Quite a lot of confidence
## 392                                   Quite a lot of confidence
## 393                                                  Don't know
## 394                                   Quite a lot of confidence
## 395                                   Quite a lot of confidence
## 396                                   Quite a lot of confidence
## 397                                   Quite a lot of confidence
## 398                                   Quite a lot of confidence
## 399                                   Quite a lot of confidence
## 400                                   Quite a lot of confidence
## 401                                   Quite a lot of confidence
## 402                                   Quite a lot of confidence
## 403                                  A great deal of confidence
## 404                                   Quite a lot of confidence
## 405                                    Not very much confidence
## 406                                  A great deal of confidence
## 407                                  A great deal of confidence
## 408                                  A great deal of confidence
## 409                                   Quite a lot of confidence
## 410                                                        <NA>
## 411                                  A great deal of confidence
## 412                                  A great deal of confidence
## 413                                  A great deal of confidence
## 414                                                        <NA>
## 415                                                  Don't know
## 416                                   Quite a lot of confidence
## 417                                                  Don't know
## 418                                  A great deal of confidence
## 419                                   Quite a lot of confidence
## 420                                  A great deal of confidence
## 421                                  A great deal of confidence
## 422                                  A great deal of confidence
## 423                                   Quite a lot of confidence
## 424                                  A great deal of confidence
## 425                                  A great deal of confidence
## 426                                  A great deal of confidence
## 427                                  A great deal of confidence
## 428                                                  Don't know
## 429                                   Quite a lot of confidence
## 430                                  A great deal of confidence
## 431                                  A great deal of confidence
## 432                                                  Don't know
## 433                                  A great deal of confidence
## 434                                  A great deal of confidence
## 435                                   Quite a lot of confidence
## 436                                  A great deal of confidence
## 437                                  A great deal of confidence
## 438                                   Quite a lot of confidence
## 439                                  A great deal of confidence
## 440                                   Quite a lot of confidence
## 441                                  A great deal of confidence
## 442                                   Quite a lot of confidence
## 443                                  A great deal of confidence
## 444                                  A great deal of confidence
## 445                                  A great deal of confidence
## 446                                  A great deal of confidence
## 447                                  A great deal of confidence
## 448                                  A great deal of confidence
## 449                                  A great deal of confidence
## 450                                   Quite a lot of confidence
## 451                                   Quite a lot of confidence
## 452                                  A great deal of confidence
## 453                                                        <NA>
## 454                                    Not very much confidence
## 455                                                        <NA>
## 456                                   Quite a lot of confidence
## 457                                                  Don't know
## 458                                    Not very much confidence
## 459                                   Quite a lot of confidence
## 460                                    Not very much confidence
## 461                                                  Don't know
## 462                                   Quite a lot of confidence
## 463                                    Not very much confidence
## 464                                      None at all confidence
## 465                                   Quite a lot of confidence
## 466                                    Not very much confidence
## 467                                  A great deal of confidence
## 468                                   Quite a lot of confidence
## 469                                    Not very much confidence
## 470                                  A great deal of confidence
## 471                                    Not very much confidence
## 472                                                        <NA>
## 473                                    Not very much confidence
## 474                                                  Don't know
## 475                                   Quite a lot of confidence
## 476                                    Not very much confidence
## 477                                    Not very much confidence
## 478                                    Not very much confidence
## 479                                                  Don't know
## 480                                    Not very much confidence
## 481                                   Quite a lot of confidence
## 482                                    Not very much confidence
## 483                                   Quite a lot of confidence
## 484                                    Not very much confidence
## 485                                   Quite a lot of confidence
## 486                                   Quite a lot of confidence
## 487                                                  Don't know
## 488                                   Quite a lot of confidence
## 489                                   Quite a lot of confidence
## 490                                                  Don't know
## 491                                    Not very much confidence
## 492                                  A great deal of confidence
## 493                                      None at all confidence
## 494                                    Not very much confidence
## 495                                    Not very much confidence
## 496                                   Quite a lot of confidence
##        Confidence.in..VDC.or.NP Confidence.in..School.or.college
## 1     Quite a lot of confidence        Quite a lot of confidence
## 2     Quite a lot of confidence       A great deal of confidence
## 3     Quite a lot of confidence         Not very much confidence
## 4    A great deal of confidence       A great deal of confidence
## 5                          <NA>                             <NA>
## 6      Not very much confidence         Not very much confidence
## 7     Quite a lot of confidence        Quite a lot of confidence
## 8      Not very much confidence           None at all confidence
## 9      Not very much confidence         Not very much confidence
## 10    Quite a lot of confidence        Quite a lot of confidence
## 11     Not very much confidence         Not very much confidence
## 12    Quite a lot of confidence       A great deal of confidence
## 13    Quite a lot of confidence       A great deal of confidence
## 14    Quite a lot of confidence       A great deal of confidence
## 15     Not very much confidence                             <NA>
## 16    Quite a lot of confidence         Not very much confidence
## 17     Not very much confidence        Quite a lot of confidence
## 18    Quite a lot of confidence       A great deal of confidence
## 19   A great deal of confidence        Quite a lot of confidence
## 20    Quite a lot of confidence       A great deal of confidence
## 21   A great deal of confidence        Quite a lot of confidence
## 22    Quite a lot of confidence        Quite a lot of confidence
## 23   A great deal of confidence        Quite a lot of confidence
## 24    Quite a lot of confidence       A great deal of confidence
## 25     Not very much confidence        Quite a lot of confidence
## 26    Quite a lot of confidence                       Don't know
## 27     Not very much confidence        Quite a lot of confidence
## 28    Quite a lot of confidence        Quite a lot of confidence
## 29     Not very much confidence        Quite a lot of confidence
## 30    Quite a lot of confidence        Quite a lot of confidence
## 31    Quite a lot of confidence        Quite a lot of confidence
## 32                   Don't know                       Don't know
## 33     Not very much confidence                             <NA>
## 34    Quite a lot of confidence        Quite a lot of confidence
## 35    Quite a lot of confidence        Quite a lot of confidence
## 36     Not very much confidence        Quite a lot of confidence
## 37     Not very much confidence        Quite a lot of confidence
## 38     Not very much confidence         Not very much confidence
## 39    Quite a lot of confidence         Not very much confidence
## 40    Quite a lot of confidence        Quite a lot of confidence
## 41     Not very much confidence        Quite a lot of confidence
## 42    Quite a lot of confidence        Quite a lot of confidence
## 43    Quite a lot of confidence        Quite a lot of confidence
## 44    Quite a lot of confidence        Quite a lot of confidence
## 45     Not very much confidence        Quite a lot of confidence
## 46       None at all confidence        Quite a lot of confidence
## 47     Not very much confidence        Quite a lot of confidence
## 48    Quite a lot of confidence        Quite a lot of confidence
## 49    Quite a lot of confidence        Quite a lot of confidence
## 50    Quite a lot of confidence       A great deal of confidence
## 51    Quite a lot of confidence                       Don't know
## 52    Quite a lot of confidence                       Don't know
## 53    Quite a lot of confidence        Quite a lot of confidence
## 54    Quite a lot of confidence        Quite a lot of confidence
## 55    Quite a lot of confidence        Quite a lot of confidence
## 56    Quite a lot of confidence        Quite a lot of confidence
## 57    Quite a lot of confidence        Quite a lot of confidence
## 58    Quite a lot of confidence        Quite a lot of confidence
## 59    Quite a lot of confidence        Quite a lot of confidence
## 60    Quite a lot of confidence        Quite a lot of confidence
## 61    Quite a lot of confidence        Quite a lot of confidence
## 62    Quite a lot of confidence        Quite a lot of confidence
## 63    Quite a lot of confidence        Quite a lot of confidence
## 64    Quite a lot of confidence        Quite a lot of confidence
## 65    Quite a lot of confidence        Quite a lot of confidence
## 66    Quite a lot of confidence        Quite a lot of confidence
## 67     Not very much confidence         Not very much confidence
## 68    Quite a lot of confidence        Quite a lot of confidence
## 69    Quite a lot of confidence        Quite a lot of confidence
## 70    Quite a lot of confidence        Quite a lot of confidence
## 71    Quite a lot of confidence        Quite a lot of confidence
## 72    Quite a lot of confidence        Quite a lot of confidence
## 73    Quite a lot of confidence        Quite a lot of confidence
## 74    Quite a lot of confidence        Quite a lot of confidence
## 75    Quite a lot of confidence        Quite a lot of confidence
## 76    Quite a lot of confidence        Quite a lot of confidence
## 77    Quite a lot of confidence        Quite a lot of confidence
## 78    Quite a lot of confidence        Quite a lot of confidence
## 79    Quite a lot of confidence        Quite a lot of confidence
## 80    Quite a lot of confidence        Quite a lot of confidence
## 81    Quite a lot of confidence        Quite a lot of confidence
## 82    Quite a lot of confidence        Quite a lot of confidence
## 83    Quite a lot of confidence        Quite a lot of confidence
## 84    Quite a lot of confidence        Quite a lot of confidence
## 85    Quite a lot of confidence        Quite a lot of confidence
## 86    Quite a lot of confidence        Quite a lot of confidence
## 87    Quite a lot of confidence        Quite a lot of confidence
## 88   A great deal of confidence       A great deal of confidence
## 89    Quite a lot of confidence        Quite a lot of confidence
## 90    Quite a lot of confidence        Quite a lot of confidence
## 91    Quite a lot of confidence       A great deal of confidence
## 92    Quite a lot of confidence        Quite a lot of confidence
## 93    Quite a lot of confidence        Quite a lot of confidence
## 94    Quite a lot of confidence        Quite a lot of confidence
## 95    Quite a lot of confidence        Quite a lot of confidence
## 96    Quite a lot of confidence        Quite a lot of confidence
## 97    Quite a lot of confidence        Quite a lot of confidence
## 98    Quite a lot of confidence        Quite a lot of confidence
## 99    Quite a lot of confidence        Quite a lot of confidence
## 100  A great deal of confidence       A great deal of confidence
## 101  A great deal of confidence       A great deal of confidence
## 102  A great deal of confidence                       Don't know
## 103   Quite a lot of confidence       A great deal of confidence
## 104                        <NA>        Quite a lot of confidence
## 105  A great deal of confidence       A great deal of confidence
## 106  A great deal of confidence       A great deal of confidence
## 107   Quite a lot of confidence       A great deal of confidence
## 108   Quite a lot of confidence       A great deal of confidence
## 109   Quite a lot of confidence       A great deal of confidence
## 110  A great deal of confidence       A great deal of confidence
## 111                        <NA>                             <NA>
## 112  A great deal of confidence       A great deal of confidence
## 113  A great deal of confidence       A great deal of confidence
## 114  A great deal of confidence       A great deal of confidence
## 115   Quite a lot of confidence                             <NA>
## 116  A great deal of confidence       A great deal of confidence
## 117  A great deal of confidence       A great deal of confidence
## 118  A great deal of confidence       A great deal of confidence
## 119  A great deal of confidence        Quite a lot of confidence
## 120  A great deal of confidence        Quite a lot of confidence
## 121   Quite a lot of confidence       A great deal of confidence
## 122  A great deal of confidence        Quite a lot of confidence
## 123  A great deal of confidence       A great deal of confidence
## 124   Quite a lot of confidence       A great deal of confidence
## 125   Quite a lot of confidence        Quite a lot of confidence
## 126   Quite a lot of confidence       A great deal of confidence
## 127    Not very much confidence       A great deal of confidence
## 128   Quite a lot of confidence       A great deal of confidence
## 129   Quite a lot of confidence                       Don't know
## 130   Quite a lot of confidence       A great deal of confidence
## 131   Quite a lot of confidence       A great deal of confidence
## 132   Quite a lot of confidence        Quite a lot of confidence
## 133   Quite a lot of confidence         Not very much confidence
## 134   Quite a lot of confidence         Not very much confidence
## 135    Not very much confidence           None at all confidence
## 136      None at all confidence           None at all confidence
## 137   Quite a lot of confidence         Not very much confidence
## 138  A great deal of confidence        Quite a lot of confidence
## 139   Quite a lot of confidence       A great deal of confidence
## 140  A great deal of confidence        Quite a lot of confidence
## 141   Quite a lot of confidence       A great deal of confidence
## 142  A great deal of confidence        Quite a lot of confidence
## 143  A great deal of confidence       A great deal of confidence
## 144  A great deal of confidence       A great deal of confidence
## 145  A great deal of confidence        Quite a lot of confidence
## 146    Not very much confidence         Not very much confidence
## 147   Quite a lot of confidence         Not very much confidence
## 148    Not very much confidence         Not very much confidence
## 149   Quite a lot of confidence       A great deal of confidence
## 150  A great deal of confidence        Quite a lot of confidence
## 151  A great deal of confidence       A great deal of confidence
## 152   Quite a lot of confidence       A great deal of confidence
## 153   Quite a lot of confidence       A great deal of confidence
## 154  A great deal of confidence       A great deal of confidence
## 155   Quite a lot of confidence       A great deal of confidence
## 156  A great deal of confidence       A great deal of confidence
## 157   Quite a lot of confidence       A great deal of confidence
## 158  A great deal of confidence       A great deal of confidence
## 159  A great deal of confidence       A great deal of confidence
## 160  A great deal of confidence       A great deal of confidence
## 161  A great deal of confidence       A great deal of confidence
## 162  A great deal of confidence       A great deal of confidence
## 163  A great deal of confidence        Quite a lot of confidence
## 164   Quite a lot of confidence        Quite a lot of confidence
## 165  A great deal of confidence       A great deal of confidence
## 166  A great deal of confidence       A great deal of confidence
## 167  A great deal of confidence       A great deal of confidence
## 168   Quite a lot of confidence       A great deal of confidence
## 169  A great deal of confidence        Quite a lot of confidence
## 170   Quite a lot of confidence        Quite a lot of confidence
## 171   Quite a lot of confidence       A great deal of confidence
## 172  A great deal of confidence        Quite a lot of confidence
## 173  A great deal of confidence        Quite a lot of confidence
## 174  A great deal of confidence       A great deal of confidence
## 175  A great deal of confidence       A great deal of confidence
## 176  A great deal of confidence           None at all confidence
## 177  A great deal of confidence       A great deal of confidence
## 178  A great deal of confidence       A great deal of confidence
## 179   Quite a lot of confidence       A great deal of confidence
## 180   Quite a lot of confidence       A great deal of confidence
## 181  A great deal of confidence       A great deal of confidence
## 182  A great deal of confidence       A great deal of confidence
## 183  A great deal of confidence        Quite a lot of confidence
## 184  A great deal of confidence       A great deal of confidence
## 185  A great deal of confidence       A great deal of confidence
## 186  A great deal of confidence       A great deal of confidence
## 187  A great deal of confidence       A great deal of confidence
## 188   Quite a lot of confidence       A great deal of confidence
## 189   Quite a lot of confidence       A great deal of confidence
## 190   Quite a lot of confidence       A great deal of confidence
## 191  A great deal of confidence       A great deal of confidence
## 192   Quite a lot of confidence       A great deal of confidence
## 193  A great deal of confidence       A great deal of confidence
## 194   Quite a lot of confidence       A great deal of confidence
## 195   Quite a lot of confidence        Quite a lot of confidence
## 196  A great deal of confidence       A great deal of confidence
## 197  A great deal of confidence       A great deal of confidence
## 198  A great deal of confidence       A great deal of confidence
## 199  A great deal of confidence       A great deal of confidence
## 200  A great deal of confidence       A great deal of confidence
## 201      None at all confidence        Quite a lot of confidence
## 202    Not very much confidence        Quite a lot of confidence
## 203   Quite a lot of confidence         Not very much confidence
## 204   Quite a lot of confidence       A great deal of confidence
## 205      None at all confidence       A great deal of confidence
## 206    Not very much confidence        Quite a lot of confidence
## 207    Not very much confidence        Quite a lot of confidence
## 208      None at all confidence        Quite a lot of confidence
## 209    Not very much confidence        Quite a lot of confidence
## 210      None at all confidence        Quite a lot of confidence
## 211   Quite a lot of confidence         Not very much confidence
## 212    Not very much confidence        Quite a lot of confidence
## 213    Not very much confidence        Quite a lot of confidence
## 214    Not very much confidence        Quite a lot of confidence
## 215    Not very much confidence        Quite a lot of confidence
## 216    Not very much confidence        Quite a lot of confidence
## 217    Not very much confidence        Quite a lot of confidence
## 218   Quite a lot of confidence        Quite a lot of confidence
## 219      None at all confidence         Not very much confidence
## 220    Not very much confidence       A great deal of confidence
## 221    Not very much confidence       A great deal of confidence
## 222    Not very much confidence        Quite a lot of confidence
## 223      None at all confidence        Quite a lot of confidence
## 224  A great deal of confidence         Not very much confidence
## 225   Quite a lot of confidence       A great deal of confidence
## 226   Quite a lot of confidence       A great deal of confidence
## 227   Quite a lot of confidence       A great deal of confidence
## 228    Not very much confidence        Quite a lot of confidence
## 229    Not very much confidence        Quite a lot of confidence
## 230      None at all confidence           None at all confidence
## 231      None at all confidence           None at all confidence
## 232    Not very much confidence        Quite a lot of confidence
## 233    Not very much confidence        Quite a lot of confidence
## 234    Not very much confidence        Quite a lot of confidence
## 235    Not very much confidence        Quite a lot of confidence
## 236   Quite a lot of confidence         Not very much confidence
## 237   Quite a lot of confidence       A great deal of confidence
## 238   Quite a lot of confidence         Not very much confidence
## 239    Not very much confidence        Quite a lot of confidence
## 240    Not very much confidence        Quite a lot of confidence
## 241    Not very much confidence        Quite a lot of confidence
## 242    Not very much confidence        Quite a lot of confidence
## 243    Not very much confidence        Quite a lot of confidence
## 244    Not very much confidence        Quite a lot of confidence
## 245      None at all confidence        Quite a lot of confidence
## 246      None at all confidence         Not very much confidence
## 247   Quite a lot of confidence         Not very much confidence
## 248   Quite a lot of confidence         Not very much confidence
## 249    Not very much confidence        Quite a lot of confidence
## 250    Not very much confidence        Quite a lot of confidence
## 251   Quite a lot of confidence        Quite a lot of confidence
## 252   Quite a lot of confidence        Quite a lot of confidence
## 253   Quite a lot of confidence        Quite a lot of confidence
## 254   Quite a lot of confidence        Quite a lot of confidence
## 255  A great deal of confidence        Quite a lot of confidence
## 256    Not very much confidence        Quite a lot of confidence
## 257   Quite a lot of confidence        Quite a lot of confidence
## 258                        <NA>        Quite a lot of confidence
## 259   Quite a lot of confidence        Quite a lot of confidence
## 260   Quite a lot of confidence        Quite a lot of confidence
## 261   Quite a lot of confidence        Quite a lot of confidence
## 262   Quite a lot of confidence        Quite a lot of confidence
## 263   Quite a lot of confidence        Quite a lot of confidence
## 264   Quite a lot of confidence        Quite a lot of confidence
## 265   Quite a lot of confidence        Quite a lot of confidence
## 266   Quite a lot of confidence        Quite a lot of confidence
## 267   Quite a lot of confidence        Quite a lot of confidence
## 268   Quite a lot of confidence        Quite a lot of confidence
## 269   Quite a lot of confidence        Quite a lot of confidence
## 270  A great deal of confidence       A great deal of confidence
## 271   Quite a lot of confidence        Quite a lot of confidence
## 272   Quite a lot of confidence        Quite a lot of confidence
## 273   Quite a lot of confidence        Quite a lot of confidence
## 274  A great deal of confidence        Quite a lot of confidence
## 275   Quite a lot of confidence        Quite a lot of confidence
## 276    Not very much confidence        Quite a lot of confidence
## 277   Quite a lot of confidence        Quite a lot of confidence
## 278   Quite a lot of confidence        Quite a lot of confidence
## 279   Quite a lot of confidence        Quite a lot of confidence
## 280   Quite a lot of confidence        Quite a lot of confidence
## 281  A great deal of confidence       A great deal of confidence
## 282   Quite a lot of confidence        Quite a lot of confidence
## 283  A great deal of confidence        Quite a lot of confidence
## 284   Quite a lot of confidence        Quite a lot of confidence
## 285   Quite a lot of confidence        Quite a lot of confidence
## 286   Quite a lot of confidence        Quite a lot of confidence
## 287  A great deal of confidence       A great deal of confidence
## 288   Quite a lot of confidence        Quite a lot of confidence
## 289   Quite a lot of confidence        Quite a lot of confidence
## 290   Quite a lot of confidence        Quite a lot of confidence
## 291   Quite a lot of confidence        Quite a lot of confidence
## 292                  Don't know       A great deal of confidence
## 293  A great deal of confidence        Quite a lot of confidence
## 294   Quite a lot of confidence        Quite a lot of confidence
## 295   Quite a lot of confidence        Quite a lot of confidence
## 296   Quite a lot of confidence        Quite a lot of confidence
## 297  A great deal of confidence        Quite a lot of confidence
## 298   Quite a lot of confidence        Quite a lot of confidence
## 299   Quite a lot of confidence        Quite a lot of confidence
## 300   Quite a lot of confidence        Quite a lot of confidence
## 302   Quite a lot of confidence        Quite a lot of confidence
## 303   Quite a lot of confidence       A great deal of confidence
## 304   Quite a lot of confidence       A great deal of confidence
## 305    Not very much confidence        Quite a lot of confidence
## 306   Quite a lot of confidence       A great deal of confidence
## 307   Quite a lot of confidence        Quite a lot of confidence
## 308   Quite a lot of confidence        Quite a lot of confidence
## 309   Quite a lot of confidence         Not very much confidence
## 310   Quite a lot of confidence       A great deal of confidence
## 311  A great deal of confidence       A great deal of confidence
## 312   Quite a lot of confidence        Quite a lot of confidence
## 313    Not very much confidence         Not very much confidence
## 314                  Don't know                       Don't know
## 315  A great deal of confidence                       Don't know
## 316   Quite a lot of confidence        Quite a lot of confidence
## 317      None at all confidence        Quite a lot of confidence
## 318   Quite a lot of confidence       A great deal of confidence
## 319    Not very much confidence         Not very much confidence
## 320    Not very much confidence        Quite a lot of confidence
## 321   Quite a lot of confidence        Quite a lot of confidence
## 322   Quite a lot of confidence                       Don't know
## 323   Quite a lot of confidence        Quite a lot of confidence
## 324   Quite a lot of confidence        Quite a lot of confidence
## 325   Quite a lot of confidence        Quite a lot of confidence
## 326   Quite a lot of confidence        Quite a lot of confidence
## 327   Quite a lot of confidence        Quite a lot of confidence
## 328   Quite a lot of confidence        Quite a lot of confidence
## 329      None at all confidence         Not very much confidence
## 330   Quite a lot of confidence           None at all confidence
## 331      None at all confidence         Not very much confidence
## 332      None at all confidence         Not very much confidence
## 333    Not very much confidence        Quite a lot of confidence
## 334      None at all confidence         Not very much confidence
## 335   Quite a lot of confidence         Not very much confidence
## 336      None at all confidence         Not very much confidence
## 337   Quite a lot of confidence         Not very much confidence
## 338    Not very much confidence                       Don't know
## 339   Quite a lot of confidence        Quite a lot of confidence
## 340   Quite a lot of confidence         Not very much confidence
## 341    Not very much confidence           None at all confidence
## 342   Quite a lot of confidence         Not very much confidence
## 343   Quite a lot of confidence       A great deal of confidence
## 344    Not very much confidence        Quite a lot of confidence
## 345  A great deal of confidence        Quite a lot of confidence
## 346   Quite a lot of confidence        Quite a lot of confidence
## 347   Quite a lot of confidence       A great deal of confidence
## 348   Quite a lot of confidence                       Don't know
## 349   Quite a lot of confidence       A great deal of confidence
## 350   Quite a lot of confidence         Not very much confidence
## 351   Quite a lot of confidence        Quite a lot of confidence
## 352                  Don't know                       Don't know
## 353   Quite a lot of confidence        Quite a lot of confidence
## 354   Quite a lot of confidence       A great deal of confidence
## 355   Quite a lot of confidence                       Don't know
## 356   Quite a lot of confidence        Quite a lot of confidence
## 357   Quite a lot of confidence        Quite a lot of confidence
## 358   Quite a lot of confidence       A great deal of confidence
## 359    Not very much confidence        Quite a lot of confidence
## 360   Quite a lot of confidence       A great deal of confidence
## 361   Quite a lot of confidence        Quite a lot of confidence
## 362   Quite a lot of confidence       A great deal of confidence
## 363   Quite a lot of confidence        Quite a lot of confidence
## 364   Quite a lot of confidence       A great deal of confidence
## 365   Quite a lot of confidence         Not very much confidence
## 366   Quite a lot of confidence        Quite a lot of confidence
## 367   Quite a lot of confidence        Quite a lot of confidence
## 368   Quite a lot of confidence        Quite a lot of confidence
## 369    Not very much confidence                       Don't know
## 370   Quite a lot of confidence        Quite a lot of confidence
## 371   Quite a lot of confidence        Quite a lot of confidence
## 372   Quite a lot of confidence        Quite a lot of confidence
## 373   Quite a lot of confidence        Quite a lot of confidence
## 374   Quite a lot of confidence       A great deal of confidence
## 375   Quite a lot of confidence        Quite a lot of confidence
## 376   Quite a lot of confidence        Quite a lot of confidence
## 377   Quite a lot of confidence       A great deal of confidence
## 378   Quite a lot of confidence        Quite a lot of confidence
## 379   Quite a lot of confidence       A great deal of confidence
## 380   Quite a lot of confidence        Quite a lot of confidence
## 381   Quite a lot of confidence        Quite a lot of confidence
## 382   Quite a lot of confidence        Quite a lot of confidence
## 383   Quite a lot of confidence       A great deal of confidence
## 384   Quite a lot of confidence        Quite a lot of confidence
## 385   Quite a lot of confidence        Quite a lot of confidence
## 386   Quite a lot of confidence        Quite a lot of confidence
## 387   Quite a lot of confidence        Quite a lot of confidence
## 388   Quite a lot of confidence       A great deal of confidence
## 389   Quite a lot of confidence        Quite a lot of confidence
## 390   Quite a lot of confidence         Not very much confidence
## 391   Quite a lot of confidence        Quite a lot of confidence
## 392   Quite a lot of confidence        Quite a lot of confidence
## 393   Quite a lot of confidence                       Don't know
## 394   Quite a lot of confidence        Quite a lot of confidence
## 395   Quite a lot of confidence        Quite a lot of confidence
## 396   Quite a lot of confidence        Quite a lot of confidence
## 397    Not very much confidence        Quite a lot of confidence
## 398   Quite a lot of confidence        Quite a lot of confidence
## 399   Quite a lot of confidence        Quite a lot of confidence
## 400   Quite a lot of confidence       A great deal of confidence
## 401   Quite a lot of confidence        Quite a lot of confidence
## 402   Quite a lot of confidence       A great deal of confidence
## 403  A great deal of confidence       A great deal of confidence
## 404   Quite a lot of confidence        Quite a lot of confidence
## 405   Quite a lot of confidence        Quite a lot of confidence
## 406  A great deal of confidence       A great deal of confidence
## 407   Quite a lot of confidence       A great deal of confidence
## 408  A great deal of confidence       A great deal of confidence
## 409   Quite a lot of confidence        Quite a lot of confidence
## 410   Quite a lot of confidence       A great deal of confidence
## 411  A great deal of confidence       A great deal of confidence
## 412  A great deal of confidence       A great deal of confidence
## 413  A great deal of confidence       A great deal of confidence
## 414   Quite a lot of confidence        Quite a lot of confidence
## 415   Quite a lot of confidence                       Don't know
## 416   Quite a lot of confidence       A great deal of confidence
## 417   Quite a lot of confidence        Quite a lot of confidence
## 418  A great deal of confidence       A great deal of confidence
## 419   Quite a lot of confidence        Quite a lot of confidence
## 420   Quite a lot of confidence        Quite a lot of confidence
## 421  A great deal of confidence       A great deal of confidence
## 422  A great deal of confidence       A great deal of confidence
## 423   Quite a lot of confidence       A great deal of confidence
## 424  A great deal of confidence       A great deal of confidence
## 425  A great deal of confidence       A great deal of confidence
## 426  A great deal of confidence       A great deal of confidence
## 427  A great deal of confidence       A great deal of confidence
## 428                  Don't know                       Don't know
## 429   Quite a lot of confidence       A great deal of confidence
## 430  A great deal of confidence       A great deal of confidence
## 431  A great deal of confidence       A great deal of confidence
## 432                        <NA>       A great deal of confidence
## 433  A great deal of confidence       A great deal of confidence
## 434  A great deal of confidence       A great deal of confidence
## 435   Quite a lot of confidence       A great deal of confidence
## 436   Quite a lot of confidence        Quite a lot of confidence
## 437  A great deal of confidence       A great deal of confidence
## 438   Quite a lot of confidence        Quite a lot of confidence
## 439  A great deal of confidence       A great deal of confidence
## 440  A great deal of confidence       A great deal of confidence
## 441  A great deal of confidence       A great deal of confidence
## 442                        <NA>                             <NA>
## 443  A great deal of confidence       A great deal of confidence
## 444   Quite a lot of confidence       A great deal of confidence
## 445  A great deal of confidence       A great deal of confidence
## 446  A great deal of confidence       A great deal of confidence
## 447  A great deal of confidence       A great deal of confidence
## 448  A great deal of confidence       A great deal of confidence
## 449  A great deal of confidence       A great deal of confidence
## 450   Quite a lot of confidence        Quite a lot of confidence
## 451  A great deal of confidence       A great deal of confidence
## 452   Quite a lot of confidence       A great deal of confidence
## 453   Quite a lot of confidence        Quite a lot of confidence
## 454                        <NA>       A great deal of confidence
## 455                        <NA>        Quite a lot of confidence
## 456                        <NA>        Quite a lot of confidence
## 457                        <NA>                             <NA>
## 458                        <NA>        Quite a lot of confidence
## 459                        <NA>        Quite a lot of confidence
## 460                        <NA>                       Don't know
## 461                        <NA>       A great deal of confidence
## 462                        <NA>       A great deal of confidence
## 463                        <NA>       A great deal of confidence
## 464                        <NA>           None at all confidence
## 465                        <NA>       A great deal of confidence
## 466                        <NA>         Not very much confidence
## 467                        <NA>       A great deal of confidence
## 468                        <NA>        Quite a lot of confidence
## 469                        <NA>       A great deal of confidence
## 470                        <NA>        Quite a lot of confidence
## 471                        <NA>         Not very much confidence
## 472                        <NA>       A great deal of confidence
## 473                        <NA>       A great deal of confidence
## 474                        <NA>                       Don't know
## 475                        <NA>         Not very much confidence
## 476                        <NA>                       Don't know
## 477                        <NA>       A great deal of confidence
## 478                        <NA>         Not very much confidence
## 479                        <NA>                       Don't know
## 480                        <NA>        Quite a lot of confidence
## 481                        <NA>        Quite a lot of confidence
## 482                        <NA>         Not very much confidence
## 483                        <NA>        Quite a lot of confidence
## 484                        <NA>        Quite a lot of confidence
## 485                        <NA>       A great deal of confidence
## 486                        <NA>       A great deal of confidence
## 487                        <NA>                       Don't know
## 488                        <NA>        Quite a lot of confidence
## 489                        <NA>        Quite a lot of confidence
## 490                        <NA>       A great deal of confidence
## 491                        <NA>        Quite a lot of confidence
## 492                        <NA>       A great deal of confidence
## 493                        <NA>         Not very much confidence
## 494                        <NA>       A great deal of confidence
## 495                        <NA>       A great deal of confidence
## 496                        <NA>        Quite a lot of confidence
##      Confidence.in..Universities   Confidence.in..Hospitals
## 1      Quite a lot of confidence A great deal of confidence
## 2     A great deal of confidence A great deal of confidence
## 3       Not very much confidence   Not very much confidence
## 4     A great deal of confidence   Not very much confidence
## 5                           <NA>                       <NA>
## 6      Quite a lot of confidence  Quite a lot of confidence
## 7     A great deal of confidence  Quite a lot of confidence
## 8         None at all confidence  Quite a lot of confidence
## 9       Not very much confidence  Quite a lot of confidence
## 10     Quite a lot of confidence  Quite a lot of confidence
## 11      Not very much confidence  Quite a lot of confidence
## 12    A great deal of confidence  Quite a lot of confidence
## 13     Quite a lot of confidence  Quite a lot of confidence
## 14    A great deal of confidence  Quite a lot of confidence
## 15     Quite a lot of confidence A great deal of confidence
## 16                    Don't know  Quite a lot of confidence
## 17     Quite a lot of confidence  Quite a lot of confidence
## 18    A great deal of confidence  Quite a lot of confidence
## 19    A great deal of confidence  Quite a lot of confidence
## 20    A great deal of confidence  Quite a lot of confidence
## 21     Quite a lot of confidence A great deal of confidence
## 22      Not very much confidence     None at all confidence
## 23    A great deal of confidence  Quite a lot of confidence
## 24     Quite a lot of confidence A great deal of confidence
## 25     Quite a lot of confidence  Quite a lot of confidence
## 26                    Don't know  Quite a lot of confidence
## 27     Quite a lot of confidence  Quite a lot of confidence
## 28     Quite a lot of confidence  Quite a lot of confidence
## 29     Quite a lot of confidence  Quite a lot of confidence
## 30     Quite a lot of confidence  Quite a lot of confidence
## 31      Not very much confidence                       <NA>
## 32    A great deal of confidence A great deal of confidence
## 33     Quite a lot of confidence   Not very much confidence
## 34     Quite a lot of confidence  Quite a lot of confidence
## 35      Not very much confidence   Not very much confidence
## 36      Not very much confidence     None at all confidence
## 37     Quite a lot of confidence  Quite a lot of confidence
## 38     Quite a lot of confidence  Quite a lot of confidence
## 39     Quite a lot of confidence   Not very much confidence
## 40     Quite a lot of confidence  Quite a lot of confidence
## 41     Quite a lot of confidence  Quite a lot of confidence
## 42     Quite a lot of confidence  Quite a lot of confidence
## 43     Quite a lot of confidence  Quite a lot of confidence
## 44      Not very much confidence  Quite a lot of confidence
## 45     Quite a lot of confidence  Quite a lot of confidence
## 46      Not very much confidence   Not very much confidence
## 47     Quite a lot of confidence   Not very much confidence
## 48     Quite a lot of confidence  Quite a lot of confidence
## 49     Quite a lot of confidence  Quite a lot of confidence
## 50     Quite a lot of confidence A great deal of confidence
## 51     Quite a lot of confidence  Quite a lot of confidence
## 52                    Don't know   Not very much confidence
## 53     Quite a lot of confidence  Quite a lot of confidence
## 54     Quite a lot of confidence   Not very much confidence
## 55     Quite a lot of confidence A great deal of confidence
## 56     Quite a lot of confidence  Quite a lot of confidence
## 57                    Don't know  Quite a lot of confidence
## 58     Quite a lot of confidence  Quite a lot of confidence
## 59                    Don't know  Quite a lot of confidence
## 60     Quite a lot of confidence  Quite a lot of confidence
## 61     Quite a lot of confidence  Quite a lot of confidence
## 62      Not very much confidence A great deal of confidence
## 63     Quite a lot of confidence   Not very much confidence
## 64     Quite a lot of confidence   Not very much confidence
## 65     Quite a lot of confidence   Not very much confidence
## 66                          <NA>   Not very much confidence
## 67     Quite a lot of confidence   Not very much confidence
## 68      Not very much confidence A great deal of confidence
## 69     Quite a lot of confidence   Not very much confidence
## 70     Quite a lot of confidence A great deal of confidence
## 71     Quite a lot of confidence   Not very much confidence
## 72     Quite a lot of confidence   Not very much confidence
## 73     Quite a lot of confidence   Not very much confidence
## 74     Quite a lot of confidence   Not very much confidence
## 75     Quite a lot of confidence   Not very much confidence
## 76     Quite a lot of confidence     None at all confidence
## 77     Quite a lot of confidence     None at all confidence
## 78     Quite a lot of confidence     None at all confidence
## 79     Quite a lot of confidence A great deal of confidence
## 80     Quite a lot of confidence     None at all confidence
## 81     Quite a lot of confidence     None at all confidence
## 82     Quite a lot of confidence     None at all confidence
## 83     Quite a lot of confidence   Not very much confidence
## 84     Quite a lot of confidence   Not very much confidence
## 85     Quite a lot of confidence  Quite a lot of confidence
## 86     Quite a lot of confidence  Quite a lot of confidence
## 87     Quite a lot of confidence  Quite a lot of confidence
## 88    A great deal of confidence  Quite a lot of confidence
## 89     Quite a lot of confidence  Quite a lot of confidence
## 90     Quite a lot of confidence A great deal of confidence
## 91    A great deal of confidence  Quite a lot of confidence
## 92     Quite a lot of confidence  Quite a lot of confidence
## 93    A great deal of confidence  Quite a lot of confidence
## 94     Quite a lot of confidence  Quite a lot of confidence
## 95     Quite a lot of confidence   Not very much confidence
## 96     Quite a lot of confidence  Quite a lot of confidence
## 97     Quite a lot of confidence   Not very much confidence
## 98     Quite a lot of confidence   Not very much confidence
## 99     Quite a lot of confidence   Not very much confidence
## 100   A great deal of confidence  Quite a lot of confidence
## 101                   Don't know A great deal of confidence
## 102                   Don't know A great deal of confidence
## 103   A great deal of confidence A great deal of confidence
## 104   A great deal of confidence A great deal of confidence
## 105   A great deal of confidence  Quite a lot of confidence
## 106   A great deal of confidence A great deal of confidence
## 107   A great deal of confidence A great deal of confidence
## 108   A great deal of confidence A great deal of confidence
## 109   A great deal of confidence A great deal of confidence
## 110                   Don't know A great deal of confidence
## 111                         <NA>                       <NA>
## 112   A great deal of confidence A great deal of confidence
## 113   A great deal of confidence A great deal of confidence
## 114   A great deal of confidence A great deal of confidence
## 115   A great deal of confidence A great deal of confidence
## 116                   Don't know A great deal of confidence
## 117   A great deal of confidence A great deal of confidence
## 118                   Don't know A great deal of confidence
## 119    Quite a lot of confidence  Quite a lot of confidence
## 120   A great deal of confidence A great deal of confidence
## 121    Quite a lot of confidence  Quite a lot of confidence
## 122   A great deal of confidence  Quite a lot of confidence
## 123                   Don't know A great deal of confidence
## 124   A great deal of confidence A great deal of confidence
## 125   A great deal of confidence  Quite a lot of confidence
## 126    Quite a lot of confidence A great deal of confidence
## 127    Quite a lot of confidence A great deal of confidence
## 128     Not very much confidence  Quite a lot of confidence
## 129   A great deal of confidence A great deal of confidence
## 130    Quite a lot of confidence A great deal of confidence
## 131    Quite a lot of confidence A great deal of confidence
## 132                   Don't know  Quite a lot of confidence
## 133    Quite a lot of confidence   Not very much confidence
## 134    Quite a lot of confidence   Not very much confidence
## 135     Not very much confidence  Quite a lot of confidence
## 136       None at all confidence     None at all confidence
## 137    Quite a lot of confidence   Not very much confidence
## 138    Quite a lot of confidence  Quite a lot of confidence
## 139   A great deal of confidence A great deal of confidence
## 140    Quite a lot of confidence  Quite a lot of confidence
## 141   A great deal of confidence A great deal of confidence
## 142   A great deal of confidence  Quite a lot of confidence
## 143   A great deal of confidence A great deal of confidence
## 144   A great deal of confidence A great deal of confidence
## 145   A great deal of confidence  Quite a lot of confidence
## 146     Not very much confidence   Not very much confidence
## 147    Quite a lot of confidence   Not very much confidence
## 148     Not very much confidence   Not very much confidence
## 149   A great deal of confidence A great deal of confidence
## 150    Quite a lot of confidence  Quite a lot of confidence
## 151                   Don't know A great deal of confidence
## 152    Quite a lot of confidence A great deal of confidence
## 153                   Don't know  Quite a lot of confidence
## 154   A great deal of confidence A great deal of confidence
## 155   A great deal of confidence  Quite a lot of confidence
## 156                   Don't know A great deal of confidence
## 157   A great deal of confidence A great deal of confidence
## 158   A great deal of confidence A great deal of confidence
## 159   A great deal of confidence A great deal of confidence
## 160   A great deal of confidence A great deal of confidence
## 161   A great deal of confidence A great deal of confidence
## 162   A great deal of confidence A great deal of confidence
## 163    Quite a lot of confidence  Quite a lot of confidence
## 164                   Don't know A great deal of confidence
## 165   A great deal of confidence A great deal of confidence
## 166   A great deal of confidence A great deal of confidence
## 167   A great deal of confidence A great deal of confidence
## 168   A great deal of confidence A great deal of confidence
## 169    Quite a lot of confidence  Quite a lot of confidence
## 170    Quite a lot of confidence A great deal of confidence
## 171                   Don't know A great deal of confidence
## 172                   Don't know A great deal of confidence
## 173                   Don't know  Quite a lot of confidence
## 174   A great deal of confidence A great deal of confidence
## 175   A great deal of confidence A great deal of confidence
## 176       None at all confidence A great deal of confidence
## 177    Quite a lot of confidence A great deal of confidence
## 178   A great deal of confidence A great deal of confidence
## 179    Quite a lot of confidence A great deal of confidence
## 180   A great deal of confidence A great deal of confidence
## 181   A great deal of confidence A great deal of confidence
## 182   A great deal of confidence  Quite a lot of confidence
## 183   A great deal of confidence  Quite a lot of confidence
## 184   A great deal of confidence A great deal of confidence
## 185   A great deal of confidence A great deal of confidence
## 186   A great deal of confidence A great deal of confidence
## 187   A great deal of confidence A great deal of confidence
## 188    Quite a lot of confidence A great deal of confidence
## 189   A great deal of confidence  Quite a lot of confidence
## 190   A great deal of confidence A great deal of confidence
## 191   A great deal of confidence A great deal of confidence
## 192   A great deal of confidence A great deal of confidence
## 193   A great deal of confidence A great deal of confidence
## 194   A great deal of confidence  Quite a lot of confidence
## 195    Quite a lot of confidence  Quite a lot of confidence
## 196   A great deal of confidence A great deal of confidence
## 197   A great deal of confidence  Quite a lot of confidence
## 198   A great deal of confidence  Quite a lot of confidence
## 199   A great deal of confidence A great deal of confidence
## 200   A great deal of confidence A great deal of confidence
## 201   A great deal of confidence   Not very much confidence
## 202    Quite a lot of confidence  Quite a lot of confidence
## 203    Quite a lot of confidence     None at all confidence
## 204     Not very much confidence   Not very much confidence
## 205    Quite a lot of confidence   Not very much confidence
## 206   A great deal of confidence  Quite a lot of confidence
## 207    Quite a lot of confidence A great deal of confidence
## 208   A great deal of confidence   Not very much confidence
## 209    Quite a lot of confidence   Not very much confidence
## 210   A great deal of confidence   Not very much confidence
## 211    Quite a lot of confidence  Quite a lot of confidence
## 212    Quite a lot of confidence  Quite a lot of confidence
## 213    Quite a lot of confidence  Quite a lot of confidence
## 214    Quite a lot of confidence  Quite a lot of confidence
## 215    Quite a lot of confidence  Quite a lot of confidence
## 216     Not very much confidence  Quite a lot of confidence
## 217    Quite a lot of confidence  Quite a lot of confidence
## 218    Quite a lot of confidence A great deal of confidence
## 219   A great deal of confidence  Quite a lot of confidence
## 220   A great deal of confidence   Not very much confidence
## 221    Quite a lot of confidence   Not very much confidence
## 222   A great deal of confidence   Not very much confidence
## 223   A great deal of confidence   Not very much confidence
## 224   A great deal of confidence  Quite a lot of confidence
## 225    Quite a lot of confidence   Not very much confidence
## 226   A great deal of confidence  Quite a lot of confidence
## 227   A great deal of confidence   Not very much confidence
## 228    Quite a lot of confidence   Not very much confidence
## 229    Quite a lot of confidence  Quite a lot of confidence
## 230   A great deal of confidence A great deal of confidence
## 231       None at all confidence   Not very much confidence
## 232    Quite a lot of confidence  Quite a lot of confidence
## 233    Quite a lot of confidence  Quite a lot of confidence
## 234    Quite a lot of confidence   Not very much confidence
## 235    Quite a lot of confidence  Quite a lot of confidence
## 236     Not very much confidence     None at all confidence
## 237    Quite a lot of confidence A great deal of confidence
## 238    Quite a lot of confidence   Not very much confidence
## 239    Quite a lot of confidence  Quite a lot of confidence
## 240    Quite a lot of confidence  Quite a lot of confidence
## 241    Quite a lot of confidence  Quite a lot of confidence
## 242    Quite a lot of confidence  Quite a lot of confidence
## 243    Quite a lot of confidence  Quite a lot of confidence
## 244    Quite a lot of confidence  Quite a lot of confidence
## 245   A great deal of confidence   Not very much confidence
## 246    Quite a lot of confidence A great deal of confidence
## 247     Not very much confidence  Quite a lot of confidence
## 248    Quite a lot of confidence   Not very much confidence
## 249    Quite a lot of confidence   Not very much confidence
## 250    Quite a lot of confidence A great deal of confidence
## 251    Quite a lot of confidence  Quite a lot of confidence
## 252    Quite a lot of confidence  Quite a lot of confidence
## 253                   Don't know  Quite a lot of confidence
## 254    Quite a lot of confidence  Quite a lot of confidence
## 255    Quite a lot of confidence  Quite a lot of confidence
## 256    Quite a lot of confidence  Quite a lot of confidence
## 257    Quite a lot of confidence  Quite a lot of confidence
## 258    Quite a lot of confidence  Quite a lot of confidence
## 259    Quite a lot of confidence  Quite a lot of confidence
## 260    Quite a lot of confidence  Quite a lot of confidence
## 261    Quite a lot of confidence  Quite a lot of confidence
## 262    Quite a lot of confidence  Quite a lot of confidence
## 263    Quite a lot of confidence  Quite a lot of confidence
## 264    Quite a lot of confidence A great deal of confidence
## 265    Quite a lot of confidence  Quite a lot of confidence
## 266    Quite a lot of confidence  Quite a lot of confidence
## 267    Quite a lot of confidence  Quite a lot of confidence
## 268    Quite a lot of confidence  Quite a lot of confidence
## 269    Quite a lot of confidence  Quite a lot of confidence
## 270   A great deal of confidence A great deal of confidence
## 271    Quite a lot of confidence  Quite a lot of confidence
## 272    Quite a lot of confidence  Quite a lot of confidence
## 273    Quite a lot of confidence  Quite a lot of confidence
## 274    Quite a lot of confidence   Not very much confidence
## 275    Quite a lot of confidence  Quite a lot of confidence
## 276     Not very much confidence  Quite a lot of confidence
## 277    Quite a lot of confidence  Quite a lot of confidence
## 278    Quite a lot of confidence  Quite a lot of confidence
## 279    Quite a lot of confidence  Quite a lot of confidence
## 280    Quite a lot of confidence  Quite a lot of confidence
## 281   A great deal of confidence A great deal of confidence
## 282    Quite a lot of confidence  Quite a lot of confidence
## 283    Quite a lot of confidence  Quite a lot of confidence
## 284     Not very much confidence  Quite a lot of confidence
## 285    Quite a lot of confidence  Quite a lot of confidence
## 286    Quite a lot of confidence  Quite a lot of confidence
## 287   A great deal of confidence A great deal of confidence
## 288    Quite a lot of confidence  Quite a lot of confidence
## 289                   Don't know  Quite a lot of confidence
## 290    Quite a lot of confidence  Quite a lot of confidence
## 291    Quite a lot of confidence  Quite a lot of confidence
## 292                   Don't know  Quite a lot of confidence
## 293    Quite a lot of confidence  Quite a lot of confidence
## 294    Quite a lot of confidence  Quite a lot of confidence
## 295    Quite a lot of confidence  Quite a lot of confidence
## 296    Quite a lot of confidence  Quite a lot of confidence
## 297    Quite a lot of confidence  Quite a lot of confidence
## 298    Quite a lot of confidence  Quite a lot of confidence
## 299    Quite a lot of confidence  Quite a lot of confidence
## 300    Quite a lot of confidence  Quite a lot of confidence
## 302    Quite a lot of confidence  Quite a lot of confidence
## 303   A great deal of confidence  Quite a lot of confidence
## 304    Quite a lot of confidence  Quite a lot of confidence
## 305    Quite a lot of confidence A great deal of confidence
## 306     Not very much confidence A great deal of confidence
## 307    Quite a lot of confidence  Quite a lot of confidence
## 308    Quite a lot of confidence  Quite a lot of confidence
## 309     Not very much confidence A great deal of confidence
## 310    Quite a lot of confidence A great deal of confidence
## 311   A great deal of confidence A great deal of confidence
## 312    Quite a lot of confidence  Quite a lot of confidence
## 313     Not very much confidence   Not very much confidence
## 314                   Don't know                 Don't know
## 315                   Don't know A great deal of confidence
## 316    Quite a lot of confidence  Quite a lot of confidence
## 317    Quite a lot of confidence  Quite a lot of confidence
## 318   A great deal of confidence A great deal of confidence
## 319     Not very much confidence   Not very much confidence
## 320    Quite a lot of confidence  Quite a lot of confidence
## 321     Not very much confidence   Not very much confidence
## 322                   Don't know  Quite a lot of confidence
## 323                   Don't know  Quite a lot of confidence
## 324    Quite a lot of confidence  Quite a lot of confidence
## 325    Quite a lot of confidence  Quite a lot of confidence
## 326    Quite a lot of confidence  Quite a lot of confidence
## 327    Quite a lot of confidence  Quite a lot of confidence
## 328    Quite a lot of confidence  Quite a lot of confidence
## 329       None at all confidence  Quite a lot of confidence
## 330     Not very much confidence  Quite a lot of confidence
## 331    Quite a lot of confidence A great deal of confidence
## 332    Quite a lot of confidence A great deal of confidence
## 333   A great deal of confidence                 Don't know
## 334    Quite a lot of confidence A great deal of confidence
## 335   A great deal of confidence   Not very much confidence
## 336    Quite a lot of confidence   Not very much confidence
## 337    Quite a lot of confidence   Not very much confidence
## 338     Not very much confidence                 Don't know
## 339    Quite a lot of confidence   Not very much confidence
## 340    Quite a lot of confidence  Quite a lot of confidence
## 341       None at all confidence     None at all confidence
## 342    Quite a lot of confidence  Quite a lot of confidence
## 343    Quite a lot of confidence A great deal of confidence
## 344    Quite a lot of confidence  Quite a lot of confidence
## 345   A great deal of confidence A great deal of confidence
## 346   A great deal of confidence   Not very much confidence
## 347   A great deal of confidence A great deal of confidence
## 348                   Don't know A great deal of confidence
## 349   A great deal of confidence A great deal of confidence
## 350     Not very much confidence   Not very much confidence
## 351    Quite a lot of confidence A great deal of confidence
## 352                   Don't know                 Don't know
## 353    Quite a lot of confidence  Quite a lot of confidence
## 354   A great deal of confidence A great deal of confidence
## 355    Quite a lot of confidence  Quite a lot of confidence
## 356    Quite a lot of confidence A great deal of confidence
## 357                   Don't know  Quite a lot of confidence
## 358   A great deal of confidence A great deal of confidence
## 359    Quite a lot of confidence   Not very much confidence
## 360   A great deal of confidence A great deal of confidence
## 361    Quite a lot of confidence A great deal of confidence
## 362   A great deal of confidence A great deal of confidence
## 363    Quite a lot of confidence A great deal of confidence
## 364   A great deal of confidence A great deal of confidence
## 365                   Don't know A great deal of confidence
## 366    Quite a lot of confidence  Quite a lot of confidence
## 367   A great deal of confidence A great deal of confidence
## 368    Quite a lot of confidence  Quite a lot of confidence
## 369                   Don't know  Quite a lot of confidence
## 370    Quite a lot of confidence A great deal of confidence
## 371    Quite a lot of confidence A great deal of confidence
## 372    Quite a lot of confidence  Quite a lot of confidence
## 373    Quite a lot of confidence A great deal of confidence
## 374   A great deal of confidence  Quite a lot of confidence
## 375    Quite a lot of confidence  Quite a lot of confidence
## 376    Quite a lot of confidence A great deal of confidence
## 377   A great deal of confidence  Quite a lot of confidence
## 378                   Don't know  Quite a lot of confidence
## 379   A great deal of confidence A great deal of confidence
## 380    Quite a lot of confidence A great deal of confidence
## 381    Quite a lot of confidence A great deal of confidence
## 382    Quite a lot of confidence A great deal of confidence
## 383   A great deal of confidence A great deal of confidence
## 384    Quite a lot of confidence A great deal of confidence
## 385    Quite a lot of confidence  Quite a lot of confidence
## 386   A great deal of confidence A great deal of confidence
## 387    Quite a lot of confidence  Quite a lot of confidence
## 388   A great deal of confidence A great deal of confidence
## 389   A great deal of confidence A great deal of confidence
## 390    Quite a lot of confidence  Quite a lot of confidence
## 391    Quite a lot of confidence  Quite a lot of confidence
## 392    Quite a lot of confidence  Quite a lot of confidence
## 393                   Don't know  Quite a lot of confidence
## 394   A great deal of confidence A great deal of confidence
## 395    Quite a lot of confidence A great deal of confidence
## 396    Quite a lot of confidence A great deal of confidence
## 397    Quite a lot of confidence A great deal of confidence
## 398    Quite a lot of confidence A great deal of confidence
## 399    Quite a lot of confidence  Quite a lot of confidence
## 400   A great deal of confidence A great deal of confidence
## 401    Quite a lot of confidence A great deal of confidence
## 402   A great deal of confidence A great deal of confidence
## 403   A great deal of confidence A great deal of confidence
## 404    Quite a lot of confidence  Quite a lot of confidence
## 405    Quite a lot of confidence  Quite a lot of confidence
## 406   A great deal of confidence A great deal of confidence
## 407   A great deal of confidence A great deal of confidence
## 408   A great deal of confidence A great deal of confidence
## 409    Quite a lot of confidence  Quite a lot of confidence
## 410   A great deal of confidence A great deal of confidence
## 411   A great deal of confidence A great deal of confidence
## 412   A great deal of confidence A great deal of confidence
## 413   A great deal of confidence A great deal of confidence
## 414    Quite a lot of confidence A great deal of confidence
## 415                   Don't know  Quite a lot of confidence
## 416   A great deal of confidence A great deal of confidence
## 417                   Don't know  Quite a lot of confidence
## 418   A great deal of confidence A great deal of confidence
## 419    Quite a lot of confidence  Quite a lot of confidence
## 420    Quite a lot of confidence A great deal of confidence
## 421   A great deal of confidence A great deal of confidence
## 422   A great deal of confidence A great deal of confidence
## 423   A great deal of confidence A great deal of confidence
## 424   A great deal of confidence A great deal of confidence
## 425   A great deal of confidence A great deal of confidence
## 426   A great deal of confidence A great deal of confidence
## 427   A great deal of confidence A great deal of confidence
## 428                   Don't know                 Don't know
## 429   A great deal of confidence A great deal of confidence
## 430   A great deal of confidence A great deal of confidence
## 431   A great deal of confidence A great deal of confidence
## 432   A great deal of confidence A great deal of confidence
## 433   A great deal of confidence A great deal of confidence
## 434   A great deal of confidence A great deal of confidence
## 435   A great deal of confidence A great deal of confidence
## 436   A great deal of confidence A great deal of confidence
## 437   A great deal of confidence A great deal of confidence
## 438    Quite a lot of confidence  Quite a lot of confidence
## 439   A great deal of confidence A great deal of confidence
## 440   A great deal of confidence A great deal of confidence
## 441   A great deal of confidence A great deal of confidence
## 442                         <NA>                       <NA>
## 443   A great deal of confidence A great deal of confidence
## 444   A great deal of confidence A great deal of confidence
## 445   A great deal of confidence A great deal of confidence
## 446   A great deal of confidence A great deal of confidence
## 447   A great deal of confidence A great deal of confidence
## 448   A great deal of confidence A great deal of confidence
## 449   A great deal of confidence A great deal of confidence
## 450    Quite a lot of confidence  Quite a lot of confidence
## 451                         <NA> A great deal of confidence
## 452   A great deal of confidence A great deal of confidence
## 453    Quite a lot of confidence  Quite a lot of confidence
## 454   A great deal of confidence A great deal of confidence
## 455    Quite a lot of confidence A great deal of confidence
## 456    Quite a lot of confidence  Quite a lot of confidence
## 457    Quite a lot of confidence  Quite a lot of confidence
## 458    Quite a lot of confidence  Quite a lot of confidence
## 459    Quite a lot of confidence  Quite a lot of confidence
## 460                   Don't know                       <NA>
## 461    Quite a lot of confidence   Not very much confidence
## 462    Quite a lot of confidence A great deal of confidence
## 463   A great deal of confidence A great deal of confidence
## 464    Quite a lot of confidence  Quite a lot of confidence
## 465   A great deal of confidence   Not very much confidence
## 466    Quite a lot of confidence  Quite a lot of confidence
## 467   A great deal of confidence A great deal of confidence
## 468    Quite a lot of confidence  Quite a lot of confidence
## 469   A great deal of confidence  Quite a lot of confidence
## 470    Quite a lot of confidence  Quite a lot of confidence
## 471    Quite a lot of confidence   Not very much confidence
## 472   A great deal of confidence  Quite a lot of confidence
## 473   A great deal of confidence  Quite a lot of confidence
## 474                         <NA>   Not very much confidence
## 475     Not very much confidence  Quite a lot of confidence
## 476                   Don't know  Quite a lot of confidence
## 477     Not very much confidence  Quite a lot of confidence
## 478     Not very much confidence   Not very much confidence
## 479                   Don't know                 Don't know
## 480    Quite a lot of confidence A great deal of confidence
## 481    Quite a lot of confidence  Quite a lot of confidence
## 482     Not very much confidence   Not very much confidence
## 483    Quite a lot of confidence  Quite a lot of confidence
## 484    Quite a lot of confidence  Quite a lot of confidence
## 485   A great deal of confidence A great deal of confidence
## 486   A great deal of confidence  Quite a lot of confidence
## 487                   Don't know                 Don't know
## 488                   Don't know  Quite a lot of confidence
## 489    Quite a lot of confidence  Quite a lot of confidence
## 490   A great deal of confidence   Not very much confidence
## 491    Quite a lot of confidence  Quite a lot of confidence
## 492   A great deal of confidence A great deal of confidence
## 493     Not very much confidence   Not very much confidence
## 494   A great deal of confidence  Quite a lot of confidence
## 495    Quite a lot of confidence   Not very much confidence
## 496    Quite a lot of confidence  Quite a lot of confidence
##            Confidence.in..Media Confidence.in..Anti.corruption.Commission
## 1     Quite a lot of confidence                 Quite a lot of confidence
## 2    A great deal of confidence                                Don't know
## 3     Quite a lot of confidence                 Quite a lot of confidence
## 4    A great deal of confidence                A great deal of confidence
## 5                          <NA>                                      <NA>
## 6     Quite a lot of confidence                 Quite a lot of confidence
## 7    A great deal of confidence                 Quite a lot of confidence
## 8     Quite a lot of confidence                 Quite a lot of confidence
## 9     Quite a lot of confidence                 Quite a lot of confidence
## 10   A great deal of confidence                A great deal of confidence
## 11    Quite a lot of confidence                    None at all confidence
## 12    Quite a lot of confidence                A great deal of confidence
## 13   A great deal of confidence                A great deal of confidence
## 14    Quite a lot of confidence                 Quite a lot of confidence
## 15   A great deal of confidence                 Quite a lot of confidence
## 16    Quite a lot of confidence                  Not very much confidence
## 17    Quite a lot of confidence                 Quite a lot of confidence
## 18    Quite a lot of confidence                A great deal of confidence
## 19   A great deal of confidence                 Quite a lot of confidence
## 20   A great deal of confidence                A great deal of confidence
## 21                         <NA>                A great deal of confidence
## 22     Not very much confidence                    None at all confidence
## 23   A great deal of confidence                A great deal of confidence
## 24    Quite a lot of confidence                 Quite a lot of confidence
## 25    Quite a lot of confidence                  Not very much confidence
## 26    Quite a lot of confidence                                Don't know
## 27    Quite a lot of confidence                  Not very much confidence
## 28                   Don't know                                Don't know
## 29     Not very much confidence                  Not very much confidence
## 30   A great deal of confidence                A great deal of confidence
## 31    Quite a lot of confidence                 Quite a lot of confidence
## 32                   Don't know                                Don't know
## 33     Not very much confidence                 Quite a lot of confidence
## 34   A great deal of confidence                 Quite a lot of confidence
## 35    Quite a lot of confidence                 Quite a lot of confidence
## 36    Quite a lot of confidence                  Not very much confidence
## 37   A great deal of confidence                A great deal of confidence
## 38    Quite a lot of confidence                A great deal of confidence
## 39     Not very much confidence                A great deal of confidence
## 40   A great deal of confidence                 Quite a lot of confidence
## 41    Quite a lot of confidence                 Quite a lot of confidence
## 42   A great deal of confidence                 Quite a lot of confidence
## 43   A great deal of confidence                  Not very much confidence
## 44     Not very much confidence                    None at all confidence
## 45    Quite a lot of confidence                 Quite a lot of confidence
## 46    Quite a lot of confidence                A great deal of confidence
## 47    Quite a lot of confidence                 Quite a lot of confidence
## 48    Quite a lot of confidence                 Quite a lot of confidence
## 49    Quite a lot of confidence                  Not very much confidence
## 50    Quite a lot of confidence                  Not very much confidence
## 51    Quite a lot of confidence                 Quite a lot of confidence
## 52    Quite a lot of confidence                  Not very much confidence
## 53    Quite a lot of confidence                  Not very much confidence
## 54     Not very much confidence                 Quite a lot of confidence
## 55   A great deal of confidence                 Quite a lot of confidence
## 56   A great deal of confidence                                Don't know
## 57    Quite a lot of confidence                                Don't know
## 58    Quite a lot of confidence                 Quite a lot of confidence
## 59    Quite a lot of confidence                                Don't know
## 60    Quite a lot of confidence                  Not very much confidence
## 61    Quite a lot of confidence                 Quite a lot of confidence
## 62   A great deal of confidence                 Quite a lot of confidence
## 63   A great deal of confidence                 Quite a lot of confidence
## 64   A great deal of confidence                 Quite a lot of confidence
## 65   A great deal of confidence                 Quite a lot of confidence
## 66   A great deal of confidence                 Quite a lot of confidence
## 67    Quite a lot of confidence                 Quite a lot of confidence
## 68   A great deal of confidence                 Quite a lot of confidence
## 69    Quite a lot of confidence                  Not very much confidence
## 70                         <NA>                 Quite a lot of confidence
## 71   A great deal of confidence                  Not very much confidence
## 72    Quite a lot of confidence                  Not very much confidence
## 73   A great deal of confidence                 Quite a lot of confidence
## 74   A great deal of confidence                 Quite a lot of confidence
## 75   A great deal of confidence                 Quite a lot of confidence
## 76   A great deal of confidence                 Quite a lot of confidence
## 77   A great deal of confidence                 Quite a lot of confidence
## 78   A great deal of confidence                 Quite a lot of confidence
## 79                         <NA>                 Quite a lot of confidence
## 80   A great deal of confidence                 Quite a lot of confidence
## 81   A great deal of confidence                 Quite a lot of confidence
## 82   A great deal of confidence                 Quite a lot of confidence
## 83   A great deal of confidence                 Quite a lot of confidence
## 84   A great deal of confidence                 Quite a lot of confidence
## 85    Quite a lot of confidence                  Not very much confidence
## 86    Quite a lot of confidence                                Don't know
## 87    Quite a lot of confidence                 Quite a lot of confidence
## 88   A great deal of confidence                A great deal of confidence
## 89    Quite a lot of confidence                 Quite a lot of confidence
## 90   A great deal of confidence                A great deal of confidence
## 91   A great deal of confidence                A great deal of confidence
## 92   A great deal of confidence                A great deal of confidence
## 93   A great deal of confidence                A great deal of confidence
## 94   A great deal of confidence                A great deal of confidence
## 95   A great deal of confidence                A great deal of confidence
## 96    Quite a lot of confidence                 Quite a lot of confidence
## 97   A great deal of confidence                 Quite a lot of confidence
## 98   A great deal of confidence                 Quite a lot of confidence
## 99    Quite a lot of confidence                  Not very much confidence
## 100  A great deal of confidence                 Quite a lot of confidence
## 101   Quite a lot of confidence                                Don't know
## 102   Quite a lot of confidence                                Don't know
## 103   Quite a lot of confidence                A great deal of confidence
## 104  A great deal of confidence                 Quite a lot of confidence
## 105   Quite a lot of confidence                A great deal of confidence
## 106   Quite a lot of confidence                A great deal of confidence
## 107  A great deal of confidence                A great deal of confidence
## 108  A great deal of confidence                A great deal of confidence
## 109   Quite a lot of confidence                A great deal of confidence
## 110  A great deal of confidence                A great deal of confidence
## 111                        <NA>                                      <NA>
## 112  A great deal of confidence                A great deal of confidence
## 113  A great deal of confidence                A great deal of confidence
## 114  A great deal of confidence                A great deal of confidence
## 115  A great deal of confidence                A great deal of confidence
## 116                  Don't know                                Don't know
## 117  A great deal of confidence                A great deal of confidence
## 118                  Don't know                                Don't know
## 119    Not very much confidence                A great deal of confidence
## 120  A great deal of confidence                A great deal of confidence
## 121   Quite a lot of confidence                A great deal of confidence
## 122  A great deal of confidence                A great deal of confidence
## 123   Quite a lot of confidence                A great deal of confidence
## 124   Quite a lot of confidence                A great deal of confidence
## 125   Quite a lot of confidence                A great deal of confidence
## 126  A great deal of confidence                A great deal of confidence
## 127  A great deal of confidence                A great deal of confidence
## 128   Quite a lot of confidence                A great deal of confidence
## 129   Quite a lot of confidence                A great deal of confidence
## 130   Quite a lot of confidence                A great deal of confidence
## 131   Quite a lot of confidence                A great deal of confidence
## 132   Quite a lot of confidence                                Don't know
## 133   Quite a lot of confidence                A great deal of confidence
## 134   Quite a lot of confidence                  Not very much confidence
## 135  A great deal of confidence                  Not very much confidence
## 136      None at all confidence                    None at all confidence
## 137   Quite a lot of confidence                A great deal of confidence
## 138   Quite a lot of confidence                A great deal of confidence
## 139  A great deal of confidence                A great deal of confidence
## 140   Quite a lot of confidence                 Quite a lot of confidence
## 141  A great deal of confidence                A great deal of confidence
## 142   Quite a lot of confidence                A great deal of confidence
## 143  A great deal of confidence                A great deal of confidence
## 144  A great deal of confidence                A great deal of confidence
## 145   Quite a lot of confidence                A great deal of confidence
## 146    Not very much confidence                A great deal of confidence
## 147      None at all confidence                  Not very much confidence
## 148    Not very much confidence                A great deal of confidence
## 149  A great deal of confidence                A great deal of confidence
## 150   Quite a lot of confidence                 Quite a lot of confidence
## 151  A great deal of confidence                                Don't know
## 152  A great deal of confidence                 Quite a lot of confidence
## 153  A great deal of confidence                                Don't know
## 154  A great deal of confidence                A great deal of confidence
## 155  A great deal of confidence                                Don't know
## 156  A great deal of confidence                                Don't know
## 157   Quite a lot of confidence                A great deal of confidence
## 158  A great deal of confidence                A great deal of confidence
## 159  A great deal of confidence                 Quite a lot of confidence
## 160  A great deal of confidence                 Quite a lot of confidence
## 161  A great deal of confidence                A great deal of confidence
## 162  A great deal of confidence                                Don't know
## 163   Quite a lot of confidence                                Don't know
## 164                  Don't know                                Don't know
## 165  A great deal of confidence                A great deal of confidence
## 166  A great deal of confidence                A great deal of confidence
## 167  A great deal of confidence                A great deal of confidence
## 168  A great deal of confidence                                Don't know
## 169   Quite a lot of confidence                                Don't know
## 170                  Don't know                                Don't know
## 171  A great deal of confidence                                Don't know
## 172  A great deal of confidence                                Don't know
## 173  A great deal of confidence                                Don't know
## 174  A great deal of confidence                A great deal of confidence
## 175  A great deal of confidence                                Don't know
## 176  A great deal of confidence                A great deal of confidence
## 177   Quite a lot of confidence                                Don't know
## 178   Quite a lot of confidence                                Don't know
## 179  A great deal of confidence                                Don't know
## 180   Quite a lot of confidence                                Don't know
## 181  A great deal of confidence                 Quite a lot of confidence
## 182  A great deal of confidence                A great deal of confidence
## 183   Quite a lot of confidence                                Don't know
## 184  A great deal of confidence                                Don't know
## 185   Quite a lot of confidence                                Don't know
## 186  A great deal of confidence                                Don't know
## 187  A great deal of confidence                 Quite a lot of confidence
## 188                  Don't know                                Don't know
## 189  A great deal of confidence                                Don't know
## 190   Quite a lot of confidence                                Don't know
## 191   Quite a lot of confidence                A great deal of confidence
## 192  A great deal of confidence                                Don't know
## 193  A great deal of confidence                 Quite a lot of confidence
## 194  A great deal of confidence                                Don't know
## 195   Quite a lot of confidence                                Don't know
## 196  A great deal of confidence                                Don't know
## 197  A great deal of confidence                                Don't know
## 198  A great deal of confidence                                Don't know
## 199  A great deal of confidence                A great deal of confidence
## 200  A great deal of confidence                                Don't know
## 201   Quite a lot of confidence                A great deal of confidence
## 202  A great deal of confidence                A great deal of confidence
## 203    Not very much confidence                A great deal of confidence
## 204  A great deal of confidence                A great deal of confidence
## 205   Quite a lot of confidence                A great deal of confidence
## 206   Quite a lot of confidence                A great deal of confidence
## 207  A great deal of confidence                A great deal of confidence
## 208   Quite a lot of confidence                A great deal of confidence
## 209   Quite a lot of confidence                A great deal of confidence
## 210   Quite a lot of confidence                A great deal of confidence
## 211   Quite a lot of confidence                A great deal of confidence
## 212  A great deal of confidence                 Quite a lot of confidence
## 213  A great deal of confidence                A great deal of confidence
## 214  A great deal of confidence                A great deal of confidence
## 215  A great deal of confidence                A great deal of confidence
## 216  A great deal of confidence                A great deal of confidence
## 217  A great deal of confidence                A great deal of confidence
## 218  A great deal of confidence                A great deal of confidence
## 219    Not very much confidence                A great deal of confidence
## 220   Quite a lot of confidence                A great deal of confidence
## 221  A great deal of confidence                A great deal of confidence
## 222   Quite a lot of confidence                A great deal of confidence
## 223   Quite a lot of confidence                A great deal of confidence
## 224    Not very much confidence                  Not very much confidence
## 225   Quite a lot of confidence                A great deal of confidence
## 226  A great deal of confidence                A great deal of confidence
## 227  A great deal of confidence                A great deal of confidence
## 228   Quite a lot of confidence                A great deal of confidence
## 229   Quite a lot of confidence                A great deal of confidence
## 230  A great deal of confidence                A great deal of confidence
## 231   Quite a lot of confidence                A great deal of confidence
## 232  A great deal of confidence                A great deal of confidence
## 233  A great deal of confidence                A great deal of confidence
## 234  A great deal of confidence                A great deal of confidence
## 235  A great deal of confidence                A great deal of confidence
## 236   Quite a lot of confidence                 Quite a lot of confidence
## 237  A great deal of confidence                  Not very much confidence
## 238  A great deal of confidence                A great deal of confidence
## 239  A great deal of confidence                A great deal of confidence
## 240  A great deal of confidence                A great deal of confidence
## 241  A great deal of confidence                A great deal of confidence
## 242  A great deal of confidence                A great deal of confidence
## 243  A great deal of confidence                A great deal of confidence
## 244  A great deal of confidence                A great deal of confidence
## 245   Quite a lot of confidence                A great deal of confidence
## 246  A great deal of confidence                A great deal of confidence
## 247    Not very much confidence                 Quite a lot of confidence
## 248   Quite a lot of confidence                  Not very much confidence
## 249   Quite a lot of confidence                 Quite a lot of confidence
## 250   Quite a lot of confidence                A great deal of confidence
## 251    Not very much confidence                A great deal of confidence
## 252   Quite a lot of confidence                 Quite a lot of confidence
## 253   Quite a lot of confidence                                Don't know
## 254   Quite a lot of confidence                                Don't know
## 255   Quite a lot of confidence                 Quite a lot of confidence
## 256    Not very much confidence                 Quite a lot of confidence
## 257   Quite a lot of confidence                                Don't know
## 258   Quite a lot of confidence                 Quite a lot of confidence
## 259   Quite a lot of confidence                 Quite a lot of confidence
## 260   Quite a lot of confidence                 Quite a lot of confidence
## 261   Quite a lot of confidence                 Quite a lot of confidence
## 262   Quite a lot of confidence                 Quite a lot of confidence
## 263   Quite a lot of confidence                                Don't know
## 264  A great deal of confidence                A great deal of confidence
## 265   Quite a lot of confidence                                Don't know
## 266   Quite a lot of confidence                 Quite a lot of confidence
## 267   Quite a lot of confidence                A great deal of confidence
## 268   Quite a lot of confidence                A great deal of confidence
## 269   Quite a lot of confidence                 Quite a lot of confidence
## 270  A great deal of confidence                                Don't know
## 271   Quite a lot of confidence                 Quite a lot of confidence
## 272   Quite a lot of confidence                 Quite a lot of confidence
## 273   Quite a lot of confidence                 Quite a lot of confidence
## 274   Quite a lot of confidence                A great deal of confidence
## 275   Quite a lot of confidence                 Quite a lot of confidence
## 276    Not very much confidence                 Quite a lot of confidence
## 277   Quite a lot of confidence                 Quite a lot of confidence
## 278   Quite a lot of confidence                 Quite a lot of confidence
## 279   Quite a lot of confidence                 Quite a lot of confidence
## 280   Quite a lot of confidence                 Quite a lot of confidence
## 281  A great deal of confidence                A great deal of confidence
## 282   Quite a lot of confidence                 Quite a lot of confidence
## 283   Quite a lot of confidence                A great deal of confidence
## 284    Not very much confidence                 Quite a lot of confidence
## 285   Quite a lot of confidence                 Quite a lot of confidence
## 286   Quite a lot of confidence                 Quite a lot of confidence
## 287  A great deal of confidence                A great deal of confidence
## 288    Not very much confidence                                Don't know
## 289   Quite a lot of confidence                                Don't know
## 290   Quite a lot of confidence                A great deal of confidence
## 291   Quite a lot of confidence                 Quite a lot of confidence
## 292                  Don't know                                Don't know
## 293   Quite a lot of confidence                A great deal of confidence
## 294   Quite a lot of confidence                A great deal of confidence
## 295   Quite a lot of confidence                                Don't know
## 296   Quite a lot of confidence                                Don't know
## 297    Not very much confidence                                Don't know
## 298   Quite a lot of confidence                 Quite a lot of confidence
## 299   Quite a lot of confidence                 Quite a lot of confidence
## 300   Quite a lot of confidence                 Quite a lot of confidence
## 302  A great deal of confidence                 Quite a lot of confidence
## 303   Quite a lot of confidence                 Quite a lot of confidence
## 304   Quite a lot of confidence                 Quite a lot of confidence
## 305  A great deal of confidence                 Quite a lot of confidence
## 306  A great deal of confidence                  Not very much confidence
## 307  A great deal of confidence                A great deal of confidence
## 308   Quite a lot of confidence                  Not very much confidence
## 309  A great deal of confidence                A great deal of confidence
## 310  A great deal of confidence                  Not very much confidence
## 311  A great deal of confidence                A great deal of confidence
## 312   Quite a lot of confidence                 Quite a lot of confidence
## 313   Quite a lot of confidence                                Don't know
## 314                  Don't know                                Don't know
## 315  A great deal of confidence                                Don't know
## 316   Quite a lot of confidence                  Not very much confidence
## 317    Not very much confidence                 Quite a lot of confidence
## 318  A great deal of confidence                                Don't know
## 319   Quite a lot of confidence                 Quite a lot of confidence
## 320   Quite a lot of confidence                 Quite a lot of confidence
## 321    Not very much confidence                 Quite a lot of confidence
## 322   Quite a lot of confidence                                Don't know
## 323   Quite a lot of confidence                                Don't know
## 324   Quite a lot of confidence                 Quite a lot of confidence
## 325   Quite a lot of confidence                 Quite a lot of confidence
## 326   Quite a lot of confidence                 Quite a lot of confidence
## 327   Quite a lot of confidence                 Quite a lot of confidence
## 328  A great deal of confidence                                Don't know
## 329    Not very much confidence                 Quite a lot of confidence
## 330   Quite a lot of confidence                                Don't know
## 331                  Don't know                A great deal of confidence
## 332                  Don't know                A great deal of confidence
## 333  A great deal of confidence                 Quite a lot of confidence
## 334                  Don't know                A great deal of confidence
## 335   Quite a lot of confidence                    None at all confidence
## 336   Quite a lot of confidence                A great deal of confidence
## 337   Quite a lot of confidence                  Not very much confidence
## 338                  Don't know                 Quite a lot of confidence
## 339   Quite a lot of confidence                A great deal of confidence
## 340   Quite a lot of confidence                                Don't know
## 341    Not very much confidence                    None at all confidence
## 342   Quite a lot of confidence                 Quite a lot of confidence
## 343   Quite a lot of confidence                  Not very much confidence
## 344   Quite a lot of confidence                A great deal of confidence
## 345  A great deal of confidence                    None at all confidence
## 346  A great deal of confidence                                Don't know
## 347  A great deal of confidence                 Quite a lot of confidence
## 348  A great deal of confidence                A great deal of confidence
## 349  A great deal of confidence                  Not very much confidence
## 350   Quite a lot of confidence                 Quite a lot of confidence
## 351  A great deal of confidence                  Not very much confidence
## 352                  Don't know                                Don't know
## 353   Quite a lot of confidence                 Quite a lot of confidence
## 354                  Don't know                                Don't know
## 355   Quite a lot of confidence                 Quite a lot of confidence
## 356                  Don't know                                Don't know
## 357   Quite a lot of confidence                 Quite a lot of confidence
## 358  A great deal of confidence                 Quite a lot of confidence
## 359   Quite a lot of confidence                 Quite a lot of confidence
## 360  A great deal of confidence                A great deal of confidence
## 361   Quite a lot of confidence                A great deal of confidence
## 362  A great deal of confidence                A great deal of confidence
## 363  A great deal of confidence                A great deal of confidence
## 364  A great deal of confidence                A great deal of confidence
## 365   Quite a lot of confidence                 Quite a lot of confidence
## 366   Quite a lot of confidence                 Quite a lot of confidence
## 367   Quite a lot of confidence                 Quite a lot of confidence
## 368   Quite a lot of confidence                 Quite a lot of confidence
## 369   Quite a lot of confidence                 Quite a lot of confidence
## 370   Quite a lot of confidence                 Quite a lot of confidence
## 371  A great deal of confidence                 Quite a lot of confidence
## 372   Quite a lot of confidence                 Quite a lot of confidence
## 373   Quite a lot of confidence                 Quite a lot of confidence
## 374   Quite a lot of confidence                A great deal of confidence
## 375   Quite a lot of confidence                 Quite a lot of confidence
## 376   Quite a lot of confidence                 Quite a lot of confidence
## 377  A great deal of confidence                A great deal of confidence
## 378  A great deal of confidence                 Quite a lot of confidence
## 379  A great deal of confidence                 Quite a lot of confidence
## 380  A great deal of confidence                A great deal of confidence
## 381                  Don't know                                Don't know
## 382   Quite a lot of confidence                                Don't know
## 383  A great deal of confidence                 Quite a lot of confidence
## 384  A great deal of confidence                                Don't know
## 385  A great deal of confidence                 Quite a lot of confidence
## 386  A great deal of confidence                 Quite a lot of confidence
## 387   Quite a lot of confidence                 Quite a lot of confidence
## 388  A great deal of confidence                 Quite a lot of confidence
## 389  A great deal of confidence                 Quite a lot of confidence
## 390   Quite a lot of confidence                 Quite a lot of confidence
## 391   Quite a lot of confidence                 Quite a lot of confidence
## 392  A great deal of confidence                A great deal of confidence
## 393   Quite a lot of confidence                                Don't know
## 394   Quite a lot of confidence                 Quite a lot of confidence
## 395   Quite a lot of confidence                A great deal of confidence
## 396   Quite a lot of confidence                A great deal of confidence
## 397   Quite a lot of confidence                 Quite a lot of confidence
## 398   Quite a lot of confidence                 Quite a lot of confidence
## 399                  Don't know                                Don't know
## 400  A great deal of confidence                 Quite a lot of confidence
## 401  A great deal of confidence                 Quite a lot of confidence
## 402  A great deal of confidence                                Don't know
## 403  A great deal of confidence                A great deal of confidence
## 404   Quite a lot of confidence                 Quite a lot of confidence
## 405   Quite a lot of confidence                 Quite a lot of confidence
## 406  A great deal of confidence                                Don't know
## 407  A great deal of confidence                A great deal of confidence
## 408  A great deal of confidence                A great deal of confidence
## 409  A great deal of confidence                A great deal of confidence
## 410  A great deal of confidence                A great deal of confidence
## 411  A great deal of confidence                A great deal of confidence
## 412  A great deal of confidence                A great deal of confidence
## 413  A great deal of confidence                A great deal of confidence
## 414   Quite a lot of confidence                                      <NA>
## 415                  Don't know                                Don't know
## 416  A great deal of confidence                A great deal of confidence
## 417                        <NA>                                Don't know
## 418  A great deal of confidence                 Quite a lot of confidence
## 419   Quite a lot of confidence                 Quite a lot of confidence
## 420   Quite a lot of confidence                 Quite a lot of confidence
## 421  A great deal of confidence                A great deal of confidence
## 422  A great deal of confidence                                Don't know
## 423  A great deal of confidence                A great deal of confidence
## 424  A great deal of confidence                  Not very much confidence
## 425  A great deal of confidence                 Quite a lot of confidence
## 426  A great deal of confidence                A great deal of confidence
## 427  A great deal of confidence                A great deal of confidence
## 428                  Don't know                                Don't know
## 429   Quite a lot of confidence                 Quite a lot of confidence
## 430  A great deal of confidence                A great deal of confidence
## 431  A great deal of confidence                A great deal of confidence
## 432  A great deal of confidence                                Don't know
## 433  A great deal of confidence                A great deal of confidence
## 434  A great deal of confidence                A great deal of confidence
## 435   Quite a lot of confidence                 Quite a lot of confidence
## 436  A great deal of confidence                A great deal of confidence
## 437  A great deal of confidence                A great deal of confidence
## 438   Quite a lot of confidence                 Quite a lot of confidence
## 439  A great deal of confidence                A great deal of confidence
## 440  A great deal of confidence                A great deal of confidence
## 441  A great deal of confidence                A great deal of confidence
## 442                        <NA>                                      <NA>
## 443  A great deal of confidence                A great deal of confidence
## 444  A great deal of confidence                A great deal of confidence
## 445  A great deal of confidence                A great deal of confidence
## 446  A great deal of confidence                A great deal of confidence
## 447  A great deal of confidence                A great deal of confidence
## 448  A great deal of confidence                A great deal of confidence
## 449  A great deal of confidence                A great deal of confidence
## 450   Quite a lot of confidence                 Quite a lot of confidence
## 451  A great deal of confidence                A great deal of confidence
## 452  A great deal of confidence                A great deal of confidence
## 453   Quite a lot of confidence                 Quite a lot of confidence
## 454   Quite a lot of confidence                A great deal of confidence
## 455  A great deal of confidence                A great deal of confidence
## 456   Quite a lot of confidence                A great deal of confidence
## 457   Quite a lot of confidence                 Quite a lot of confidence
## 458   Quite a lot of confidence                 Quite a lot of confidence
## 459   Quite a lot of confidence                  Not very much confidence
## 460    Not very much confidence                  Not very much confidence
## 461                  Don't know                                Don't know
## 462   Quite a lot of confidence                A great deal of confidence
## 463   Quite a lot of confidence                 Quite a lot of confidence
## 464  A great deal of confidence                 Quite a lot of confidence
## 465  A great deal of confidence                A great deal of confidence
## 466   Quite a lot of confidence                    None at all confidence
## 467  A great deal of confidence                 Quite a lot of confidence
## 468   Quite a lot of confidence                 Quite a lot of confidence
## 469   Quite a lot of confidence                A great deal of confidence
## 470  A great deal of confidence                A great deal of confidence
## 471   Quite a lot of confidence                A great deal of confidence
## 472   Quite a lot of confidence                A great deal of confidence
## 473  A great deal of confidence                A great deal of confidence
## 474  A great deal of confidence                A great deal of confidence
## 475  A great deal of confidence                A great deal of confidence
## 476   Quite a lot of confidence                A great deal of confidence
## 477  A great deal of confidence                A great deal of confidence
## 478  A great deal of confidence                A great deal of confidence
## 479                  Don't know                                Don't know
## 480   Quite a lot of confidence                A great deal of confidence
## 481  A great deal of confidence                A great deal of confidence
## 482    Not very much confidence                    None at all confidence
## 483    Not very much confidence                 Quite a lot of confidence
## 484   Quite a lot of confidence                  Not very much confidence
## 485   Quite a lot of confidence                A great deal of confidence
## 486  A great deal of confidence                 Quite a lot of confidence
## 487                  Don't know                                Don't know
## 488   Quite a lot of confidence                 Quite a lot of confidence
## 489   Quite a lot of confidence                 Quite a lot of confidence
## 490      None at all confidence                A great deal of confidence
## 491   Quite a lot of confidence                 Quite a lot of confidence
## 492  A great deal of confidence                A great deal of confidence
## 493    Not very much confidence                  Not very much confidence
## 494   Quite a lot of confidence                 Quite a lot of confidence
## 495   Quite a lot of confidence                    None at all confidence
## 496   Quite a lot of confidence                 Quite a lot of confidence
##      Confidence.in..If.any.other               Do.you.easily.trust.people.
## 1                           <NA> Need to be careful in dealing with people
## 2                           <NA> Need to be careful in dealing with people
## 3                           <NA> Need to be careful in dealing with people
## 4                           <NA>                Most people can be trusted
## 5                           <NA> Need to be careful in dealing with people
## 6                           <NA> Need to be careful in dealing with people
## 7                           <NA>                Most people can be trusted
## 8                           <NA>                Most people can be trusted
## 9                           <NA> Need to be careful in dealing with people
## 10                          <NA> Need to be careful in dealing with people
## 11                          <NA> Need to be careful in dealing with people
## 12                          <NA> Need to be careful in dealing with people
## 13                          <NA> Need to be careful in dealing with people
## 14                          <NA> Need to be careful in dealing with people
## 15                          <NA>                Most people can be trusted
## 16                          <NA> Need to be careful in dealing with people
## 17                          <NA> Need to be careful in dealing with people
## 18                          <NA>                Most people can be trusted
## 19                          <NA> Need to be careful in dealing with people
## 20                          <NA>                Most people can be trusted
## 21                    Don't know Need to be careful in dealing with people
## 22                          <NA> Need to be careful in dealing with people
## 23                          <NA> Need to be careful in dealing with people
## 24                          <NA> Need to be careful in dealing with people
## 25                          <NA>                Most people can be trusted
## 26                          <NA>                Most people can be trusted
## 27     Quite a lot of confidence Need to be careful in dealing with people
## 28                          <NA> Need to be careful in dealing with people
## 29                          <NA>                Most people can be trusted
## 30                          <NA> Need to be careful in dealing with people
## 31                          <NA> Need to be careful in dealing with people
## 32                          <NA>                Most people can be trusted
## 33                          <NA> Need to be careful in dealing with people
## 34                          <NA> Need to be careful in dealing with people
## 35                          <NA> Need to be careful in dealing with people
## 36                          <NA> Need to be careful in dealing with people
## 37                          <NA> Need to be careful in dealing with people
## 38                          <NA> Need to be careful in dealing with people
## 39                          <NA> Need to be careful in dealing with people
## 40                          <NA> Need to be careful in dealing with people
## 41                          <NA> Need to be careful in dealing with people
## 42                          <NA> Need to be careful in dealing with people
## 43                          <NA>                Most people can be trusted
## 44                          <NA> Need to be careful in dealing with people
## 45                          <NA> Need to be careful in dealing with people
## 46                          <NA> Need to be careful in dealing with people
## 47                          <NA> Need to be careful in dealing with people
## 48                          <NA> Need to be careful in dealing with people
## 49                          <NA> Need to be careful in dealing with people
## 50                          <NA> Need to be careful in dealing with people
## 51                          <NA>                Most people can be trusted
## 52                          <NA>                                Don't know
## 53                          <NA> Need to be careful in dealing with people
## 54                          <NA> Need to be careful in dealing with people
## 55                          <NA> Need to be careful in dealing with people
## 56                          <NA> Need to be careful in dealing with people
## 57                          <NA> Need to be careful in dealing with people
## 58                          <NA> Need to be careful in dealing with people
## 59                          <NA> Need to be careful in dealing with people
## 60                          <NA> Need to be careful in dealing with people
## 61                          <NA> Need to be careful in dealing with people
## 62                          <NA>                Most people can be trusted
## 63                          <NA> Need to be careful in dealing with people
## 64                          <NA> Need to be careful in dealing with people
## 65                          <NA> Need to be careful in dealing with people
## 66                          <NA> Need to be careful in dealing with people
## 67                          <NA> Need to be careful in dealing with people
## 68                          <NA>                Most people can be trusted
## 69                          <NA>                Most people can be trusted
## 70                          <NA> Need to be careful in dealing with people
## 71                          <NA> Need to be careful in dealing with people
## 72                          <NA> Need to be careful in dealing with people
## 73                          <NA> Need to be careful in dealing with people
## 74                          <NA> Need to be careful in dealing with people
## 75                          <NA>                Most people can be trusted
## 76                          <NA> Need to be careful in dealing with people
## 77                          <NA> Need to be careful in dealing with people
## 78                          <NA> Need to be careful in dealing with people
## 79                          <NA> Need to be careful in dealing with people
## 80                          <NA> Need to be careful in dealing with people
## 81                          <NA> Need to be careful in dealing with people
## 82                          <NA> Need to be careful in dealing with people
## 83                          <NA>                Most people can be trusted
## 84                          <NA> Need to be careful in dealing with people
## 85                          <NA> Need to be careful in dealing with people
## 86                          <NA> Need to be careful in dealing with people
## 87                          <NA> Need to be careful in dealing with people
## 88                          <NA> Need to be careful in dealing with people
## 89                          <NA> Need to be careful in dealing with people
## 90                          <NA>                Most people can be trusted
## 91                          <NA> Need to be careful in dealing with people
## 92                          <NA> Need to be careful in dealing with people
## 93                          <NA> Need to be careful in dealing with people
## 94                          <NA> Need to be careful in dealing with people
## 95                          <NA>                Most people can be trusted
## 96                          <NA>                Most people can be trusted
## 97                          <NA>                Most people can be trusted
## 98                          <NA> Need to be careful in dealing with people
## 99                          <NA> Need to be careful in dealing with people
## 100                         <NA> Need to be careful in dealing with people
## 101                   Don't know Need to be careful in dealing with people
## 102                         <NA>                Most people can be trusted
## 103                         <NA> Need to be careful in dealing with people
## 104   A great deal of confidence                                      <NA>
## 105                         <NA> Need to be careful in dealing with people
## 106                         <NA> Need to be careful in dealing with people
## 107                         <NA> Need to be careful in dealing with people
## 108                         <NA> Need to be careful in dealing with people
## 109                         <NA>                Most people can be trusted
## 110                         <NA> Need to be careful in dealing with people
## 111                         <NA>                                      <NA>
## 112                   Don't know Need to be careful in dealing with people
## 113                   Don't know Need to be careful in dealing with people
## 114                   Don't know Need to be careful in dealing with people
## 115   A great deal of confidence Need to be careful in dealing with people
## 116                   Don't know Need to be careful in dealing with people
## 117                   Don't know Need to be careful in dealing with people
## 118                   Don't know Need to be careful in dealing with people
## 119                   Don't know Need to be careful in dealing with people
## 120                   Don't know Need to be careful in dealing with people
## 121                   Don't know Need to be careful in dealing with people
## 122                   Don't know Need to be careful in dealing with people
## 123                   Don't know Need to be careful in dealing with people
## 124                   Don't know Need to be careful in dealing with people
## 125                   Don't know Need to be careful in dealing with people
## 126                   Don't know Need to be careful in dealing with people
## 127                   Don't know Need to be careful in dealing with people
## 128                   Don't know Need to be careful in dealing with people
## 129                   Don't know Need to be careful in dealing with people
## 130                   Don't know Need to be careful in dealing with people
## 131                   Don't know Need to be careful in dealing with people
## 132                   Don't know Need to be careful in dealing with people
## 133                   Don't know Need to be careful in dealing with people
## 134                   Don't know Need to be careful in dealing with people
## 135                   Don't know Need to be careful in dealing with people
## 136                   Don't know Need to be careful in dealing with people
## 137                   Don't know Need to be careful in dealing with people
## 138                   Don't know Need to be careful in dealing with people
## 139                   Don't know Need to be careful in dealing with people
## 140                   Don't know Need to be careful in dealing with people
## 141                   Don't know Need to be careful in dealing with people
## 142                   Don't know Need to be careful in dealing with people
## 143                   Don't know Need to be careful in dealing with people
## 144                   Don't know Need to be careful in dealing with people
## 145                   Don't know Need to be careful in dealing with people
## 146                   Don't know Need to be careful in dealing with people
## 147     Not very much confidence Need to be careful in dealing with people
## 148                   Don't know Need to be careful in dealing with people
## 149                   Don't know Need to be careful in dealing with people
## 150                   Don't know Need to be careful in dealing with people
## 151                         <NA> Need to be careful in dealing with people
## 152                         <NA> Need to be careful in dealing with people
## 153                         <NA> Need to be careful in dealing with people
## 154                         <NA> Need to be careful in dealing with people
## 155                         <NA> Need to be careful in dealing with people
## 156                         <NA> Need to be careful in dealing with people
## 157                         <NA> Need to be careful in dealing with people
## 158                         <NA> Need to be careful in dealing with people
## 159                         <NA> Need to be careful in dealing with people
## 160                         <NA> Need to be careful in dealing with people
## 161                         <NA> Need to be careful in dealing with people
## 162                         <NA> Need to be careful in dealing with people
## 163                         <NA> Need to be careful in dealing with people
## 164                         <NA> Need to be careful in dealing with people
## 165                         <NA> Need to be careful in dealing with people
## 166                         <NA> Need to be careful in dealing with people
## 167                         <NA> Need to be careful in dealing with people
## 168                         <NA> Need to be careful in dealing with people
## 169                         <NA> Need to be careful in dealing with people
## 170                         <NA> Need to be careful in dealing with people
## 171                         <NA> Need to be careful in dealing with people
## 172                         <NA> Need to be careful in dealing with people
## 173                         <NA> Need to be careful in dealing with people
## 174                         <NA> Need to be careful in dealing with people
## 175                         <NA> Need to be careful in dealing with people
## 176                         <NA> Need to be careful in dealing with people
## 177                         <NA> Need to be careful in dealing with people
## 178                         <NA> Need to be careful in dealing with people
## 179                         <NA> Need to be careful in dealing with people
## 180                         <NA> Need to be careful in dealing with people
## 181                         <NA> Need to be careful in dealing with people
## 182                         <NA> Need to be careful in dealing with people
## 183                         <NA> Need to be careful in dealing with people
## 184                         <NA> Need to be careful in dealing with people
## 185                         <NA> Need to be careful in dealing with people
## 186                         <NA> Need to be careful in dealing with people
## 187                         <NA> Need to be careful in dealing with people
## 188                         <NA> Need to be careful in dealing with people
## 189                         <NA> Need to be careful in dealing with people
## 190                         <NA> Need to be careful in dealing with people
## 191                         <NA> Need to be careful in dealing with people
## 192                         <NA> Need to be careful in dealing with people
## 193                         <NA> Need to be careful in dealing with people
## 194                         <NA> Need to be careful in dealing with people
## 195                         <NA> Need to be careful in dealing with people
## 196                         <NA> Need to be careful in dealing with people
## 197                         <NA> Need to be careful in dealing with people
## 198                         <NA> Need to be careful in dealing with people
## 199                         <NA> Need to be careful in dealing with people
## 200                         <NA> Need to be careful in dealing with people
## 201                   Don't know                Most people can be trusted
## 202                   Don't know Need to be careful in dealing with people
## 203                   Don't know Need to be careful in dealing with people
## 204                   Don't know Need to be careful in dealing with people
## 205                   Don't know Need to be careful in dealing with people
## 206                   Don't know Need to be careful in dealing with people
## 207                   Don't know Need to be careful in dealing with people
## 208                   Don't know Need to be careful in dealing with people
## 209                   Don't know Need to be careful in dealing with people
## 210                   Don't know Need to be careful in dealing with people
## 211                   Don't know Need to be careful in dealing with people
## 212                   Don't know Need to be careful in dealing with people
## 213                   Don't know Need to be careful in dealing with people
## 214                   Don't know Need to be careful in dealing with people
## 215                   Don't know Need to be careful in dealing with people
## 216                   Don't know Need to be careful in dealing with people
## 217                   Don't know Need to be careful in dealing with people
## 218                   Don't know Need to be careful in dealing with people
## 219                   Don't know Need to be careful in dealing with people
## 220                   Don't know                Most people can be trusted
## 221                   Don't know                Most people can be trusted
## 222                   Don't know Need to be careful in dealing with people
## 223                   Don't know Need to be careful in dealing with people
## 224                   Don't know                Most people can be trusted
## 225                   Don't know                Most people can be trusted
## 226                   Don't know                Most people can be trusted
## 227                   Don't know Need to be careful in dealing with people
## 228                   Don't know Need to be careful in dealing with people
## 229                   Don't know                Most people can be trusted
## 230                   Don't know Need to be careful in dealing with people
## 231                   Don't know Need to be careful in dealing with people
## 232                   Don't know Need to be careful in dealing with people
## 233                   Don't know Need to be careful in dealing with people
## 234                   Don't know Need to be careful in dealing with people
## 235                   Don't know Need to be careful in dealing with people
## 236                   Don't know                Most people can be trusted
## 237                   Don't know Need to be careful in dealing with people
## 238                   Don't know Need to be careful in dealing with people
## 239                   Don't know Need to be careful in dealing with people
## 240                   Don't know Need to be careful in dealing with people
## 241                   Don't know Need to be careful in dealing with people
## 242                   Don't know Need to be careful in dealing with people
## 243                   Don't know Need to be careful in dealing with people
## 244                   Don't know Need to be careful in dealing with people
## 245                   Don't know Need to be careful in dealing with people
## 246                   Don't know Need to be careful in dealing with people
## 247                   Don't know                Most people can be trusted
## 248                   Don't know                Most people can be trusted
## 249                   Don't know                Most people can be trusted
## 250                   Don't know Need to be careful in dealing with people
## 251                         <NA> Need to be careful in dealing with people
## 252                         <NA> Need to be careful in dealing with people
## 253                         <NA>                Most people can be trusted
## 254                         <NA> Need to be careful in dealing with people
## 255                         <NA>                Most people can be trusted
## 256                         <NA>                Most people can be trusted
## 257                         <NA>                Most people can be trusted
## 258                         <NA>                Most people can be trusted
## 259                         <NA> Need to be careful in dealing with people
## 260                         <NA>                Most people can be trusted
## 261                         <NA>                                Don't know
## 262                         <NA> Need to be careful in dealing with people
## 263                         <NA>                Most people can be trusted
## 264    Quite a lot of confidence Need to be careful in dealing with people
## 265                         <NA>                Most people can be trusted
## 266    Quite a lot of confidence Need to be careful in dealing with people
## 267                         <NA> Need to be careful in dealing with people
## 268                         <NA>                Most people can be trusted
## 269                         <NA>                Most people can be trusted
## 270                         <NA>                Most people can be trusted
## 271                         <NA> Need to be careful in dealing with people
## 272                         <NA> Need to be careful in dealing with people
## 273                         <NA> Need to be careful in dealing with people
## 274                         <NA>                Most people can be trusted
## 275                         <NA>                Most people can be trusted
## 276                         <NA> Need to be careful in dealing with people
## 277                         <NA>                Most people can be trusted
## 278                         <NA> Need to be careful in dealing with people
## 279                         <NA> Need to be careful in dealing with people
## 280                         <NA> Need to be careful in dealing with people
## 281                         <NA> Need to be careful in dealing with people
## 282                         <NA> Need to be careful in dealing with people
## 283                         <NA>                                      <NA>
## 284                         <NA> Need to be careful in dealing with people
## 285    Quite a lot of confidence                                      <NA>
## 286                         <NA>                Most people can be trusted
## 287                         <NA> Need to be careful in dealing with people
## 288                         <NA>                Most people can be trusted
## 289                         <NA>                Most people can be trusted
## 290                         <NA> Need to be careful in dealing with people
## 291                         <NA>                Most people can be trusted
## 292                         <NA>                Most people can be trusted
## 293                         <NA> Need to be careful in dealing with people
## 294                         <NA> Need to be careful in dealing with people
## 295                         <NA>                Most people can be trusted
## 296                         <NA>                Most people can be trusted
## 297                         <NA>                Most people can be trusted
## 298                         <NA> Need to be careful in dealing with people
## 299    Quite a lot of confidence                Most people can be trusted
## 300                         <NA> Need to be careful in dealing with people
## 302                         <NA> Need to be careful in dealing with people
## 303                         <NA> Need to be careful in dealing with people
## 304                         <NA> Need to be careful in dealing with people
## 305                         <NA> Need to be careful in dealing with people
## 306                         <NA> Need to be careful in dealing with people
## 307                         <NA>                Most people can be trusted
## 308                         <NA> Need to be careful in dealing with people
## 309                         <NA> Need to be careful in dealing with people
## 310                         <NA> Need to be careful in dealing with people
## 311                         <NA> Need to be careful in dealing with people
## 312                         <NA>                Most people can be trusted
## 313                         <NA> Need to be careful in dealing with people
## 314                         <NA> Need to be careful in dealing with people
## 315                         <NA> Need to be careful in dealing with people
## 316                         <NA> Need to be careful in dealing with people
## 317                         <NA> Need to be careful in dealing with people
## 318                         <NA>                Most people can be trusted
## 319                         <NA> Need to be careful in dealing with people
## 320                         <NA> Need to be careful in dealing with people
## 321                         <NA> Need to be careful in dealing with people
## 322                         <NA>                Most people can be trusted
## 323                         <NA>                Most people can be trusted
## 324                         <NA>                Most people can be trusted
## 325                         <NA> Need to be careful in dealing with people
## 326                         <NA>                Most people can be trusted
## 327                         <NA> Need to be careful in dealing with people
## 328                         <NA> Need to be careful in dealing with people
## 329                         <NA> Need to be careful in dealing with people
## 330                         <NA> Need to be careful in dealing with people
## 331                         <NA> Need to be careful in dealing with people
## 332                         <NA>                                Don't know
## 333                         <NA> Need to be careful in dealing with people
## 334                         <NA>                                Don't know
## 335                         <NA> Need to be careful in dealing with people
## 336                         <NA> Need to be careful in dealing with people
## 337                         <NA>                                Don't know
## 338                         <NA> Need to be careful in dealing with people
## 339                         <NA> Need to be careful in dealing with people
## 340                         <NA> Need to be careful in dealing with people
## 341     Not very much confidence Need to be careful in dealing with people
## 342                         <NA> Need to be careful in dealing with people
## 343                         <NA>                Most people can be trusted
## 344                         <NA> Need to be careful in dealing with people
## 345                         <NA> Need to be careful in dealing with people
## 346                         <NA> Need to be careful in dealing with people
## 347                         <NA> Need to be careful in dealing with people
## 348                         <NA> Need to be careful in dealing with people
## 349                         <NA> Need to be careful in dealing with people
## 350                         <NA> Need to be careful in dealing with people
## 351                         <NA> Need to be careful in dealing with people
## 352                         <NA>                                Don't know
## 353                         <NA> Need to be careful in dealing with people
## 354                         <NA> Need to be careful in dealing with people
## 355                         <NA> Need to be careful in dealing with people
## 356                         <NA> Need to be careful in dealing with people
## 357                         <NA> Need to be careful in dealing with people
## 358                         <NA> Need to be careful in dealing with people
## 359                         <NA> Need to be careful in dealing with people
## 360                         <NA> Need to be careful in dealing with people
## 361                         <NA> Need to be careful in dealing with people
## 362                         <NA>                Most people can be trusted
## 363                         <NA> Need to be careful in dealing with people
## 364                         <NA> Need to be careful in dealing with people
## 365                         <NA> Need to be careful in dealing with people
## 366                         <NA> Need to be careful in dealing with people
## 367                         <NA>                Most people can be trusted
## 368                         <NA>                                Don't know
## 369                         <NA> Need to be careful in dealing with people
## 370                         <NA> Need to be careful in dealing with people
## 371                         <NA> Need to be careful in dealing with people
## 372                         <NA>                Most people can be trusted
## 373                         <NA> Need to be careful in dealing with people
## 374                         <NA> Need to be careful in dealing with people
## 375                         <NA> Need to be careful in dealing with people
## 376                         <NA> Need to be careful in dealing with people
## 377                         <NA> Need to be careful in dealing with people
## 378                         <NA> Need to be careful in dealing with people
## 379                         <NA> Need to be careful in dealing with people
## 380                         <NA> Need to be careful in dealing with people
## 381                         <NA>                Most people can be trusted
## 382                         <NA> Need to be careful in dealing with people
## 383                         <NA> Need to be careful in dealing with people
## 384                         <NA> Need to be careful in dealing with people
## 385                         <NA> Need to be careful in dealing with people
## 386                         <NA> Need to be careful in dealing with people
## 387                         <NA> Need to be careful in dealing with people
## 388                         <NA> Need to be careful in dealing with people
## 389                         <NA> Need to be careful in dealing with people
## 390                         <NA>                Most people can be trusted
## 391                         <NA> Need to be careful in dealing with people
## 392                         <NA> Need to be careful in dealing with people
## 393                         <NA> Need to be careful in dealing with people
## 394                         <NA> Need to be careful in dealing with people
## 395                         <NA> Need to be careful in dealing with people
## 396                         <NA> Need to be careful in dealing with people
## 397                         <NA>                Most people can be trusted
## 398                         <NA> Need to be careful in dealing with people
## 399                         <NA> Need to be careful in dealing with people
## 400                         <NA> Need to be careful in dealing with people
## 401                         <NA> Need to be careful in dealing with people
## 402                         <NA>                Most people can be trusted
## 403                         <NA> Need to be careful in dealing with people
## 404                         <NA> Need to be careful in dealing with people
## 405                         <NA> Need to be careful in dealing with people
## 406                         <NA> Need to be careful in dealing with people
## 407                         <NA>                                Don't know
## 408   A great deal of confidence Need to be careful in dealing with people
## 409                         <NA> Need to be careful in dealing with people
## 410                         <NA>                                      <NA>
## 411                         <NA>                Most people can be trusted
## 412                         <NA> Need to be careful in dealing with people
## 413                         <NA>                Most people can be trusted
## 414                         <NA>                Most people can be trusted
## 415                         <NA>                Most people can be trusted
## 416                         <NA> Need to be careful in dealing with people
## 417                   Don't know                Most people can be trusted
## 418                         <NA> Need to be careful in dealing with people
## 419                         <NA>                Most people can be trusted
## 420                         <NA> Need to be careful in dealing with people
## 421                         <NA> Need to be careful in dealing with people
## 422                         <NA>                Most people can be trusted
## 423     Not very much confidence                                      <NA>
## 424                         <NA>                                      <NA>
## 425                         <NA>                                      <NA>
## 426                         <NA>                                      <NA>
## 427   A great deal of confidence                                      <NA>
## 428                   Don't know                                      <NA>
## 429                         <NA>                                Don't know
## 430                         <NA> Need to be careful in dealing with people
## 431                         <NA> Need to be careful in dealing with people
## 432                         <NA>                Most people can be trusted
## 433   A great deal of confidence Need to be careful in dealing with people
## 434   A great deal of confidence Need to be careful in dealing with people
## 435                         <NA> Need to be careful in dealing with people
## 436   A great deal of confidence                                      <NA>
## 437                         <NA> Need to be careful in dealing with people
## 438                         <NA> Need to be careful in dealing with people
## 439   A great deal of confidence                Most people can be trusted
## 440     Not very much confidence                                      <NA>
## 441   A great deal of confidence Need to be careful in dealing with people
## 442                         <NA> Need to be careful in dealing with people
## 443                         <NA> Need to be careful in dealing with people
## 444   A great deal of confidence Need to be careful in dealing with people
## 445                         <NA> Need to be careful in dealing with people
## 446                         <NA> Need to be careful in dealing with people
## 447                         <NA> Need to be careful in dealing with people
## 448   A great deal of confidence Need to be careful in dealing with people
## 449                         <NA> Need to be careful in dealing with people
## 450    Quite a lot of confidence Need to be careful in dealing with people
## 451                         <NA> Need to be careful in dealing with people
## 452                         <NA> Need to be careful in dealing with people
## 453                         <NA> Need to be careful in dealing with people
## 454                         <NA>                Most people can be trusted
## 455                         <NA> Need to be careful in dealing with people
## 456                         <NA> Need to be careful in dealing with people
## 457                         <NA> Need to be careful in dealing with people
## 458                         <NA> Need to be careful in dealing with people
## 459                         <NA> Need to be careful in dealing with people
## 460   A great deal of confidence                                Don't know
## 461                   Don't know Need to be careful in dealing with people
## 462    Quite a lot of confidence Need to be careful in dealing with people
## 463       None at all confidence Need to be careful in dealing with people
## 464                         <NA> Need to be careful in dealing with people
## 465                         <NA> Need to be careful in dealing with people
## 466                         <NA>                                Don't know
## 467                         <NA> Need to be careful in dealing with people
## 468                         <NA> Need to be careful in dealing with people
## 469                   Don't know Need to be careful in dealing with people
## 470                         <NA>                                Don't know
## 471                         <NA> Need to be careful in dealing with people
## 472                         <NA>                Most people can be trusted
## 473                         <NA>                                Don't know
## 474                         <NA> Need to be careful in dealing with people
## 475                         <NA> Need to be careful in dealing with people
## 476                         <NA>                Most people can be trusted
## 477                         <NA> Need to be careful in dealing with people
## 478                         <NA> Need to be careful in dealing with people
## 479                         <NA>                Most people can be trusted
## 480                         <NA>                                Don't know
## 481                         <NA>                Most people can be trusted
## 482                         <NA> Need to be careful in dealing with people
## 483                         <NA> Need to be careful in dealing with people
## 484                         <NA>                Most people can be trusted
## 485                         <NA> Need to be careful in dealing with people
## 486                         <NA>                Most people can be trusted
## 487                   Don't know Need to be careful in dealing with people
## 488                   Don't know Need to be careful in dealing with people
## 489                         <NA> Need to be careful in dealing with people
## 490                         <NA> Need to be careful in dealing with people
## 491                         <NA> Need to be careful in dealing with people
## 492                         <NA> Need to be careful in dealing with people
## 493                         <NA>                Most people can be trusted
## 494                         <NA> Need to be careful in dealing with people
## 495       None at all confidence Need to be careful in dealing with people
## 496    Quite a lot of confidence Need to be careful in dealing with people
##      Trustworthy.Person.Characteristic.1
## 1                              Behaviour
## 2                                   <NA>
## 3                                 Honest
## 4                       Service Delivery
## 5                                 Honest
## 6                                 Honest
## 7                              Behaviour
## 8                              Behaviour
## 9                           Truthfulness
## 10                          Truthfulness
## 11                             Behaviour
## 12                                Honest
## 13                    Rich / Independent
## 14                             Efficient
## 15                             Behaviour
## 16                                Honest
## 17                                  <NA>
## 18                       Power deligator
## 19                             Behaviour
## 20                              Kindness
## 21                                  <NA>
## 22                             Behaviour
## 23                           Responsible
## 24                                Honest
## 25                            Good/Great
## 26                                Honest
## 27                                Honest
## 28                            Good/Great
## 29                                  <NA>
## 30                           Transparent
## 31                             Behaviour
## 32                             Behaviour
## 33                              Kindness
## 34                             Behaviour
## 35                             Behaviour
## 36                                Honest
## 37               Laborious / Industrious
## 38                             Behaviour
## 39                          Truthfulness
## 40                          Truthfulness
## 41                                Honest
## 42                                Honest
## 43                     Relative / Friend
## 44                             Behaviour
## 45                             Behaviour
## 46                             Behaviour
## 47               Laborious / Industrious
## 48                           Accountable
## 49               Laborious / Industrious
## 50                          Truthfulness
## 51                    Rich / Independent
## 52                      Known / Familiar
## 53                     Relative / Friend
## 54                          Truthfulness
## 55                             Behaviour
## 56                             Behaviour
## 57                                Honest
## 58                             Behaviour
## 59                                  <NA>
## 60                            Good/Great
## 61                             Behaviour
## 62                             Behaviour
## 63                               Popular
## 64                                Honest
## 65                             Behaviour
## 66                             Behaviour
## 67                             Behaviour
## 68                                Honest
## 69                             Behaviour
## 70                             Behaviour
## 71                             Behaviour
## 72                             Behaviour
## 73                   Constitutional Body
## 74                             Behaviour
## 75                   Constitutional Body
## 76                             Behaviour
## 77                             Behaviour
## 78                   Constitutional Body
## 79                                  <NA>
## 80                   Constitutional Body
## 81                   Constitutional Body
## 82                             Behaviour
## 83                             Behaviour
## 84                             Practical
## 85                             Behaviour
## 86                             Behaviour
## 87                             Behaviour
## 88                             Behaviour
## 89                             Behaviour
## 90                   Constitutional Body
## 91                   Constitutional Body
## 92                   Constitutional Body
## 93                   Constitutional Body
## 94                             Behaviour
## 95                   Constitutional Body
## 96                 Helpful / Cooperative
## 97                                Honest
## 98                             Behaviour
## 99                            Good/Great
## 100                            Behaviour
## 101              Laborious / Industrious
## 102                            Behaviour
## 103                              Logical
## 104                            Behaviour
## 105                            Behaviour
## 106                            Behaviour
## 107                    Relative / Friend
## 108                              Logical
## 109                            Behaviour
## 110                            Behaviour
## 111                                 <NA>
## 112                    Relative / Friend
## 113                  Educated / Academic
## 114                    Relative / Friend
## 115              Laborious / Industrious
## 116                              Popular
## 117              Laborious / Industrious
## 118                              Popular
## 119                            Behaviour
## 120              Laborious / Industrious
## 121                              Logical
## 122              Laborious / Industrious
## 123                     Known / Familiar
## 124                    Relative / Friend
## 125                          Accountable
## 126                    Relative / Friend
## 127                     Known / Familiar
## 128              Laborious / Industrious
## 129              Laborious / Industrious
## 130                   Rich / Independent
## 131                            Behaviour
## 132                            Behaviour
## 133                    Relative / Friend
## 134                            Behaviour
## 135                     Known / Familiar
## 136                                Other
## 137              Laborious / Industrious
## 138                              Popular
## 139                              Logical
## 140                     Known / Familiar
## 141              Laborious / Industrious
## 142                            Behaviour
## 143                     Known / Familiar
## 144                    Relative / Friend
## 145                     Known / Familiar
## 146                           Good/Great
## 147              Laborious / Industrious
## 148              Laborious / Industrious
## 149              Laborious / Industrious
## 150                              Popular
## 151                    Relative / Friend
## 152                            Behaviour
## 153                     Known / Familiar
## 154                  Constitutional Body
## 155                            Behaviour
## 156                    Relative / Friend
## 157                    Relative / Friend
## 158                     Known / Familiar
## 159                            Behaviour
## 160                            Behaviour
## 161                             Kindness
## 162                    Relative / Friend
## 163                            Behaviour
## 164                            Behaviour
## 165                    Relative / Friend
## 166                    Relative / Friend
## 167                            Behaviour
## 168                             Kindness
## 169                             Kindness
## 170                    Relative / Friend
## 171                             Kindness
## 172                    Relative / Friend
## 173                             Kindness
## 174                    Relative / Friend
## 175                    Relative / Friend
## 176                     Known / Familiar
## 177                    Relative / Friend
## 178                    Relative / Friend
## 179                    Relative / Friend
## 180                    Relative / Friend
## 181                    Relative / Friend
## 182                    Relative / Friend
## 183                    Relative / Friend
## 184                     Known / Familiar
## 185                     Known / Familiar
## 186                    Relative / Friend
## 187                    Relative / Friend
## 188                                 <NA>
## 189                            Behaviour
## 190                    Relative / Friend
## 191                     Known / Familiar
## 192                            Behaviour
## 193                     Known / Familiar
## 194                            Behaviour
## 195                             Kindness
## 196                            Behaviour
## 197                    Relative / Friend
## 198                            Behaviour
## 199                    Relative / Friend
## 200                             Kindness
## 201                            Religious
## 202                               Honest
## 203                            Practical
## 204                Helpful / Cooperative
## 205                               Honest
## 206                Helpful / Cooperative
## 207                 Idealastic / ethical
## 208                               Honest
## 209                              Neutral
## 210                               Honest
## 211                          Transparent
## 212                               Honest
## 213                 Idealastic / ethical
## 214                Helpful / Cooperative
## 215                 Idealastic / ethical
## 216                    Relative / Friend
## 217                Helpful / Cooperative
## 218                               Honest
## 219                               Honest
## 220                 Idealastic / ethical
## 221                 Idealastic / ethical
## 222                               Honest
## 223                            Practical
## 224                               Honest
## 225                            Religious
## 226                               Honest
## 227                           Good/Great
## 228                               Honest
## 229                            Religious
## 230                         Truthfulness
## 231                               Honest
## 232                               Honest
## 233                Helpful / Cooperative
## 234                Helpful / Cooperative
## 235                         Truthfulness
## 236                               Honest
## 237                               Honest
## 238                             Kindness
## 239                           Benevolent
## 240                Helpful / Cooperative
## 241                            Religious
## 242              Laborious / Industrious
## 243                Helpful / Cooperative
## 244                               Honest
## 245                               Honest
## 246                         Truthfulness
## 247                               Honest
## 248                Helpful / Cooperative
## 249                               Honest
## 250                              Popular
## 251                               Social
## 252                            Behaviour
## 253                               Honest
## 254                                 <NA>
## 255                    Relative / Friend
## 256                     Known / Familiar
## 257                     Known / Familiar
## 258                    Relative / Friend
## 259                               Honest
## 260                    Relative / Friend
## 261                                 <NA>
## 262                            Behaviour
## 263                                 <NA>
## 264                             Kindness
## 265                            Behaviour
## 266                            Behaviour
## 267                  Educated / Academic
## 268                    Relative / Friend
## 269                     Known / Familiar
## 270                    Relative / Friend
## 271                            Behaviour
## 272                            Behaviour
## 273                               Honest
## 274                     Known / Familiar
## 275                     Known / Familiar
## 276                                 <NA>
## 277              Laborious / Industrious
## 278                                 <NA>
## 279                           Good/Great
## 280                         Truthfulness
## 281                                 <NA>
## 282                           Good/Great
## 283                               Social
## 284                               Social
## 285                    Relative / Friend
## 286                     Known / Familiar
## 287                             Kindness
## 288                            Behaviour
## 289                     Known / Familiar
## 290                           Good/Great
## 291                            Behaviour
## 292                    Relative / Friend
## 293                             Kindness
## 294                                 <NA>
## 295                               Social
## 296                    Relative / Friend
## 297                    Relative / Friend
## 298                                 <NA>
## 299              Laborious / Industrious
## 300                            Behaviour
## 302                            Efficient
## 303                               Honest
## 304                               Honest
## 305                               Honest
## 306                            Behaviour
## 307                         Truthfulness
## 308                               Honest
## 309                                Other
## 310                     Known / Familiar
## 311                     Known / Familiar
## 312                         Truthfulness
## 313                               Honest
## 314                               Honest
## 315                               Honest
## 316                              Liberal
## 317                         Truthfulness
## 318                            Behaviour
## 319                         Truthfulness
## 320                            Behaviour
## 321                            Behaviour
## 322                     Known / Familiar
## 323                     Known / Familiar
## 324                     Known / Familiar
## 325                         Truthfulness
## 326                               Honest
## 327                         Truthfulness
## 328                     Known / Familiar
## 329              Laborious / Industrious
## 330                            Behaviour
## 331                         Truthfulness
## 332                         Truthfulness
## 333                         Truthfulness
## 334                         Truthfulness
## 335                         Truthfulness
## 336                         Truthfulness
## 337                         Truthfulness
## 338                                Other
## 339                               Honest
## 340                            Behaviour
## 341                     Known / Familiar
## 342                            Behaviour
## 343                               Honest
## 344                            Religious
## 345                                 <NA>
## 346                               Honest
## 347                         Truthfulness
## 348              Laborious / Industrious
## 349                            Behaviour
## 350                            Behaviour
## 351                         Truthfulness
## 352                                 <NA>
## 353                  Educated / Academic
## 354                                 <NA>
## 355                               Social
## 356                     Service Delivery
## 357                            Religious
## 358                  Educated / Academic
## 359                                 <NA>
## 360                            Religious
## 361                  Educated / Academic
## 362                    Relative / Friend
## 363                            Religious
## 364                               Social
## 365                                 <NA>
## 366                                 <NA>
## 367                                 <NA>
## 368                                 <NA>
## 369                            Religious
## 370                               Social
## 371                               Social
## 372                               Social
## 373                  Educated / Academic
## 374                  Educated / Academic
## 375                                 <NA>
## 376                Helpful / Cooperative
## 377                               Social
## 378                               Honest
## 379                                 <NA>
## 380                               Social
## 381                                 <NA>
## 382                            Religious
## 383                  Educated / Academic
## 384                           Good/Great
## 385                               Social
## 386                                 <NA>
## 387                Helpful / Cooperative
## 388                                 <NA>
## 389                               Social
## 390                  Educated / Academic
## 391                                 <NA>
## 392                                 <NA>
## 393                               Social
## 394                            Religious
## 395                            Religious
## 396                                 <NA>
## 397                  Educated / Academic
## 398                               Social
## 399                  Constitutional Body
## 400                               Honest
## 401                  Educated / Academic
## 402                               Honest
## 403                               Honest
## 404                                 <NA>
## 405                                 <NA>
## 406                               Honest
## 407                               Honest
## 408                              Popular
## 409                                Other
## 410                                Other
## 411                               Honest
## 412                              Popular
## 413                               Honest
## 414                Helpful / Cooperative
## 415                           Don't Know
## 416                                 <NA>
## 417                                 <NA>
## 418                               Honest
## 419                               Honest
## 420                               Honest
## 421                               Honest
## 422                                 <NA>
## 423                                 <NA>
## 424                                 <NA>
## 425                                 <NA>
## 426                               Honest
## 427                               Honest
## 428                                 <NA>
## 429                                 <NA>
## 430                                 <NA>
## 431                               Honest
## 432                                 <NA>
## 433                               Honest
## 434                                 <NA>
## 435                               Honest
## 436                                 <NA>
## 437                               Honest
## 438                                Other
## 439                              Popular
## 440                                 <NA>
## 441                               Honest
## 442                                 <NA>
## 443                                 <NA>
## 444                               Honest
## 445                               Honest
## 446                               Honest
## 447                               Honest
## 448                                 <NA>
## 449                               Honest
## 450                                 <NA>
## 451                                 <NA>
## 452                                 <NA>
## 453                                Other
## 454                               Honest
## 455                 Idealastic / ethical
## 456                  Educated / Academic
## 457              Laborious / Industrious
## 458              Laborious / Industrious
## 459                              Neutral
## 460                               Honest
## 461                         Truthfulness
## 462                 Idealastic / ethical
## 463                               Honest
## 464                               Honest
## 465                            Behaviour
## 466                               Honest
## 467                            Behaviour
## 468                            Behaviour
## 469                               Honest
## 470                               Honest
## 471                               Honest
## 472                 Idealastic / ethical
## 473                               Honest
## 474                            Behaviour
## 475                Helpful / Cooperative
## 476                               Honest
## 477                             Kindness
## 478                         Truthfulness
## 479                            Behaviour
## 480                 Idealastic / ethical
## 481                            Behaviour
## 482                                Other
## 483                            Efficient
## 484                            Efficient
## 485                               Honest
## 486                Helpful / Cooperative
## 487                             Kindness
## 488                               Honest
## 489              Laborious / Industrious
## 490                               Honest
## 491              Laborious / Industrious
## 492                               Honest
## 493                            Behaviour
## 494              Laborious / Industrious
## 495                                Other
## 496                  Educated / Academic
##      Trustworthy.Person.Characteristic.2
## 1                             Benevolent
## 2                                   <NA>
## 3                              Behaviour
## 4                                 Honest
## 5                           Truthfulness
## 6                    Educated / Academic
## 7                           Truthfulness
## 8                           Truthfulness
## 9                              Behaviour
## 10                           Transparent
## 11                          Truthfulness
## 12                          Truthfulness
## 13                                Honest
## 14               Laborious / Industrious
## 15                    Rich / Independent
## 16                            Benevolent
## 17                                  <NA>
## 18               Laborious / Industrious
## 19                                Honest
## 20                             Behaviour
## 21                                  <NA>
## 22                    Rich / Independent
## 23                                Honest
## 24                            Benevolent
## 25                                  <NA>
## 26                            Good/Great
## 27                             Efficient
## 28                                  <NA>
## 29                                  <NA>
## 30                                Honest
## 31                                Honest
## 32                                  <NA>
## 33                                Honest
## 34                             Behaviour
## 35               Laborious / Industrious
## 36                     Relative / Friend
## 37                 Helpful / Cooperative
## 38               Laborious / Industrious
## 39                                Honest
## 40                             Behaviour
## 41                          Truthfulness
## 42                                  <NA>
## 43                             Behaviour
## 44                     Relative / Friend
## 45                          Truthfulness
## 46                      Known / Familiar
## 47                             Behaviour
## 48                     Relative / Friend
## 49                          Truthfulness
## 50                 Helpful / Cooperative
## 51                             Efficient
## 52                             Efficient
## 53                   Educated / Academic
## 54                             Behaviour
## 55                     Relative / Friend
## 56                     Relative / Friend
## 57                 Helpful / Cooperative
## 58                 Helpful / Cooperative
## 59                                  <NA>
## 60               Laborious / Industrious
## 61                                Honest
## 62                      Known / Familiar
## 63                                Honest
## 64                   Educated / Academic
## 65                 Helpful / Cooperative
## 66                             Behaviour
## 67                 Helpful / Cooperative
## 68                            Good/Great
## 69                 Helpful / Cooperative
## 70                            Good/Great
## 71                   Constitutional Body
## 72                          Truthfulness
## 73                                Honest
## 74                      Known / Familiar
## 75                                Honest
## 76                      Known / Familiar
## 77                      Known / Familiar
## 78                                Honest
## 79                                  <NA>
## 80                      Known / Familiar
## 81                      Known / Familiar
## 82                             Behaviour
## 83                   Educated / Academic
## 84                                Honest
## 85                 Helpful / Cooperative
## 86                 Helpful / Cooperative
## 87                             Behaviour
## 88                                Honest
## 89                      Known / Familiar
## 90                                Honest
## 91                            Good/Great
## 92                                Honest
## 93                                Honest
## 94                      Known / Familiar
## 95                                Honest
## 96                            Good/Great
## 97                            Good/Great
## 98                      Known / Familiar
## 99                   Constitutional Body
## 100                     Known / Familiar
## 101                       Troubleshooter
## 102                            Behaviour
## 103                              Logical
## 104                    Relative / Friend
## 105                    Relative / Friend
## 106                    Relative / Friend
## 107              Laborious / Industrious
## 108                              Logical
## 109                     Known / Familiar
## 110                    Relative / Friend
## 111                                 <NA>
## 112                     Known / Familiar
## 113                    Relative / Friend
## 114              Laborious / Industrious
## 115                   Rich / Independent
## 116              Laborious / Industrious
## 117                              Popular
## 118                    Relative / Friend
## 119                             Kindness
## 120                              Popular
## 121              Laborious / Industrious
## 122                            Behaviour
## 123                              Popular
## 124                     Known / Familiar
## 125              Laborious / Industrious
## 126                     Known / Familiar
## 127                            Behaviour
## 128                   Rich / Independent
## 129                            Behaviour
## 130              Laborious / Industrious
## 131              Laborious / Industrious
## 132                             Kindness
## 133                              Logical
## 134                            Behaviour
## 135                              Popular
## 136                                 <NA>
## 137                   Rich / Independent
## 138                    Relative / Friend
## 139              Laborious / Industrious
## 140                              Popular
## 141              Laborious / Industrious
## 142              Laborious / Industrious
## 143                    Relative / Friend
## 144                          Accountable
## 145                              Popular
## 146                     Known / Familiar
## 147                              Popular
## 148              Laborious / Industrious
## 149                           Good/Great
## 150                     Known / Familiar
## 151                     Known / Familiar
## 152                            Behaviour
## 153                            Behaviour
## 154                                 <NA>
## 155                             Kindness
## 156                     Known / Familiar
## 157                    Relative / Friend
## 158                    Relative / Friend
## 159                    Relative / Friend
## 160                            Behaviour
## 161                            Behaviour
## 162                             Kindness
## 163                     Known / Familiar
## 164                             Kindness
## 165                            Behaviour
## 166                            Behaviour
## 167                            Behaviour
## 168                            Behaviour
## 169                            Behaviour
## 170                             Kindness
## 171                            Behaviour
## 172                            Behaviour
## 173                            Behaviour
## 174                            Behaviour
## 175                            Behaviour
## 176                    Relative / Friend
## 177                            Behaviour
## 178                            Behaviour
## 179                            Behaviour
## 180                            Behaviour
## 181                            Behaviour
## 182                            Behaviour
## 183                                 <NA>
## 184                            Behaviour
## 185                            Behaviour
## 186                            Behaviour
## 187                            Behaviour
## 188                                 <NA>
## 189                             Kindness
## 190                            Behaviour
## 191                            Behaviour
## 192                            Behaviour
## 193                            Behaviour
## 194                            Behaviour
## 195                            Behaviour
## 196                            Behaviour
## 197                            Behaviour
## 198                            Behaviour
## 199                            Behaviour
## 200                            Behaviour
## 201                               Honest
## 202                            Practical
## 203                               Honest
## 204                            Practical
## 205                Helpful / Cooperative
## 206                               Honest
## 207                            Practical
## 208                           Benevolent
## 209                           Benevolent
## 210                          Transparent
## 211                 Idealastic / ethical
## 212                 Idealastic / ethical
## 213                               Honest
## 214                 Idealastic / ethical
## 215                            Behaviour
## 216                            Religious
## 217                               Honest
## 218                         Truthfulness
## 219                            Practical
## 220                               Honest
## 221                          Transparent
## 222                  Educated / Academic
## 223                               Honest
## 224                          Transparent
## 225                               Honest
## 226                            Practical
## 227                         Truthfulness
## 228                            Religious
## 229                               Honest
## 230                               Honest
## 231                 Idealastic / ethical
## 232                         Truthfulness
## 233                               Honest
## 234                         Truthfulness
## 235                           Good/Great
## 236                Helpful / Cooperative
## 237                Helpful / Cooperative
## 238                    Relative / Friend
## 239                Helpful / Cooperative
## 240                           Benevolent
## 241                               Honest
## 242                            Religious
## 243                 Idealastic / ethical
## 244                Helpful / Cooperative
## 245                         Truthfulness
## 246                               Honest
## 247                Helpful / Cooperative
## 248                          Responsible
## 249                    Relative / Friend
## 250                            Practical
## 251                             Kindness
## 252                           Good/Great
## 253                     Known / Familiar
## 254                                 <NA>
## 255                    Relative / Friend
## 256                            Behaviour
## 257                    Relative / Friend
## 258                             Kindness
## 259                               Honest
## 260                    Relative / Friend
## 261                                 <NA>
## 262                               Honest
## 263                            Behaviour
## 264                           Benevolent
## 265                     Known / Familiar
## 266                  Educated / Academic
## 267                               Social
## 268                     Known / Familiar
## 269                            Behaviour
## 270                             Kindness
## 271                               Honest
## 272                               Honest
## 273                     Known / Familiar
## 274                            Behaviour
## 275                            Behaviour
## 276                                 <NA>
## 277                         Truthfulness
## 278                                 <NA>
## 279                           Good/Great
## 280                            Behaviour
## 281                                 <NA>
## 282                            Behaviour
## 283                            Behaviour
## 284                    Relative / Friend
## 285                            Behaviour
## 286                            Behaviour
## 287                     Known / Familiar
## 288                                 <NA>
## 289                                 <NA>
## 290                            Behaviour
## 291                     Known / Familiar
## 292                     Known / Familiar
## 293                            Behaviour
## 294                     Known / Familiar
## 295                    Relative / Friend
## 296                               Honest
## 297                     Known / Familiar
## 298                             Kindness
## 299                         Truthfulness
## 300                    Relative / Friend
## 302                            Practical
## 303                             Kindness
## 304                          Responsible
## 305                            Practical
## 306                         Truthfulness
## 307                               Honest
## 308                                 <NA>
## 309                                 <NA>
## 310                            Behaviour
## 311                                 <NA>
## 312                            Behaviour
## 313                         Truthfulness
## 314                                 <NA>
## 315                                 <NA>
## 316                                 <NA>
## 317                            Behaviour
## 318                            Religious
## 319                            Behaviour
## 320                               Honest
## 321                               Honest
## 322                                 <NA>
## 323                                 <NA>
## 324                                 <NA>
## 325                                 <NA>
## 326              Laborious / Industrious
## 327                               Honest
## 328                               Honest
## 329                              Justice
## 330                            Religious
## 331                                 <NA>
## 332                                 <NA>
## 333                                 <NA>
## 334                                 <NA>
## 335                               Honest
## 336                            Behaviour
## 337                                 <NA>
## 338                                 <NA>
## 339                             Kindness
## 340                         Truthfulness
## 341                                 <NA>
## 342                                 <NA>
## 343                                 <NA>
## 344                                Other
## 345                                 <NA>
## 346                                 <NA>
## 347                            Behaviour
## 348                                 <NA>
## 349                         Truthfulness
## 350                                Other
## 351                                Other
## 352                                 <NA>
## 353                                 <NA>
## 354                                 <NA>
## 355                                 <NA>
## 356                                 <NA>
## 357                               Social
## 358                                 <NA>
## 359                                 <NA>
## 360                                 <NA>
## 361                            Religious
## 362                               Social
## 363                  Educated / Academic
## 364                                 <NA>
## 365                                 <NA>
## 366                                 <NA>
## 367                                 <NA>
## 368                                 <NA>
## 369                                 <NA>
## 370                            Religious
## 371                                 <NA>
## 372                                 <NA>
## 373                            Religious
## 374                            Religious
## 375                                 <NA>
## 376                               Honest
## 377                                 <NA>
## 378                                 <NA>
## 379                                 <NA>
## 380                                 <NA>
## 381                                 <NA>
## 382                           Good/Great
## 383                            Religious
## 384                                 <NA>
## 385                                 <NA>
## 386                                 <NA>
## 387                                 <NA>
## 388                                 <NA>
## 389                                 <NA>
## 390                            Religious
## 391                                 <NA>
## 392                                 <NA>
## 393                                 <NA>
## 394                               Social
## 395                               Social
## 396                                 <NA>
## 397                                 <NA>
## 398                                 <NA>
## 399                                 <NA>
## 400                                 <NA>
## 401                                 <NA>
## 402                                Other
## 403                                Other
## 404                                 <NA>
## 405                                 <NA>
## 406                                Other
## 407                                Other
## 408                                Other
## 409                               Honest
## 410                               Honest
## 411                                Other
## 412                                Other
## 413                                Other
## 414                                Other
## 415                           Don't Know
## 416                                 <NA>
## 417                                 <NA>
## 418                                Other
## 419                Helpful / Cooperative
## 420                                Other
## 421                Helpful / Cooperative
## 422                                 <NA>
## 423                                 <NA>
## 424                                 <NA>
## 425                                 <NA>
## 426                Helpful / Cooperative
## 427                                Other
## 428                                 <NA>
## 429                                 <NA>
## 430                                 <NA>
## 431                Helpful / Cooperative
## 432                                 <NA>
## 433                Helpful / Cooperative
## 434                                 <NA>
## 435                Helpful / Cooperative
## 436                                 <NA>
## 437                Helpful / Cooperative
## 438                               Honest
## 439                                Other
## 440                                 <NA>
## 441                Helpful / Cooperative
## 442                                 <NA>
## 443                                 <NA>
## 444                                Other
## 445                Helpful / Cooperative
## 446                                Other
## 447                                Other
## 448                                 <NA>
## 449                                Other
## 450                                 <NA>
## 451                                 <NA>
## 452                                 <NA>
## 453                               Honest
## 454                         Truthfulness
## 455                            Practical
## 456                          Accountable
## 457                               Honest
## 458                            Efficient
## 459                         Truthfulness
## 460                            Practical
## 461                               Honest
## 462                               Honest
## 463                 Idealastic / ethical
## 464                                 <NA>
## 465                               Honest
## 466                            Behaviour
## 467                         Truthfulness
## 468                               Honest
## 469                            Practical
## 470              Laborious / Industrious
## 471                            Efficient
## 472                             Kindness
## 473                Helpful / Cooperative
## 474                               Honest
## 475                          Responsible
## 476                Helpful / Cooperative
## 477                Helpful / Cooperative
## 478                 Idealastic / ethical
## 479              Laborious / Industrious
## 480                               Honest
## 481                               Honest
## 482                              Popular
## 483                            Behaviour
## 484                            Practical
## 485                            Behaviour
## 486                            Efficient
## 487                 Idealastic / ethical
## 488                            Behaviour
## 489                            Efficient
## 490              Laborious / Industrious
## 491                            Behaviour
## 492                  Educated / Academic
## 493              Laborious / Industrious
## 494                            Efficient
## 495                               Social
## 496                              Justice
##      Trustworthy.Person.Characteristic.3
## 1                                 Honest
## 2                                   <NA>
## 3                                Liberal
## 4                  Helpful / Cooperative
## 5                              Practical
## 6                              Patriotic
## 7                    Educated / Academic
## 8                             Benevolent
## 9                                 Honest
## 10                             Behaviour
## 11                   Educated / Academic
## 12                                  <NA>
## 13                     Relative / Friend
## 14                   Educated / Academic
## 15                                Honest
## 16                          Truthfulness
## 17                                  <NA>
## 18                   Educated / Academic
## 19                                Honest
## 20                             Behaviour
## 21                                  <NA>
## 22                                Honest
## 23                            Benevolent
## 24                              Kindness
## 25                                  <NA>
## 26                                  <NA>
## 27                                  <NA>
## 28                                  <NA>
## 29                                  <NA>
## 30                             Efficient
## 31                                  <NA>
## 32                                  <NA>
## 33                                  <NA>
## 34                                Honest
## 35                          Truthfulness
## 36                      Known / Familiar
## 37                                Honest
## 38                             Efficient
## 39                                  <NA>
## 40                                  <NA>
## 41                                  <NA>
## 42                                  <NA>
## 43                                Honest
## 44                    Rich / Independent
## 45                                Honest
## 46                     Relative / Friend
## 47                             Efficient
## 48                 Helpful / Cooperative
## 49                             Efficient
## 50                             Practical
## 51                                  <NA>
## 52                                  <NA>
## 53                           Accountable
## 54                            Good/Great
## 55                   Educated / Academic
## 56                                  <NA>
## 57                              Kindness
## 58                                  <NA>
## 59                                  <NA>
## 60                 Helpful / Cooperative
## 61                            Good/Great
## 62                             Behaviour
## 63                            Good/Great
## 64                             Practical
## 65                   Educated / Academic
## 66                       Corruption Free
## 67                 Helpful / Cooperative
## 68                   Constitutional Body
## 69                                Honest
## 70                   Constitutional Body
## 71                 Helpful / Cooperative
## 72                            Good/Great
## 73                            Good/Great
## 74                             Behaviour
## 75                            Good/Great
## 76                             Behaviour
## 77                             Behaviour
## 78                            Good/Great
## 79                                  <NA>
## 80                             Behaviour
## 81                             Behaviour
## 82                   Educated / Academic
## 83                 Helpful / Cooperative
## 84                   Educated / Academic
## 85                   Educated / Academic
## 86                 Helpful / Cooperative
## 87                 Helpful / Cooperative
## 88                       Corruption Free
## 89                            Good/Great
## 90                            Good/Great
## 91                             Practical
## 92                            Good/Great
## 93                             Practical
## 94                                Honest
## 95                            Good/Great
## 96                 Helpful / Cooperative
## 97                 Helpful / Cooperative
## 98                             Behaviour
## 99                   Educated / Academic
## 100                Helpful / Cooperative
## 101                            Behaviour
## 102                    Relative / Friend
## 103                Helpful / Cooperative
## 104                     Known / Familiar
## 105                     Known / Familiar
## 106                     Known / Familiar
## 107                     Known / Familiar
## 108                      Power deligator
## 109                              Popular
## 110              Laborious / Industrious
## 111                                 <NA>
## 112                    Relative / Friend
## 113                     Known / Familiar
## 114                            Behaviour
## 115                  Constitutional Body
## 116                    Relative / Friend
## 117                  Constitutional Body
## 118              Laborious / Industrious
## 119                      Power deligator
## 120                            Behaviour
## 121                    Relative / Friend
## 122                    Relative / Friend
## 123                            Behaviour
## 124                            Behaviour
## 125              Laborious / Industrious
## 126                            Practical
## 127                             Kindness
## 128                   Rich / Independent
## 129                          Responsible
## 130              Laborious / Industrious
## 131                              Logical
## 132                    Relative / Friend
## 133                            Religious
## 134                    Relative / Friend
## 135                            Behaviour
## 136                                 <NA>
## 137                  Educated / Academic
## 138                            Behaviour
## 139                     Known / Familiar
## 140                           Good/Great
## 141                          Accountable
## 142                   Rich / Independent
## 143              Laborious / Industrious
## 144              Laborious / Industrious
## 145                            Behaviour
## 146                    Relative / Friend
## 147                           Leadership
## 148                    Relative / Friend
## 149                      Corruption Free
## 150                    Relative / Friend
## 151                                 <NA>
## 152                    Relative / Friend
## 153                    Relative / Friend
## 154                                 <NA>
## 155                     Known / Familiar
## 156                                 <NA>
## 157                                 <NA>
## 158                             Kindness
## 159                            Behaviour
## 160                                 <NA>
## 161                    Relative / Friend
## 162                            Behaviour
## 163                                 <NA>
## 164                            Behaviour
## 165                            Behaviour
## 166                            Behaviour
## 167                    Relative / Friend
## 168                                 <NA>
## 169                            Behaviour
## 170                                 <NA>
## 171                            Behaviour
## 172                             Kindness
## 173                    Relative / Friend
## 174                            Behaviour
## 175                             Kindness
## 176                                 <NA>
## 177                             Kindness
## 178              Laborious / Industrious
## 179                                 <NA>
## 180                                 <NA>
## 181                                 <NA>
## 182                             Kindness
## 183                                 <NA>
## 184                            Behaviour
## 185                                 <NA>
## 186                            Behaviour
## 187                             Kindness
## 188                                 <NA>
## 189                                 <NA>
## 190                             Kindness
## 191                             Kindness
## 192                                 <NA>
## 193                            Behaviour
## 194                                 <NA>
## 195                                 <NA>
## 196                                 <NA>
## 197                                 <NA>
## 198                                 <NA>
## 199                            Behaviour
## 200                            Behaviour
## 201                            Practical
## 202                            Religious
## 203                            Religious
## 204                               Honest
## 205                            Religious
## 206                              Popular
## 207                         Truthfulness
## 208                            Religious
## 209                Helpful / Cooperative
## 210                            Religious
## 211                               Honest
## 212                Helpful / Cooperative
## 213                Helpful / Cooperative
## 214                    Relative / Friend
## 215                               Honest
## 216                           Benevolent
## 217                 Idealastic / ethical
## 218                              Justice
## 219                              Liberal
## 220                         Truthfulness
## 221                    Relative / Friend
## 222                      Corruption Free
## 223                            Behaviour
## 224                            Practical
## 225                 Idealastic / ethical
## 226                            Behaviour
## 227                            Religious
## 228                            Practical
## 229                  Educated / Academic
## 230                           Benevolent
## 231                      Corruption Free
## 232                              Liberal
## 233                 Idealastic / ethical
## 234                               Honest
## 235              Laborious / Industrious
## 236                          Responsible
## 237                            Practical
## 238                           Benevolent
## 239                               Honest
## 240                               Honest
## 241                           Benevolent
## 242                               Honest
## 243                               Honest
## 244                           Benevolent
## 245                 Idealastic / ethical
## 246                Helpful / Cooperative
## 247                 Idealastic / ethical
## 248                  Educated / Academic
## 249                  Educated / Academic
## 250                               Honest
## 251                           Good/Great
## 252                    Relative / Friend
## 253                            Behaviour
## 254                                 <NA>
## 255                     Known / Familiar
## 256                               Honest
## 257                             Kindness
## 258                            Behaviour
## 259                            Behaviour
## 260                  Educated / Academic
## 261                                 <NA>
## 262                               Honest
## 263                                 <NA>
## 264                               Social
## 265                     Known / Familiar
## 266                             Kindness
## 267                 Idealastic / ethical
## 268                                Other
## 269                            Behaviour
## 270                             Kindness
## 271                     Known / Familiar
## 272                    Relative / Friend
## 273                 Idealastic / ethical
## 274                         Truthfulness
## 275                               Honest
## 276                                 <NA>
## 277                     Known / Familiar
## 278                                 <NA>
## 279                  Educated / Academic
## 280                             Kindness
## 281                                 <NA>
## 282                  Educated / Academic
## 283                     Service Delivery
## 284                    Relative / Friend
## 285                               Honest
## 286                               Honest
## 287                            Behaviour
## 288                     Known / Familiar
## 289                               Honest
## 290                     Known / Familiar
## 291                               Honest
## 292                                 <NA>
## 293                            Behaviour
## 294                            Behaviour
## 295                                 <NA>
## 296                    Relative / Friend
## 297                                 <NA>
## 298                 Idealastic / ethical
## 299                     Known / Familiar
## 300                     Known / Familiar
## 302                          Responsible
## 303                              Logical
## 304                              Justice
## 305                               Honest
## 306                                 <NA>
## 307                            Behaviour
## 308                                 <NA>
## 309                                 <NA>
## 310              Laborious / Industrious
## 311                                 <NA>
## 312                                 <NA>
## 313                             Kindness
## 314                                 <NA>
## 315                                 <NA>
## 316                                 <NA>
## 317                                 <NA>
## 318                           Good/Great
## 319                                Other
## 320                                Other
## 321                                Other
## 322                                 <NA>
## 323                                 <NA>
## 324                                 <NA>
## 325                                 <NA>
## 326                                 <NA>
## 327                Helpful / Cooperative
## 328                                 <NA>
## 329                      Corruption Free
## 330              Laborious / Industrious
## 331                                 <NA>
## 332                                 <NA>
## 333                                 <NA>
## 334                                 <NA>
## 335                                 <NA>
## 336                                Other
## 337                                 <NA>
## 338                                 <NA>
## 339                Helpful / Cooperative
## 340                                 <NA>
## 341                                 <NA>
## 342                                 <NA>
## 343                                 <NA>
## 344                               Social
## 345                                 <NA>
## 346                                 <NA>
## 347                           Benevolent
## 348                                 <NA>
## 349                               Honest
## 350                                 <NA>
## 351                                 <NA>
## 352                                 <NA>
## 353                                 <NA>
## 354                                 <NA>
## 355                                 <NA>
## 356                                 <NA>
## 357                                 <NA>
## 358                                 <NA>
## 359                                 <NA>
## 360                                 <NA>
## 361                                 <NA>
## 362                            Religious
## 363                                 <NA>
## 364                                 <NA>
## 365                                 <NA>
## 366                                 <NA>
## 367                                 <NA>
## 368                                 <NA>
## 369                                 <NA>
## 370                  Educated / Academic
## 371                                 <NA>
## 372                                 <NA>
## 373                                 <NA>
## 374                               Honest
## 375                                 <NA>
## 376                                 <NA>
## 377                                 <NA>
## 378                                 <NA>
## 379                                 <NA>
## 380                                 <NA>
## 381                                 <NA>
## 382                                 <NA>
## 383                                 <NA>
## 384                                 <NA>
## 385                                 <NA>
## 386                                 <NA>
## 387                                 <NA>
## 388                                 <NA>
## 389                                 <NA>
## 390                          Responsible
## 391                                 <NA>
## 392                                 <NA>
## 393                                 <NA>
## 394                                 <NA>
## 395                                 <NA>
## 396                                 <NA>
## 397                                 <NA>
## 398                                 <NA>
## 399                                 <NA>
## 400                                 <NA>
## 401                                 <NA>
## 402                                Other
## 403                                Other
## 404                                 <NA>
## 405                                 <NA>
## 406                                Other
## 407                                Other
## 408                               Honest
## 409                                Other
## 410                                Other
## 411                                Other
## 412                Helpful / Cooperative
## 413                                Other
## 414                                Other
## 415                           Don't Know
## 416                                 <NA>
## 417                                 <NA>
## 418                Helpful / Cooperative
## 419                                Other
## 420                Helpful / Cooperative
## 421                                Other
## 422                                 <NA>
## 423                                 <NA>
## 424                                 <NA>
## 425                                 <NA>
## 426                                Other
## 427                                Other
## 428                                 <NA>
## 429                                 <NA>
## 430                                 <NA>
## 431                Helpful / Cooperative
## 432                                 <NA>
## 433                                Other
## 434                                 <NA>
## 435                                Other
## 436                                 <NA>
## 437                                Other
## 438                Helpful / Cooperative
## 439                                Other
## 440                                 <NA>
## 441                                Other
## 442                                 <NA>
## 443                                 <NA>
## 444                Helpful / Cooperative
## 445                                Other
## 446                Helpful / Cooperative
## 447                                Other
## 448                                 <NA>
## 449                Helpful / Cooperative
## 450                                 <NA>
## 451                                 <NA>
## 452                                 <NA>
## 453                Helpful / Cooperative
## 454                             Kindness
## 455                             Kindness
## 456                               Honest
## 457                 Idealastic / ethical
## 458                               Honest
## 459                               Honest
## 460                                 <NA>
## 461                 Idealastic / ethical
## 462                  Educated / Academic
## 463                                 <NA>
## 464                                 <NA>
## 465                             Kindness
## 466              Laborious / Industrious
## 467                                 <NA>
## 468                                 <NA>
## 469                                 <NA>
## 470                            Behaviour
## 471                            Behaviour
## 472                Helpful / Cooperative
## 473                            Practical
## 474                 Idealastic / ethical
## 475                             Kindness
## 476                      Corruption Free
## 477                                 <NA>
## 478                               Honest
## 479                               Honest
## 480                         Truthfulness
## 481                 Idealastic / ethical
## 482                                 <NA>
## 483                                 <NA>
## 484                                 <NA>
## 485                          Transparent
## 486                         Truthfulness
## 487                  Educated / Academic
## 488                            Efficient
## 489                            Behaviour
## 490                                 <NA>
## 491                                 <NA>
## 492                                 <NA>
## 493                  Educated / Academic
## 494                     Service Delivery
## 495                    Relative / Friend
## 496                                 <NA>
##      Trustworthy.Person.Characteristic.4
## 1                                   <NA>
## 2                                   <NA>
## 3                                   <NA>
## 4                                   <NA>
## 5                                   <NA>
## 6                                   <NA>
## 7                             Benevolent
## 8                                   <NA>
## 9                              Efficient
## 10                                  <NA>
## 11                                  <NA>
## 12                                  <NA>
## 13                                  <NA>
## 14                            Leadership
## 15                                  <NA>
## 16                                  <NA>
## 17                                  <NA>
## 18                                  <NA>
## 19                                  <NA>
## 20                                  <NA>
## 21                                  <NA>
## 22                             Efficient
## 23                                  <NA>
## 24                                  <NA>
## 25                                  <NA>
## 26                                  <NA>
## 27                                  <NA>
## 28                                  <NA>
## 29                                  <NA>
## 30                                  <NA>
## 31                                  <NA>
## 32                                  <NA>
## 33                                  <NA>
## 34                                  <NA>
## 35                                  <NA>
## 36                                  <NA>
## 37                               Neutral
## 38                                  <NA>
## 39                                  <NA>
## 40                                  <NA>
## 41                                  <NA>
## 42                                  <NA>
## 43                                  <NA>
## 44                                Honest
## 45                   Educated / Academic
## 46                                  <NA>
## 47                                 Other
## 48                                Honest
## 49                 Helpful / Cooperative
## 50                             Behaviour
## 51                                  <NA>
## 52                                  <NA>
## 53                                  <NA>
## 54                   Educated / Academic
## 55                      Known / Familiar
## 56                                  <NA>
## 57                                  <NA>
## 58                                  <NA>
## 59                                  <NA>
## 60                                  <NA>
## 61                   Educated / Academic
## 62                                  <NA>
## 63                 Helpful / Cooperative
## 64                                  <NA>
## 65                                  <NA>
## 66                                  <NA>
## 67                                  <NA>
## 68                   Educated / Academic
## 69                                  <NA>
## 70                                Honest
## 71                                  <NA>
## 72                       Corruption Free
## 73                   Educated / Academic
## 74                                  <NA>
## 75                                  <NA>
## 76                                  <NA>
## 77                   Educated / Academic
## 78                   Educated / Academic
## 79                                  <NA>
## 80                                  <NA>
## 81                            Good/Great
## 82                                  <NA>
## 83                          Truthfulness
## 84                                  <NA>
## 85                                  <NA>
## 86                                  <NA>
## 87                                  <NA>
## 88                                  <NA>
## 89                            Good/Great
## 90                                  <NA>
## 91                   Educated / Academic
## 92                            Good/Great
## 93                                  <NA>
## 94                   Educated / Academic
## 95                   Educated / Academic
## 96                   Educated / Academic
## 97                   Educated / Academic
## 98                   Educated / Academic
## 99                      Known / Familiar
## 100                  Educated / Academic
## 101                                 <NA>
## 102                     Known / Familiar
## 103                          Transparent
## 104                                 <NA>
## 105                                 <NA>
## 106                                 <NA>
## 107                                 <NA>
## 108                              Logical
## 109                                 <NA>
## 110                                 <NA>
## 111                                 <NA>
## 112                                 <NA>
## 113                                 <NA>
## 114                                 <NA>
## 115                                 <NA>
## 116                                 <NA>
## 117                                 <NA>
## 118                                 <NA>
## 119                                 <NA>
## 120                                 <NA>
## 121                                 <NA>
## 122                                 <NA>
## 123              Laborious / Industrious
## 124                                 <NA>
## 125                    Relative / Friend
## 126                     Known / Familiar
## 127                                 <NA>
## 128                  Educated / Academic
## 129                                 <NA>
## 130                    Relative / Friend
## 131                                 <NA>
## 132                            Behaviour
## 133                           Leadership
## 134                           Good/Great
## 135                                 <NA>
## 136                                 <NA>
## 137                           Leadership
## 138                                 <NA>
## 139                               Social
## 140              Laborious / Industrious
## 141                                 <NA>
## 142                   Rich / Independent
## 143              Laborious / Industrious
## 144                   Rich / Independent
## 145              Laborious / Industrious
## 146                            Behaviour
## 147                    Relative / Friend
## 148                  Constitutional Body
## 149                             Kindness
## 150                            Practical
## 151                                 <NA>
## 152                                 <NA>
## 153                                 <NA>
## 154                                 <NA>
## 155                                 <NA>
## 156                                 <NA>
## 157                                 <NA>
## 158                                 <NA>
## 159                                 <NA>
## 160                                 <NA>
## 161                                 <NA>
## 162                                 <NA>
## 163                                 <NA>
## 164                                 <NA>
## 165                                 <NA>
## 166                                 <NA>
## 167                                 <NA>
## 168                                 <NA>
## 169                                 <NA>
## 170                                 <NA>
## 171                                 <NA>
## 172                                 <NA>
## 173                                 <NA>
## 174                                 <NA>
## 175                                 <NA>
## 176                                 <NA>
## 177                                 <NA>
## 178                                 <NA>
## 179                                 <NA>
## 180                                 <NA>
## 181                                 <NA>
## 182                                 <NA>
## 183                                 <NA>
## 184                                 <NA>
## 185                                 <NA>
## 186                                 <NA>
## 187                                 <NA>
## 188                                 <NA>
## 189                                 <NA>
## 190                                 <NA>
## 191                                 <NA>
## 192                                 <NA>
## 193                                 <NA>
## 194                                 <NA>
## 195                                 <NA>
## 196                                 <NA>
## 197                                 <NA>
## 198                                 <NA>
## 199                                 <NA>
## 200                                 <NA>
## 201                                 <NA>
## 202                              Liberal
## 203                                 <NA>
## 204                    Relative / Friend
## 205                      Corruption Free
## 206                                 <NA>
## 207                            Patriotic
## 208                                 <NA>
## 209                 Idealastic / ethical
## 210                            Practical
## 211                Helpful / Cooperative
## 212                            Efficient
## 213                            Behaviour
## 214                               Honest
## 215                Helpful / Cooperative
## 216                            Behaviour
## 217                            Behaviour
## 218                                 <NA>
## 219                                 <NA>
## 220                                 <NA>
## 221                    Relative / Friend
## 222                                 <NA>
## 223                            Religious
## 224                         Truthfulness
## 225                                 <NA>
## 226                                 <NA>
## 227                                 <NA>
## 228                                 <NA>
## 229                                 <NA>
## 230                                 <NA>
## 231                                 <NA>
## 232                                 <NA>
## 233                                 <NA>
## 234                                 <NA>
## 235                           Benevolent
## 236                                 <NA>
## 237                                 <NA>
## 238                               Honest
## 239                                 <NA>
## 240                                 <NA>
## 241                         Truthfulness
## 242                            Practical
## 243                                 <NA>
## 244                 Idealastic / ethical
## 245                                 <NA>
## 246                           Benevolent
## 247                                 <NA>
## 248                                 <NA>
## 249                                 <NA>
## 250                                 <NA>
## 251                            Behaviour
## 252                    Relative / Friend
## 253                            Behaviour
## 254              Laborious / Industrious
## 255                                 <NA>
## 256                 Idealastic / ethical
## 257                                 <NA>
## 258                                 <NA>
## 259                            Behaviour
## 260                            Behaviour
## 261                            Behaviour
## 262                                 <NA>
## 263                                 <NA>
## 264                 Idealastic / ethical
## 265                                 <NA>
## 266                              Liberal
## 267                           Good/Great
## 268                               Honest
## 269                            Behaviour
## 270                             Kindness
## 271                                 <NA>
## 272                                 <NA>
## 273                               Social
## 274                            Practical
## 275                                 <NA>
## 276                                 <NA>
## 277                                 <NA>
## 278                                 <NA>
## 279                    Relative / Friend
## 280                  Educated / Academic
## 281                                 <NA>
## 282                                 <NA>
## 283                     Service Delivery
## 284                Helpful / Cooperative
## 285                  Educated / Academic
## 286                               Honest
## 287                               Honest
## 288                                 <NA>
## 289                            Behaviour
## 290                                 <NA>
## 291                    Relative / Friend
## 292                            Behaviour
## 293                                 <NA>
## 294                            Behaviour
## 295                                 <NA>
## 296                                 <NA>
## 297                            Behaviour
## 298                                 <NA>
## 299                                 <NA>
## 300                                 <NA>
## 302                                 <NA>
## 303                         Truthfulness
## 304                                 <NA>
## 305                                 <NA>
## 306                                 <NA>
## 307                           Benevolent
## 308                                 <NA>
## 309                                 <NA>
## 310                                 <NA>
## 311                                 <NA>
## 312                                 <NA>
## 313                                 <NA>
## 314                                 <NA>
## 315                                 <NA>
## 316                                 <NA>
## 317                                 <NA>
## 318                               Honest
## 319                                 <NA>
## 320                         Truthfulness
## 321                 Idealastic / ethical
## 322                                 <NA>
## 323                                 <NA>
## 324                                 <NA>
## 325                                 <NA>
## 326                                 <NA>
## 327                            Religious
## 328                                 <NA>
## 329                                 <NA>
## 330                                Other
## 331                                 <NA>
## 332                                 <NA>
## 333                                 <NA>
## 334                                 <NA>
## 335                                 <NA>
## 336                                 <NA>
## 337                                 <NA>
## 338                                 <NA>
## 339                                 <NA>
## 340                                 <NA>
## 341                                 <NA>
## 342                                 <NA>
## 343                                 <NA>
## 344                                 <NA>
## 345                                 <NA>
## 346                                 <NA>
## 347                                 <NA>
## 348                                 <NA>
## 349                            Efficient
## 350                                 <NA>
## 351                                 <NA>
## 352                                 <NA>
## 353                                 <NA>
## 354                                 <NA>
## 355                                 <NA>
## 356                                 <NA>
## 357                                 <NA>
## 358                                 <NA>
## 359                                 <NA>
## 360                                 <NA>
## 361                                 <NA>
## 362                                 <NA>
## 363                                 <NA>
## 364                                 <NA>
## 365                                 <NA>
## 366                                 <NA>
## 367                                 <NA>
## 368                                 <NA>
## 369                                 <NA>
## 370                                 <NA>
## 371                                 <NA>
## 372                                 <NA>
## 373                                 <NA>
## 374                                 <NA>
## 375                                 <NA>
## 376                                 <NA>
## 377                                 <NA>
## 378                                 <NA>
## 379                                 <NA>
## 380                                 <NA>
## 381                                 <NA>
## 382                                 <NA>
## 383                                 <NA>
## 384                                 <NA>
## 385                                 <NA>
## 386                                 <NA>
## 387                                 <NA>
## 388                                 <NA>
## 389                                 <NA>
## 390                                 <NA>
## 391                                 <NA>
## 392                                 <NA>
## 393                                 <NA>
## 394                                 <NA>
## 395                                 <NA>
## 396                                 <NA>
## 397                                 <NA>
## 398                                 <NA>
## 399                                 <NA>
## 400                                 <NA>
## 401                                 <NA>
## 402                                 <NA>
## 403                                 <NA>
## 404                                 <NA>
## 405                                 <NA>
## 406                                 <NA>
## 407                                 <NA>
## 408                                Other
## 409                                 <NA>
## 410                                 <NA>
## 411                Helpful / Cooperative
## 412                                Other
## 413                Helpful / Cooperative
## 414                                 <NA>
## 415                           Don't Know
## 416                                 <NA>
## 417                                 <NA>
## 418                                 <NA>
## 419                Helpful / Cooperative
## 420                                 <NA>
## 421                                 <NA>
## 422                                 <NA>
## 423                                 <NA>
## 424                                 <NA>
## 425                                 <NA>
## 426                                Other
## 427                Helpful / Cooperative
## 428                                 <NA>
## 429                                 <NA>
## 430                                 <NA>
## 431                                Other
## 432                                 <NA>
## 433                                 <NA>
## 434                                 <NA>
## 435                                Other
## 436                                 <NA>
## 437                                 <NA>
## 438                                 <NA>
## 439                Helpful / Cooperative
## 440                                 <NA>
## 441                                 <NA>
## 442                                 <NA>
## 443                                 <NA>
## 444                                 <NA>
## 445                                 <NA>
## 446                                Other
## 447                Helpful / Cooperative
## 448                                 <NA>
## 449                                 <NA>
## 450                                 <NA>
## 451                                 <NA>
## 452                                 <NA>
## 453                                 <NA>
## 454                 Idealastic / ethical
## 455                      Corruption Free
## 456                 Idealastic / ethical
## 457                                 <NA>
## 458              Laborious / Industrious
## 459                            Behaviour
## 460                                 <NA>
## 461                      Corruption Free
## 462                                 <NA>
## 463                                 <NA>
## 464                                 <NA>
## 465                                 <NA>
## 466                                 <NA>
## 467                                 <NA>
## 468                                 <NA>
## 469                                 <NA>
## 470                                 <NA>
## 471                                 <NA>
## 472                            Practical
## 473                                 <NA>
## 474                                 <NA>
## 475                                 <NA>
## 476                                 <NA>
## 477                                 <NA>
## 478                            Practical
## 479                            Efficient
## 480                                 <NA>
## 481                                 <NA>
## 482                                 <NA>
## 483                                 <NA>
## 484                                 <NA>
## 485                 Idealastic / ethical
## 486                          Accountable
## 487                                 <NA>
## 488                                 <NA>
## 489                                 <NA>
## 490                                 <NA>
## 491                                 <NA>
## 492                                 <NA>
## 493                                 <NA>
## 494                              Justice
## 495                  Educated / Academic
## 496                                 <NA>
##      Trustworthy.Person.Characteristic.5
## 1                                   <NA>
## 2                                   <NA>
## 3                                   <NA>
## 4                                   <NA>
## 5                                   <NA>
## 6                                   <NA>
## 7                                   <NA>
## 8                                   <NA>
## 9                                   <NA>
## 10                                  <NA>
## 11                                  <NA>
## 12                                  <NA>
## 13                                  <NA>
## 14                       Corruption Free
## 15                                  <NA>
## 16                                  <NA>
## 17                                  <NA>
## 18                                  <NA>
## 19                                  <NA>
## 20                                  <NA>
## 21                                  <NA>
## 22                                  <NA>
## 23                                  <NA>
## 24                                  <NA>
## 25                                  <NA>
## 26                                  <NA>
## 27                                  <NA>
## 28                                  <NA>
## 29                                  <NA>
## 30                                  <NA>
## 31                                  <NA>
## 32                                  <NA>
## 33                                  <NA>
## 34                                  <NA>
## 35                                  <NA>
## 36                                  <NA>
## 37                                  <NA>
## 38                                  <NA>
## 39                                  <NA>
## 40                                  <NA>
## 41                                  <NA>
## 42                                  <NA>
## 43                                  <NA>
## 44                                  <NA>
## 45                                  <NA>
## 46                                  <NA>
## 47                                  <NA>
## 48                             Efficient
## 49                                  <NA>
## 50                                  <NA>
## 51                                  <NA>
## 52                                  <NA>
## 53                                  <NA>
## 54                             Practical
## 55                                  <NA>
## 56                                  <NA>
## 57                                  <NA>
## 58                                  <NA>
## 59                                  <NA>
## 60                                  <NA>
## 61                                  <NA>
## 62                                  <NA>
## 63                                  <NA>
## 64                                  <NA>
## 65                                  <NA>
## 66                                  <NA>
## 67                                  <NA>
## 68                                  <NA>
## 69                                  <NA>
## 70                                  <NA>
## 71                                  <NA>
## 72                                  <NA>
## 73                                  <NA>
## 74                                  <NA>
## 75                                  <NA>
## 76                                  <NA>
## 77                                  <NA>
## 78                                  <NA>
## 79                                  <NA>
## 80                                  <NA>
## 81                   Educated / Academic
## 82                                  <NA>
## 83                      Known / Familiar
## 84                                  <NA>
## 85                                  <NA>
## 86                                  <NA>
## 87                                  <NA>
## 88                                  <NA>
## 89                                  <NA>
## 90                                  <NA>
## 91                            Good/Great
## 92                             Practical
## 93                                  <NA>
## 94                                  <NA>
## 95                                  <NA>
## 96                                  <NA>
## 97                                  <NA>
## 98                                  <NA>
## 99                             Behaviour
## 100                                 <NA>
## 101                                 <NA>
## 102                                 <NA>
## 103                          Accountable
## 104                                 <NA>
## 105                                 <NA>
## 106                                 <NA>
## 107                                 <NA>
## 108                    Relative / Friend
## 109                                 <NA>
## 110                                 <NA>
## 111                                 <NA>
## 112                                 <NA>
## 113                                 <NA>
## 114                                 <NA>
## 115                                 <NA>
## 116                                 <NA>
## 117                                 <NA>
## 118                                 <NA>
## 119                                 <NA>
## 120                                 <NA>
## 121                                 <NA>
## 122                                 <NA>
## 123                                 <NA>
## 124                                 <NA>
## 125                                 <NA>
## 126                                 <NA>
## 127                                 <NA>
## 128                                 <NA>
## 129                                 <NA>
## 130                                 <NA>
## 131                                 <NA>
## 132                                 <NA>
## 133                                 <NA>
## 134                                 <NA>
## 135                                 <NA>
## 136                                 <NA>
## 137                                 <NA>
## 138                                 <NA>
## 139                                 <NA>
## 140                                 <NA>
## 141                                 <NA>
## 142                                 <NA>
## 143                                 <NA>
## 144                                 <NA>
## 145                                 <NA>
## 146                                 <NA>
## 147                                 <NA>
## 148                                 <NA>
## 149                              Liberal
## 150                                 <NA>
## 151                                 <NA>
## 152                                 <NA>
## 153                                 <NA>
## 154                                 <NA>
## 155                                 <NA>
## 156                                 <NA>
## 157                                 <NA>
## 158                                 <NA>
## 159                                 <NA>
## 160                                 <NA>
## 161                                 <NA>
## 162                                 <NA>
## 163                                 <NA>
## 164                                 <NA>
## 165                                 <NA>
## 166                                 <NA>
## 167                                 <NA>
## 168                                 <NA>
## 169                                 <NA>
## 170                                 <NA>
## 171                                 <NA>
## 172                                 <NA>
## 173                                 <NA>
## 174                                 <NA>
## 175                                 <NA>
## 176                                 <NA>
## 177                                 <NA>
## 178                                 <NA>
## 179                                 <NA>
## 180                                 <NA>
## 181                                 <NA>
## 182                                 <NA>
## 183                                 <NA>
## 184                                 <NA>
## 185                                 <NA>
## 186                                 <NA>
## 187                                 <NA>
## 188                                 <NA>
## 189                                 <NA>
## 190                                 <NA>
## 191                                 <NA>
## 192                                 <NA>
## 193                                 <NA>
## 194                                 <NA>
## 195                                 <NA>
## 196                                 <NA>
## 197                                 <NA>
## 198                                 <NA>
## 199                                 <NA>
## 200                                 <NA>
## 201                                 <NA>
## 202                                 <NA>
## 203                                 <NA>
## 204                                 <NA>
## 205                                 <NA>
## 206                                 <NA>
## 207                            Religious
## 208                                 <NA>
## 209                                 <NA>
## 210                                 <NA>
## 211                                 <NA>
## 212                                 <NA>
## 213                                 <NA>
## 214                                 <NA>
## 215                                 <NA>
## 216                                 <NA>
## 217                                 <NA>
## 218                                 <NA>
## 219                                 <NA>
## 220                                 <NA>
## 221                                 <NA>
## 222                                 <NA>
## 223                                 <NA>
## 224                                 <NA>
## 225                                 <NA>
## 226                                 <NA>
## 227                                 <NA>
## 228                                 <NA>
## 229                                 <NA>
## 230                                 <NA>
## 231                                 <NA>
## 232                                 <NA>
## 233                                 <NA>
## 234                                 <NA>
## 235                                 <NA>
## 236                                 <NA>
## 237                                 <NA>
## 238                                 <NA>
## 239                                 <NA>
## 240                                 <NA>
## 241                                 <NA>
## 242                Helpful / Cooperative
## 243                                 <NA>
## 244                                 <NA>
## 245                                 <NA>
## 246                                 <NA>
## 247                                 <NA>
## 248                                 <NA>
## 249                                 <NA>
## 250                                 <NA>
## 251                         Truthfulness
## 252                  Educated / Academic
## 253                                 <NA>
## 254              Laborious / Industrious
## 255                                 <NA>
## 256                               Honest
## 257                                 <NA>
## 258                                 <NA>
## 259                                 <NA>
## 260                                 <NA>
## 261                                 <NA>
## 262                                 <NA>
## 263                                 <NA>
## 264                            Practical
## 265                                 <NA>
## 266                              Liberal
## 267                  Educated / Academic
## 268                                 <NA>
## 269                         Truthfulness
## 270                                 <NA>
## 271                                 <NA>
## 272                                 <NA>
## 273                                 <NA>
## 274                                 <NA>
## 275                                 <NA>
## 276                                 <NA>
## 277                                 <NA>
## 278                                 <NA>
## 279                    Relative / Friend
## 280                               Honest
## 281                                 <NA>
## 282                                 <NA>
## 283                                 <NA>
## 284                           Benevolent
## 285                                 <NA>
## 286                                 <NA>
## 287                               Honest
## 288                                 <NA>
## 289                                 <NA>
## 290                                 <NA>
## 291                                 <NA>
## 292                                 <NA>
## 293                                 <NA>
## 294                                 <NA>
## 295                                 <NA>
## 296                                 <NA>
## 297                                 <NA>
## 298                                 <NA>
## 299                                 <NA>
## 300                                 <NA>
## 302                                 <NA>
## 303                                 <NA>
## 304                                 <NA>
## 305                                 <NA>
## 306                                 <NA>
## 307                                 <NA>
## 308                                 <NA>
## 309                                 <NA>
## 310                                 <NA>
## 311                                 <NA>
## 312                                 <NA>
## 313                                 <NA>
## 314                                 <NA>
## 315                                 <NA>
## 316                                 <NA>
## 317                                 <NA>
## 318                                 <NA>
## 319                                 <NA>
## 320                                 <NA>
## 321                                 <NA>
## 322                                 <NA>
## 323                                 <NA>
## 324                                 <NA>
## 325                                 <NA>
## 326                                 <NA>
## 327                                 <NA>
## 328                                 <NA>
## 329                                 <NA>
## 330                                Other
## 331                                 <NA>
## 332                                 <NA>
## 333                                 <NA>
## 334                                 <NA>
## 335                                 <NA>
## 336                                 <NA>
## 337                                 <NA>
## 338                                 <NA>
## 339                                 <NA>
## 340                                 <NA>
## 341                                 <NA>
## 342                                 <NA>
## 343                                 <NA>
## 344                                 <NA>
## 345                                 <NA>
## 346                                 <NA>
## 347                                 <NA>
## 348                                 <NA>
## 349                                 <NA>
## 350                                 <NA>
## 351                                 <NA>
## 352                                 <NA>
## 353                                 <NA>
## 354                                 <NA>
## 355                                 <NA>
## 356                                 <NA>
## 357                                 <NA>
## 358                                 <NA>
## 359                                 <NA>
## 360                                 <NA>
## 361                                 <NA>
## 362                                 <NA>
## 363                                 <NA>
## 364                                 <NA>
## 365                                 <NA>
## 366                                 <NA>
## 367                                 <NA>
## 368                                 <NA>
## 369                                 <NA>
## 370                                 <NA>
## 371                                 <NA>
## 372                                 <NA>
## 373                                 <NA>
## 374                                 <NA>
## 375                                 <NA>
## 376                                 <NA>
## 377                                 <NA>
## 378                                 <NA>
## 379                                 <NA>
## 380                                 <NA>
## 381                                 <NA>
## 382                                 <NA>
## 383                                 <NA>
## 384                                 <NA>
## 385                                 <NA>
## 386                                 <NA>
## 387                                 <NA>
## 388                                 <NA>
## 389                                 <NA>
## 390                                 <NA>
## 391                                 <NA>
## 392                                 <NA>
## 393                                 <NA>
## 394                                 <NA>
## 395                                 <NA>
## 396                                 <NA>
## 397                                 <NA>
## 398                                 <NA>
## 399                                 <NA>
## 400                                 <NA>
## 401                                 <NA>
## 402                                 <NA>
## 403                                 <NA>
## 404                                 <NA>
## 405                                 <NA>
## 406                                 <NA>
## 407                                 <NA>
## 408                                Other
## 409                                 <NA>
## 410                                 <NA>
## 411                                Other
## 412                Helpful / Cooperative
## 413                                Other
## 414                                 <NA>
## 415                           Don't Know
## 416                                 <NA>
## 417                                 <NA>
## 418                                 <NA>
## 419                                 <NA>
## 420                                 <NA>
## 421                                 <NA>
## 422                                 <NA>
## 423                                 <NA>
## 424                                 <NA>
## 425                                 <NA>
## 426                              Popular
## 427                                 <NA>
## 428                                 <NA>
## 429                                 <NA>
## 430                                 <NA>
## 431                              Popular
## 432                                 <NA>
## 433                                 <NA>
## 434                                 <NA>
## 435                Helpful / Cooperative
## 436                                 <NA>
## 437                                 <NA>
## 438                                 <NA>
## 439                                 <NA>
## 440                                 <NA>
## 441                                 <NA>
## 442                                 <NA>
## 443                                 <NA>
## 444                                 <NA>
## 445                                 <NA>
## 446                              Popular
## 447                              Popular
## 448                                 <NA>
## 449                                 <NA>
## 450                                 <NA>
## 451                                 <NA>
## 452                                 <NA>
## 453                                 <NA>
## 454                      Corruption Free
## 455                                 <NA>
## 456                                 <NA>
## 457                                 <NA>
## 458                                 <NA>
## 459                                 <NA>
## 460                                 <NA>
## 461                                 <NA>
## 462                                 <NA>
## 463                                 <NA>
## 464                                 <NA>
## 465                                 <NA>
## 466                                 <NA>
## 467                                 <NA>
## 468                                 <NA>
## 469                                 <NA>
## 470                                 <NA>
## 471                                 <NA>
## 472                               Honest
## 473                                 <NA>
## 474                                 <NA>
## 475                                 <NA>
## 476                                 <NA>
## 477                                 <NA>
## 478                                 <NA>
## 479                                 <NA>
## 480                                 <NA>
## 481                                 <NA>
## 482                                 <NA>
## 483                                 <NA>
## 484                                 <NA>
## 485                                 <NA>
## 486                                 <NA>
## 487                                 <NA>
## 488                                 <NA>
## 489                                 <NA>
## 490                                 <NA>
## 491                                 <NA>
## 492                                 <NA>
## 493                                 <NA>
## 494                                 <NA>
## 495                                 <NA>
## 496                                 <NA>
##      Trustworthy.institution.Characteristic.1
## 1                                     Neutral
## 2                                  Leadership
## 3                          Rich / Independent
## 4                                        <NA>
## 5                        Idealastic / ethical
## 6                                 Transparent
## 7                                 Transparent
## 8                        Idealastic / ethical
## 9                                   Efficient
## 10                                    Popular
## 11                                     Honest
## 12                           Service Delivery
## 13                                Accountable
## 14                           Service Delivery
## 15                           Service Delivery
## 16                                Accountable
## 17                                       <NA>
## 18                                 Leadership
## 19                           Service Delivery
## 20                                    Neutral
## 21                                       <NA>
## 22                                  Efficient
## 23                            Corruption Free
## 24                                       <NA>
## 25                                     Honest
## 26                    Laborious / Industrious
## 27                                Transparent
## 28                    Laborious / Industrious
## 29                                       <NA>
## 30                                Transparent
## 31                                  Behaviour
## 32                                       <NA>
## 33                                Transparent
## 34                                Transparent
## 35                           Service Delivery
## 36                                Accountable
## 37                                Accountable
## 38                                       <NA>
## 39                                Transparent
## 40                                Transparent
## 41                    Laborious / Industrious
## 42                                Transparent
## 43                                Transparent
## 44                           Service Delivery
## 45                           Service Delivery
## 46                                Transparent
## 47                                    Neutral
## 48                                    Justice
## 49                                    Justice
## 50                           Service Delivery
## 51                           Service Delivery
## 52                                   Security
## 53                               Truthfulness
## 54                               Truthfulness
## 55                       Idealastic / ethical
## 56                       Idealastic / ethical
## 57                           Service Delivery
## 58                                  Behaviour
## 59                                       <NA>
## 60                           Service Delivery
## 61                           Service Delivery
## 62                                    Popular
## 63                                     Honest
## 64                        Constitutional Body
## 65                    Laborious / Industrious
## 66                        Constitutional Body
## 67                        Constitutional Body
## 68                    Laborious / Industrious
## 69                           Service Delivery
## 70                      Helpful / Cooperative
## 71                      Helpful / Cooperative
## 72                        Constitutional Body
## 73                                  Practical
## 74                        Constitutional Body
## 75                                  Practical
## 76                        Constitutional Body
## 77                        Constitutional Body
## 78                      Helpful / Cooperative
## 79                                       <NA>
## 80                                     Honest
## 81                                     Honest
## 82                        Constitutional Body
## 83                    Laborious / Industrious
## 84                       Idealastic / ethical
## 85                                 Benevolent
## 86                                       <NA>
## 87                                       <NA>
## 88                           Service Delivery
## 89                      Helpful / Cooperative
## 90                           Service Delivery
## 91                                     Honest
## 92                                Accountable
## 93                                    Popular
## 94                        Constitutional Body
## 95                        Constitutional Body
## 96                                 Benevolent
## 97                        Constitutional Body
## 98                           Service Delivery
## 99                      Helpful / Cooperative
## 100                                 Efficient
## 101                          Known / Familiar
## 102                         Relative / Friend
## 103                          Known / Familiar
## 104                                 Behaviour
## 105                                 Behaviour
## 106                   Laborious / Industrious
## 107                           Power deligator
## 108                       Constitutional Body
## 109                                 Behaviour
## 110                           Power deligator
## 111                                      <NA>
## 112                                Leadership
## 113                   Laborious / Industrious
## 114                   Laborious / Industrious
## 115                   Laborious / Industrious
## 116                   Laborious / Industrious
## 117                   Laborious / Industrious
## 118                                     Other
## 119                   Laborious / Industrious
## 120                               Responsible
## 121                   Laborious / Industrious
## 122                               Accountable
## 123                   Laborious / Industrious
## 124                   Laborious / Industrious
## 125                               Accountable
## 126                               Accountable
## 127                   Laborious / Industrious
## 128                   Laborious / Industrious
## 129                                 Patriotic
## 130                               Accountable
## 131                                     Other
## 132                              Truthfulness
## 133                   Laborious / Industrious
## 134                                 Behaviour
## 135                   Laborious / Industrious
## 136                                     Other
## 137                         Relative / Friend
## 138                   Laborious / Industrious
## 139                               Accountable
## 140                         Relative / Friend
## 141                                     Other
## 142                               Accountable
## 143                        Rich / Independent
## 144                               Accountable
## 145                               Accountable
## 146                   Laborious / Industrious
## 147                       Constitutional Body
## 148                               Accountable
## 149                   Laborious / Industrious
## 150                                 Patriotic
## 151                         Relative / Friend
## 152                               Transparent
## 153                                 Behaviour
## 154                       Constitutional Body
## 155                               Transparent
## 156                         Relative / Friend
## 157                       Constitutional Body
## 158                         Relative / Friend
## 159                       Constitutional Body
## 160                       Constitutional Body
## 161                               Transparent
## 162                   Laborious / Industrious
## 163                       Constitutional Body
## 164                                      <NA>
## 165                      Idealastic / ethical
## 166                      Idealastic / ethical
## 167                               Transparent
## 168                       Constitutional Body
## 169                       Constitutional Body
## 170                       Constitutional Body
## 171                       Constitutional Body
## 172                       Constitutional Body
## 173                                      <NA>
## 174                                     Other
## 175                       Constitutional Body
## 176                                      <NA>
## 177                         Relative / Friend
## 178                         Relative / Friend
## 179                       Constitutional Body
## 180                       Constitutional Body
## 181                                      <NA>
## 182                                      <NA>
## 183                                      <NA>
## 184                      Idealastic / ethical
## 185                         Relative / Friend
## 186                       Constitutional Body
## 187                      Idealastic / ethical
## 188                                      <NA>
## 189                         Relative / Friend
## 190                      Idealastic / ethical
## 191                      Idealastic / ethical
## 192                          Known / Familiar
## 193                      Idealastic / ethical
## 194                      Idealastic / ethical
## 195                                 Behaviour
## 196                                 Behaviour
## 197                      Idealastic / ethical
## 198                         Relative / Friend
## 199                               Transparent
## 200                      Idealastic / ethical
## 201                   Laborious / Industrious
## 202                                   Liberal
## 203                                    Honest
## 204                                    Honest
## 205                         Relative / Friend
## 206                                    Social
## 207                                 Religious
## 208                     Helpful / Cooperative
## 209                               Transparent
## 210                      Idealastic / ethical
## 211                                 Practical
## 212                               Transparent
## 213                                   Neutral
## 214                                   Justice
## 215                     Helpful / Cooperative
## 216                           Power deligator
## 217                                   Neutral
## 218                      Idealastic / ethical
## 219                              Truthfulness
## 220                      Idealastic / ethical
## 221                               Transparent
## 222                                    Honest
## 223                                 Practical
## 224                               Transparent
## 225                      Idealastic / ethical
## 226                              Truthfulness
## 227                                 Practical
## 228                                    Honest
## 229                                    Honest
## 230                                    Honest
## 231                              Truthfulness
## 232                      Idealastic / ethical
## 233                      Idealastic / ethical
## 234                      Idealastic / ethical
## 235                      Idealastic / ethical
## 236                                   Neutral
## 237                      Idealastic / ethical
## 238                                 Efficient
## 239                      Idealastic / ethical
## 240                                    Honest
## 241                                    Honest
## 242                                    Honest
## 243                      Idealastic / ethical
## 244                     Helpful / Cooperative
## 245                   Laborious / Industrious
## 246                      Idealastic / ethical
## 247                                    Honest
## 248                                Benevolent
## 249                      Idealastic / ethical
## 250                                 Efficient
## 251                          Service Delivery
## 252                          Service Delivery
## 253                          Service Delivery
## 254                                      <NA>
## 255                          Service Delivery
## 256                          Service Delivery
## 257                          Service Delivery
## 258                                Don't Know
## 259                                Don't Know
## 260                          Service Delivery
## 261                                Don't Know
## 262                          Service Delivery
## 263                                      <NA>
## 264                               Accountable
## 265                                      <NA>
## 266                               Accountable
## 267                          Service Delivery
## 268                          Service Delivery
## 269                       Educated / Academic
## 270                                      <NA>
## 271                               Transparent
## 272                          Service Delivery
## 273                          Service Delivery
## 274                       Educated / Academic
## 275                          Service Delivery
## 276                          Known / Familiar
## 277                          Service Delivery
## 278                                      <NA>
## 279                                      <NA>
## 280                          Service Delivery
## 281                                      <NA>
## 282                                      <NA>
## 283                                 Behaviour
## 284                                Benevolent
## 285                          Service Delivery
## 286                          Service Delivery
## 287                          Service Delivery
## 288                          Service Delivery
## 289                          Service Delivery
## 290                          Service Delivery
## 291                                      <NA>
## 292                                      <NA>
## 293                          Service Delivery
## 294                                      <NA>
## 295                                      <NA>
## 296                                      <NA>
## 297                                      <NA>
## 298                                      <NA>
## 299                                      <NA>
## 300                                      <NA>
## 302                               Transparent
## 303                                   Justice
## 304                               Responsible
## 305                                   Justice
## 306                               Accountable
## 307                                      <NA>
## 308                                   Justice
## 309                     Helpful / Cooperative
## 310                               Transparent
## 311                                 Efficient
## 312                                 Behaviour
## 313                                   Justice
## 314                                      <NA>
## 315                   Laborious / Industrious
## 316                                      <NA>
## 317                                    Honest
## 318                                   Justice
## 319                                      <NA>
## 320                   Laborious / Industrious
## 321                                   Liberal
## 322                     Helpful / Cooperative
## 323                                      <NA>
## 324                   Laborious / Industrious
## 325                   Laborious / Industrious
## 326                   Laborious / Industrious
## 327                               Accountable
## 328                                      <NA>
## 329                                      <NA>
## 330                   Laborious / Industrious
## 331                                    Honest
## 332                                    Honest
## 333                                    Honest
## 334                                    Honest
## 335                                      <NA>
## 336                                   Justice
## 337                           Corruption Free
## 338                   Laborious / Industrious
## 339                               Accountable
## 340                                      <NA>
## 341                                   Justice
## 342                                 Efficient
## 343                                      <NA>
## 344                           Corruption Free
## 345                                    Honest
## 346                                   Justice
## 347                                      <NA>
## 348                   Laborious / Industrious
## 349                                    Honest
## 350                                   Justice
## 351                                      <NA>
## 352                                      <NA>
## 353                          Service Delivery
## 354                                      <NA>
## 355                                      <NA>
## 356                                      <NA>
## 357                          Service Delivery
## 358                                      <NA>
## 359                                      <NA>
## 360                                      <NA>
## 361                                      <NA>
## 362                          Service Delivery
## 363                                      <NA>
## 364                                      <NA>
## 365                                      <NA>
## 366                                      <NA>
## 367                                      <NA>
## 368                                      <NA>
## 369                                      <NA>
## 370                          Service Delivery
## 371                                      <NA>
## 372                          Service Delivery
## 373                                      <NA>
## 374                                   Neutral
## 375                                      <NA>
## 376                                      <NA>
## 377                          Service Delivery
## 378                          Service Delivery
## 379                                      <NA>
## 380                                      <NA>
## 381                                      <NA>
## 382                                      <NA>
## 383                   Laborious / Industrious
## 384                                      <NA>
## 385                                      <NA>
## 386                                      <NA>
## 387                           Corruption Free
## 388                                      <NA>
## 389                     Helpful / Cooperative
## 390                                      <NA>
## 391                                      <NA>
## 392                                      <NA>
## 393                                Good/Great
## 394                          Service Delivery
## 395                          Service Delivery
## 396                                      <NA>
## 397                                      <NA>
## 398                                      <NA>
## 399                                      <NA>
## 400                          Service Delivery
## 401                          Service Delivery
## 402                          Service Delivery
## 403                          Service Delivery
## 404                                      <NA>
## 405                                      <NA>
## 406                          Service Delivery
## 407                          Service Delivery
## 408                           Corruption Free
## 409                     Helpful / Cooperative
## 410                          Service Delivery
## 411                          Service Delivery
## 412                          Service Delivery
## 413                          Service Delivery
## 414                                      <NA>
## 415                                Don't Know
## 416                                      <NA>
## 417                                      <NA>
## 418                                      <NA>
## 419                          Service Delivery
## 420                                      <NA>
## 421                          Service Delivery
## 422                                      <NA>
## 423                                      <NA>
## 424                                      <NA>
## 425                                      <NA>
## 426                     Helpful / Cooperative
## 427                     Helpful / Cooperative
## 428                                      <NA>
## 429                                      <NA>
## 430                                      <NA>
## 431                          Service Delivery
## 432                                      <NA>
## 433                          Service Delivery
## 434                                      <NA>
## 435                                      <NA>
## 436                                      <NA>
## 437                                  Security
## 438                                     Other
## 439                          Service Delivery
## 440                                      <NA>
## 441                           Corruption Free
## 442                                      <NA>
## 443                                      <NA>
## 444                          Service Delivery
## 445                          Service Delivery
## 446                          Service Delivery
## 447                          Service Delivery
## 448                                      <NA>
## 449                          Service Delivery
## 450                                      <NA>
## 451                                      <NA>
## 452                                      <NA>
## 453                                      <NA>
## 454                                Leadership
## 455                   Laborious / Industrious
## 456                                    Honest
## 457                                    Honest
## 458                               Accountable
## 459                                    Social
## 460                   Laborious / Industrious
## 461                   Laborious / Industrious
## 462                                   Justice
## 463                                 Behaviour
## 464                           Corruption Free
## 465                          Service Delivery
## 466                               Accountable
## 467                                    Social
## 468                                Leadership
## 469                                    Honest
## 470                   Laborious / Industrious
## 471                                    Honest
## 472                      Idealastic / ethical
## 473                                    Honest
## 474                   Laborious / Industrious
## 475                           Corruption Free
## 476                                 Behaviour
## 477                                 Efficient
## 478                                 Efficient
## 479                                      <NA>
## 480                               Accountable
## 481                   Laborious / Industrious
## 482                   Laborious / Industrious
## 483                                 Efficient
## 484                                 Efficient
## 485                            Troubleshooter
## 486                            Troubleshooter
## 487                                    Honest
## 488                                   Justice
## 489                               Accountable
## 490                           Corruption Free
## 491                                 Behaviour
## 492                                    Honest
## 493                               Transparent
## 494                           Power deligator
## 495                                      <NA>
## 496                                    Honest
##      Trustworthy.institution.Characteristic.2
## 1                                     Neutral
## 2                                      Honest
## 3                                    Kindness
## 4                                        <NA>
## 5                                   Efficient
## 6                                   Efficient
## 7                                 Accountable
## 8                                 Accountable
## 9                                   Patriotic
## 10                                Transparent
## 11                       Idealastic / ethical
## 12                                       <NA>
## 13                                     Honest
## 14                                    Neutral
## 15                                    Neutral
## 16                           Service Delivery
## 17                                       <NA>
## 18                                  Behaviour
## 19                                    Justice
## 20                            Corruption Free
## 21                                       <NA>
## 22                         Rich / Independent
## 23                                    Neutral
## 24                                       <NA>
## 25                                       <NA>
## 26                                       <NA>
## 27                                    Neutral
## 28                                       <NA>
## 29                                       <NA>
## 30                                     Honest
## 31                                     Honest
## 32                                       <NA>
## 33                    Laborious / Industrious
## 34                                Accountable
## 35                           Service Delivery
## 36                                       <NA>
## 37                                Transparent
## 38                                       <NA>
## 39                                Accountable
## 40                    Laborious / Industrious
## 41                                Transparent
## 42                       Idealastic / ethical
## 43                                Accountable
## 44                                    Popular
## 45                                    Neutral
## 46                      Helpful / Cooperative
## 47                                    Liberal
## 48                                    Neutral
## 49                                       <NA>
## 50                                       <NA>
## 51                                       <NA>
## 52                             Troubleshooter
## 53                                  Behaviour
## 54                                 Benevolent
## 55                      Helpful / Cooperative
## 56                                Accountable
## 57                      Helpful / Cooperative
## 58                           Service Delivery
## 59                                       <NA>
## 60                           Service Delivery
## 61                           Known / Familiar
## 62                      Helpful / Cooperative
## 63                           Service Delivery
## 64                      Helpful / Cooperative
## 65                        Constitutional Body
## 66                      Helpful / Cooperative
## 67                           Service Delivery
## 68                            Corruption Free
## 69                                   Kindness
## 70                           Service Delivery
## 71                           Service Delivery
## 72                                     Honest
## 73                      Helpful / Cooperative
## 74                           Service Delivery
## 75                           Service Delivery
## 76                                     Honest
## 77                                  Practical
## 78                      Helpful / Cooperative
## 79                                       <NA>
## 80                                     Honest
## 81                                     Honest
## 82                           Service Delivery
## 83                      Helpful / Cooperative
## 84                                    Popular
## 85                    Laborious / Industrious
## 86                                       <NA>
## 87                                       <NA>
## 88                      Helpful / Cooperative
## 89                       Idealastic / ethical
## 90                                    Popular
## 91                                 Good/Great
## 92                        Constitutional Body
## 93                       Idealastic / ethical
## 94                                     Honest
## 95                      Helpful / Cooperative
## 96                                     Honest
## 97                      Helpful / Cooperative
## 98                        Constitutional Body
## 99                           Service Delivery
## 100                                Good/Great
## 101                                     Other
## 102                          Known / Familiar
## 103                         Relative / Friend
## 104                          Known / Familiar
## 105                          Known / Familiar
## 106                                 Behaviour
## 107                               Responsible
## 108                   Laborious / Industrious
## 109                         Relative / Friend
## 110                               Accountable
## 111                                      <NA>
## 112                           Power deligator
## 113                                Leadership
## 114                                Leadership
## 115                                Leadership
## 116                                     Other
## 117                               Responsible
## 118                                Leadership
## 119                                   Popular
## 120                   Laborious / Industrious
## 121                   Laborious / Industrious
## 122                                  Kindness
## 123                                   Popular
## 124                                Leadership
## 125                     Helpful / Cooperative
## 126                   Laborious / Industrious
## 127                   Laborious / Industrious
## 128                        Rich / Independent
## 129                               Accountable
## 130                     Helpful / Cooperative
## 131                               Accountable
## 132                     Helpful / Cooperative
## 133                   Laborious / Industrious
## 134                   Laborious / Industrious
## 135                                Leadership
## 136                                      <NA>
## 137                   Laborious / Industrious
## 138                               Responsible
## 139                      Idealastic / ethical
## 140                   Laborious / Industrious
## 141                               Responsible
## 142                   Laborious / Industrious
## 143                       Constitutional Body
## 144                       Constitutional Body
## 145                   Laborious / Industrious
## 146                   Laborious / Industrious
## 147                          Service Delivery
## 148                   Laborious / Industrious
## 149                   Laborious / Industrious
## 150                   Laborious / Industrious
## 151                       Constitutional Body
## 152                       Constitutional Body
## 153                                Leadership
## 154                   Laborious / Industrious
## 155                       Constitutional Body
## 156                       Constitutional Body
## 157                                      <NA>
## 158                       Constitutional Body
## 159                                      <NA>
## 160                               Transparent
## 161                      Idealastic / ethical
## 162                       Constitutional Body
## 163                   Laborious / Industrious
## 164                                      <NA>
## 165                               Transparent
## 166                   Laborious / Industrious
## 167                       Constitutional Body
## 168                         Relative / Friend
## 169                                      <NA>
## 170                                     Other
## 171                         Relative / Friend
## 172                                      <NA>
## 173                                      <NA>
## 174                       Constitutional Body
## 175                         Relative / Friend
## 176                                      <NA>
## 177                   Laborious / Industrious
## 178                      Idealastic / ethical
## 179                                      <NA>
## 180                                      <NA>
## 181                                      <NA>
## 182                                      <NA>
## 183                                      <NA>
## 184                                      <NA>
## 185                                     Other
## 186                   Laborious / Industrious
## 187                                      <NA>
## 188                                      <NA>
## 189                      Idealastic / ethical
## 190                                 Behaviour
## 191                                 Behaviour
## 192                       Constitutional Body
## 193                         Relative / Friend
## 194                                      <NA>
## 195                       Constitutional Body
## 196                         Relative / Friend
## 197                                 Behaviour
## 198                      Idealastic / ethical
## 199                      Idealastic / ethical
## 200                                      <NA>
## 201                      Idealastic / ethical
## 202                                    Honest
## 203                   Laborious / Industrious
## 204                                   Justice
## 205                     Helpful / Cooperative
## 206                                    Honest
## 207                                    Honest
## 208                       Educated / Academic
## 209                      Idealastic / ethical
## 210                                 Practical
## 211                                   Justice
## 212                          Service Delivery
## 213                     Helpful / Cooperative
## 214                                 Practical
## 215                                   Neutral
## 216                                   Neutral
## 217                                   Justice
## 218                                 Behaviour
## 219                     Helpful / Cooperative
## 220                                 Practical
## 221                                 Behaviour
## 222                                 Behaviour
## 223                                 Religious
## 224                                    Honest
## 225                   Laborious / Industrious
## 226                                    Honest
## 227                               Transparent
## 228                                   Justice
## 229                      Idealastic / ethical
## 230                      Idealastic / ethical
## 231                                 Behaviour
## 232                              Truthfulness
## 233                     Helpful / Cooperative
## 234                                    Honest
## 235                                    Honest
## 236                                Benevolent
## 237                       Educated / Academic
## 238                               Responsible
## 239                                    Honest
## 240                      Idealastic / ethical
## 241                      Idealastic / ethical
## 242                      Idealastic / ethical
## 243                                    Honest
## 244                                    Honest
## 245                                    Honest
## 246                                Benevolent
## 247                                 Practical
## 248                   Laborious / Industrious
## 249                     Helpful / Cooperative
## 250                     Helpful / Cooperative
## 251                   Laborious / Industrious
## 252                          Service Delivery
## 253                                      <NA>
## 254                   Laborious / Industrious
## 255                          Service Delivery
## 256                                      <NA>
## 257                                      <NA>
## 258                                      <NA>
## 259                                      <NA>
## 260                                      <NA>
## 261                                      <NA>
## 262                          Service Delivery
## 263                                      <NA>
## 264                               Responsible
## 265                                      <NA>
## 266                          Service Delivery
## 267                                      <NA>
## 268                                      <NA>
## 269                          Service Delivery
## 270                                      <NA>
## 271                                      <NA>
## 272                          Service Delivery
## 273                   Laborious / Industrious
## 274                          Service Delivery
## 275                          Service Delivery
## 276                                 Behaviour
## 277                          Service Delivery
## 278                                      <NA>
## 279                                      <NA>
## 280                          Service Delivery
## 281                                      <NA>
## 282                                      <NA>
## 283                         Relative / Friend
## 284                                Benevolent
## 285                          Service Delivery
## 286                          Service Delivery
## 287                          Service Delivery
## 288                          Service Delivery
## 289                          Service Delivery
## 290                          Service Delivery
## 291                          Service Delivery
## 292                                      <NA>
## 293                                      <NA>
## 294                          Service Delivery
## 295                                      <NA>
## 296                                      <NA>
## 297                          Service Delivery
## 298                          Service Delivery
## 299                                      <NA>
## 300                          Service Delivery
## 302                               Responsible
## 303                                 Efficient
## 304                           Power deligator
## 305                                     Other
## 306                               Transparent
## 307                                      <NA>
## 308                                   Justice
## 309                                   Justice
## 310                                   Justice
## 311                                      <NA>
## 312                   Laborious / Industrious
## 313                   Laborious / Industrious
## 314                                      <NA>
## 315                                      <NA>
## 316                                      <NA>
## 317                   Laborious / Industrious
## 318                                   Justice
## 319                                      <NA>
## 320                                 Behaviour
## 321                                    Social
## 322                                      <NA>
## 323                                      <NA>
## 324                                      <NA>
## 325                                      <NA>
## 326                                      <NA>
## 327                   Laborious / Industrious
## 328                                      <NA>
## 329                                      <NA>
## 330                                   Justice
## 331                                      <NA>
## 332                                      <NA>
## 333                                      <NA>
## 334                                      <NA>
## 335                                      <NA>
## 336                   Laborious / Industrious
## 337                                      <NA>
## 338                              Truthfulness
## 339                                   Justice
## 340                                      <NA>
## 341                                     Other
## 342                                      <NA>
## 343                                      <NA>
## 344                          Service Delivery
## 345                                      <NA>
## 346                           Corruption Free
## 347                                      <NA>
## 348                                    Honest
## 349                                   Justice
## 350                               Transparent
## 351                                      <NA>
## 352                                      <NA>
## 353                                      <NA>
## 354                                      <NA>
## 355                                      <NA>
## 356                                      <NA>
## 357                                      <NA>
## 358                                      <NA>
## 359                                      <NA>
## 360                                      <NA>
## 361                                      <NA>
## 362                                      <NA>
## 363                                      <NA>
## 364                                      <NA>
## 365                                      <NA>
## 366                                      <NA>
## 367                                      <NA>
## 368                                      <NA>
## 369                                      <NA>
## 370                                      <NA>
## 371                                      <NA>
## 372                                      <NA>
## 373                                      <NA>
## 374                                  Security
## 375                                      <NA>
## 376                                      <NA>
## 377                                      <NA>
## 378                                      <NA>
## 379                                      <NA>
## 380                                      <NA>
## 381                                      <NA>
## 382                                      <NA>
## 383                                      <NA>
## 384                                      <NA>
## 385                                      <NA>
## 386                                      <NA>
## 387                                      <NA>
## 388                                      <NA>
## 389                                      <NA>
## 390                                      <NA>
## 391                                      <NA>
## 392                                      <NA>
## 393                                      <NA>
## 394                                      <NA>
## 395                                      <NA>
## 396                                      <NA>
## 397                                      <NA>
## 398                                      <NA>
## 399                                      <NA>
## 400                                      <NA>
## 401                                      <NA>
## 402                                  Security
## 403                               Accountable
## 404                                      <NA>
## 405                                      <NA>
## 406                                     Other
## 407                                   Popular
## 408                                  Security
## 409                     Helpful / Cooperative
## 410                           Corruption Free
## 411                                  Security
## 412                                     Other
## 413                                     Other
## 414                                      <NA>
## 415                                Don't Know
## 416                                      <NA>
## 417                                      <NA>
## 418                                      <NA>
## 419                                   Popular
## 420                                      <NA>
## 421                                     Other
## 422                                      <NA>
## 423                                      <NA>
## 424                                      <NA>
## 425                                      <NA>
## 426                               Transparent
## 427                                     Other
## 428                                      <NA>
## 429                                      <NA>
## 430                                      <NA>
## 431                                     Other
## 432                                      <NA>
## 433                                     Other
## 434                                      <NA>
## 435                                      <NA>
## 436                                      <NA>
## 437                               Accountable
## 438                                     Other
## 439                                    Honest
## 440                                      <NA>
## 441                          Service Delivery
## 442                                      <NA>
## 443                                      <NA>
## 444                                     Other
## 445                                     Other
## 446                                     Other
## 447                                     Other
## 448                                      <NA>
## 449                               Accountable
## 450                                      <NA>
## 451                                      <NA>
## 452                                      <NA>
## 453                                      <NA>
## 454                      Idealastic / ethical
## 455                                 Behaviour
## 456                                 Efficient
## 457                   Laborious / Industrious
## 458                               Transparent
## 459                               Transparent
## 460                              Truthfulness
## 461                                 Behaviour
## 462                           Corruption Free
## 463                      Idealastic / ethical
## 464                              Truthfulness
## 465                              Truthfulness
## 466                   Laborious / Industrious
## 467                                    Honest
## 468                           Corruption Free
## 469                              Truthfulness
## 470                                 Efficient
## 471                              Truthfulness
## 472                                  Security
## 473                      Idealastic / ethical
## 474                                Leadership
## 475                                 Efficient
## 476                                 Efficient
## 477                           Corruption Free
## 478                      Idealastic / ethical
## 479                                      <NA>
## 480                               Transparent
## 481                                Leadership
## 482                                 Behaviour
## 483                                 Practical
## 484                                 Practical
## 485                                  Security
## 486                                    Honest
## 487                                   Justice
## 488                                    Honest
## 489                               Transparent
## 490                                    Honest
## 491                            Troubleshooter
## 492                                   Justice
## 493                       Educated / Academic
## 494                                 Efficient
## 495                                      <NA>
## 496                                 Behaviour
##      Trustworthy.institution.Characteristic.3
## 1                                 Transparent
## 2                                    Kindness
## 3                                 Accountable
## 4                                        <NA>
## 5                       Helpful / Cooperative
## 6                                      Honest
## 7                        Idealastic / ethical
## 8                                   Efficient
## 9                                 Accountable
## 10                                       <NA>
## 11                                Accountable
## 12                                       <NA>
## 13                       Idealastic / ethical
## 14                                  Practical
## 15                                    Neutral
## 16                            Corruption Free
## 17                                       <NA>
## 18                                    Neutral
## 19                            Corruption Free
## 20                                Accountable
## 21                                       <NA>
## 22                         Rich / Independent
## 23                           Service Delivery
## 24                                       <NA>
## 25                                       <NA>
## 26                                       <NA>
## 27                                       <NA>
## 28                                       <NA>
## 29                                       <NA>
## 30                                       <NA>
## 31                                       <NA>
## 32                                       <NA>
## 33                                       <NA>
## 34                                     Honest
## 35                                       <NA>
## 36                                       <NA>
## 37                                       <NA>
## 38                                       <NA>
## 39                                       <NA>
## 40                                     Honest
## 41                                Accountable
## 42                                       <NA>
## 43                                       <NA>
## 44                           Service Delivery
## 45                           Service Delivery
## 46                           Service Delivery
## 47                                    Neutral
## 48                                     Honest
## 49                                       <NA>
## 50                                       <NA>
## 51                                       <NA>
## 52                           Service Delivery
## 53                           Service Delivery
## 54                       Idealastic / ethical
## 55                           Service Delivery
## 56                                   Security
## 57                                   Security
## 58                                   Security
## 59                                       <NA>
## 60                                    Justice
## 61                                Accountable
## 62                           Service Delivery
## 63                       Idealastic / ethical
## 64                           Service Delivery
## 65                           Service Delivery
## 66                           Service Delivery
## 67                      Helpful / Cooperative
## 68                           Service Delivery
## 69                                  Practical
## 70                       Idealastic / ethical
## 71                    Laborious / Industrious
## 72                           Service Delivery
## 73                            Corruption Free
## 74                                    Popular
## 75                                  Efficient
## 76                           Service Delivery
## 77                           Service Delivery
## 78                                    Popular
## 79                                       <NA>
## 80                           Service Delivery
## 81                           Service Delivery
## 82                    Laborious / Industrious
## 83                           Service Delivery
## 84                           Service Delivery
## 85                           Service Delivery
## 86                                       <NA>
## 87                                       <NA>
## 88                       Idealastic / ethical
## 89                           Service Delivery
## 90                    Laborious / Industrious
## 91                                 Benevolent
## 92                      Helpful / Cooperative
## 93                           Service Delivery
## 94                           Service Delivery
## 95                           Service Delivery
## 96                           Service Delivery
## 97                           Service Delivery
## 98                                 Good/Great
## 99                                 Good/Great
## 100                          Service Delivery
## 101                                 Behaviour
## 102                   Laborious / Industrious
## 103                                Good/Great
## 104                         Relative / Friend
## 105                          Known / Familiar
## 106                           Power deligator
## 107                            Troubleshooter
## 108                      Idealastic / ethical
## 109                          Known / Familiar
## 110                   Laborious / Industrious
## 111                                      <NA>
## 112                   Laborious / Industrious
## 113                        Rich / Independent
## 114                                Leadership
## 115                        Rich / Independent
## 116                                Leadership
## 117                                Leadership
## 118                               Responsible
## 119                                Leadership
## 120                   Laborious / Industrious
## 121                               Accountable
## 122                                Leadership
## 123                          Known / Familiar
## 124                               Accountable
## 125                                 Efficient
## 126                        Rich / Independent
## 127                                     Other
## 128                         Relative / Friend
## 129                   Laborious / Industrious
## 130                          Service Delivery
## 131                       Constitutional Body
## 132                          Service Delivery
## 133                                    Social
## 134                                  Kindness
## 135                                Leadership
## 136                                      <NA>
## 137                               Responsible
## 138                       Constitutional Body
## 139                   Laborious / Industrious
## 140                               Accountable
## 141                                     Other
## 142                                     Other
## 143                               Accountable
## 144                       Educated / Academic
## 145                                     Other
## 146                               Accountable
## 147                       Constitutional Body
## 148                                Leadership
## 149                                 Patriotic
## 150                               Accountable
## 151                                      <NA>
## 152                                      <NA>
## 153                                      <NA>
## 154                                      <NA>
## 155                                      <NA>
## 156                                      <NA>
## 157                                      <NA>
## 158                                      <NA>
## 159                                      <NA>
## 160                                      <NA>
## 161                                      <NA>
## 162                                      <NA>
## 163                                      <NA>
## 164                                      <NA>
## 165                                      <NA>
## 166                                      <NA>
## 167                                      <NA>
## 168                                      <NA>
## 169                                      <NA>
## 170                                      <NA>
## 171                                      <NA>
## 172                                      <NA>
## 173                                      <NA>
## 174                                      <NA>
## 175                                      <NA>
## 176                                      <NA>
## 177                                      <NA>
## 178                                      <NA>
## 179                                      <NA>
## 180                                      <NA>
## 181                                      <NA>
## 182                                      <NA>
## 183                                      <NA>
## 184                                      <NA>
## 185                                      <NA>
## 186                                      <NA>
## 187                                      <NA>
## 188                                      <NA>
## 189                                      <NA>
## 190                                      <NA>
## 191                                      <NA>
## 192                                      <NA>
## 193                                      <NA>
## 194                                      <NA>
## 195                                      <NA>
## 196                                      <NA>
## 197                                      <NA>
## 198                                      <NA>
## 199                                      <NA>
## 200                                      <NA>
## 201                                 Practical
## 202                         Relative / Friend
## 203                                 Practical
## 204                          Service Delivery
## 205                          Service Delivery
## 206                     Helpful / Cooperative
## 207                         Relative / Friend
## 208                               Transparent
## 209                                 Practical
## 210                                    Honest
## 211                     Helpful / Cooperative
## 212                                 Practical
## 213                                   Neutral
## 214                              Truthfulness
## 215                               Responsible
## 216                                 Practical
## 217                              Truthfulness
## 218                                 Practical
## 219                                    Honest
## 220                              Truthfulness
## 221                     Helpful / Cooperative
## 222                                 Religious
## 223                               Transparent
## 224                      Idealastic / ethical
## 225                                 Practical
## 226                                   Justice
## 227                      Idealastic / ethical
## 228                      Idealastic / ethical
## 229                                 Behaviour
## 230                               Transparent
## 231                                   Justice
## 232                                 Efficient
## 233                                 Religious
## 234                              Truthfulness
## 235                     Helpful / Cooperative
## 236                                   Liberal
## 237                                Benevolent
## 238                     Helpful / Cooperative
## 239                                   Logical
## 240                     Helpful / Cooperative
## 241                     Helpful / Cooperative
## 242                               Transparent
## 243                     Helpful / Cooperative
## 244                      Idealastic / ethical
## 245                                Benevolent
## 246                                    Honest
## 247                      Idealastic / ethical
## 248                                    Honest
## 249                                 Patriotic
## 250                   Laborious / Industrious
## 251                                      <NA>
## 252                                      <NA>
## 253                                      <NA>
## 254                                      <NA>
## 255                          Service Delivery
## 256                                      <NA>
## 257                                      <NA>
## 258                                      <NA>
## 259                                      <NA>
## 260                                      <NA>
## 261                                      <NA>
## 262                          Service Delivery
## 263                                      <NA>
## 264                          Service Delivery
## 265                                      <NA>
## 266                                   Justice
## 267                                      <NA>
## 268                                      <NA>
## 269                          Service Delivery
## 270                                      <NA>
## 271                                      <NA>
## 272                          Service Delivery
## 273                                      <NA>
## 274                          Service Delivery
## 275                          Service Delivery
## 276                                    Honest
## 277                                      <NA>
## 278                                      <NA>
## 279                                      <NA>
## 280                          Service Delivery
## 281                                      <NA>
## 282                                      <NA>
## 283                          Known / Familiar
## 284                          Service Delivery
## 285                                      <NA>
## 286                          Service Delivery
## 287                                      <NA>
## 288                                      <NA>
## 289                          Service Delivery
## 290                          Service Delivery
## 291                          Service Delivery
## 292                                      <NA>
## 293                                      <NA>
## 294                               Transparent
## 295                                      <NA>
## 296                                      <NA>
## 297                          Service Delivery
## 298                          Service Delivery
## 299                                      <NA>
## 300                          Service Delivery
## 302                               Accountable
## 303                               Responsible
## 304                                    Honest
## 305                                      <NA>
## 306                                     Other
## 307                                      <NA>
## 308                           Corruption Free
## 309                           Corruption Free
## 310                           Power deligator
## 311                                      <NA>
## 312                                     Other
## 313                           Corruption Free
## 314                                      <NA>
## 315                                      <NA>
## 316                                      <NA>
## 317                                   Justice
## 318                           Corruption Free
## 319                                      <NA>
## 320                                   Justice
## 321                      Idealastic / ethical
## 322                                      <NA>
## 323                                      <NA>
## 324                                      <NA>
## 325                                      <NA>
## 326                                      <NA>
## 327                               Transparent
## 328                                      <NA>
## 329                                      <NA>
## 330                           Corruption Free
## 331                                      <NA>
## 332                                      <NA>
## 333                                      <NA>
## 334                                      <NA>
## 335                                      <NA>
## 336                               Responsible
## 337                                      <NA>
## 338                                      <NA>
## 339                                     Other
## 340                                      <NA>
## 341                               Responsible
## 342                                      <NA>
## 343                                      <NA>
## 344                                   Neutral
## 345                                      <NA>
## 346                                      <NA>
## 347                                      <NA>
## 348                                      <NA>
## 349                                     Other
## 350                               Accountable
## 351                                      <NA>
## 352                                      <NA>
## 353                                      <NA>
## 354                                      <NA>
## 355                                      <NA>
## 356                                      <NA>
## 357                                      <NA>
## 358                                      <NA>
## 359                                      <NA>
## 360                                      <NA>
## 361                                      <NA>
## 362                                      <NA>
## 363                                      <NA>
## 364                                      <NA>
## 365                                      <NA>
## 366                                      <NA>
## 367                                      <NA>
## 368                                      <NA>
## 369                                      <NA>
## 370                                      <NA>
## 371                                      <NA>
## 372                                      <NA>
## 373                                      <NA>
## 374                                      <NA>
## 375                                      <NA>
## 376                                      <NA>
## 377                                      <NA>
## 378                                      <NA>
## 379                                      <NA>
## 380                                      <NA>
## 381                                      <NA>
## 382                                      <NA>
## 383                                      <NA>
## 384                                      <NA>
## 385                                      <NA>
## 386                                      <NA>
## 387                                      <NA>
## 388                                      <NA>
## 389                                      <NA>
## 390                                      <NA>
## 391                                      <NA>
## 392                                      <NA>
## 393                                      <NA>
## 394                                      <NA>
## 395                                      <NA>
## 396                                      <NA>
## 397                                      <NA>
## 398                                      <NA>
## 399                                      <NA>
## 400                                      <NA>
## 401                                      <NA>
## 402                               Accountable
## 403                                  Security
## 404                                      <NA>
## 405                                      <NA>
## 406                           Corruption Free
## 407                                  Security
## 408                          Service Delivery
## 409                                  Security
## 410                                     Other
## 411                     Helpful / Cooperative
## 412                                  Security
## 413                                  Security
## 414                                      <NA>
## 415                                Don't Know
## 416                                      <NA>
## 417                                      <NA>
## 418                                      <NA>
## 419                     Helpful / Cooperative
## 420                                      <NA>
## 421                                  Security
## 422                                      <NA>
## 423                                      <NA>
## 424                                      <NA>
## 425                                      <NA>
## 426                           Corruption Free
## 427                                  Security
## 428                                      <NA>
## 429                                      <NA>
## 430                                      <NA>
## 431                               Accountable
## 432                                      <NA>
## 433                                  Security
## 434                                      <NA>
## 435                                      <NA>
## 436                                      <NA>
## 437                                     Other
## 438                               Accountable
## 439                               Accountable
## 440                                      <NA>
## 441                               Accountable
## 442                                      <NA>
## 443                                      <NA>
## 444                               Accountable
## 445                                  Security
## 446                               Accountable
## 447                           Corruption Free
## 448                                      <NA>
## 449                                     Other
## 450                                      <NA>
## 451                                      <NA>
## 452                                      <NA>
## 453                                      <NA>
## 454                                 Behaviour
## 455                                  Security
## 456                               Accountable
## 457                                  Security
## 458                           Power deligator
## 459                               Accountable
## 460                           Corruption Free
## 461                      Idealastic / ethical
## 462                                    Honest
## 463                   Laborious / Industrious
## 464                                 Efficient
## 465                                    Social
## 466                                 Efficient
## 467                                   Justice
## 468                                 Efficient
## 469                                 Practical
## 470                                   Justice
## 471                                 Behaviour
## 472                   Laborious / Industrious
## 473                                  Security
## 474                           Corruption Free
## 475                                 Behaviour
## 476                                    Honest
## 477                                    Honest
## 478                            Troubleshooter
## 479                                      <NA>
## 480                                    Honest
## 481                                 Behaviour
## 482                                    Honest
## 483                                      <NA>
## 484                                      <NA>
## 485                   Laborious / Industrious
## 486                               Transparent
## 487                          Service Delivery
## 488                                   Popular
## 489                                   Justice
## 490                                Leadership
## 491                                 Efficient
## 492                               Transparent
## 493                               Accountable
## 494                                      <NA>
## 495                                      <NA>
## 496                     Helpful / Cooperative
##      Trustworthy.institution.Characteristic.4
## 1                                        <NA>
## 2                                        <NA>
## 3                                        <NA>
## 4                                        <NA>
## 5                                        <NA>
## 6                                        <NA>
## 7                                        <NA>
## 8                                        <NA>
## 9                                        <NA>
## 10                                       <NA>
## 11                                       <NA>
## 12                                       <NA>
## 13                                       <NA>
## 14                                Accountable
## 15                                   Kindness
## 16                                    Neutral
## 17                                       <NA>
## 18                                    Justice
## 19                                    Neutral
## 20                                       <NA>
## 21                                       <NA>
## 22                                       <NA>
## 23                                  Practical
## 24                                       <NA>
## 25                                       <NA>
## 26                                       <NA>
## 27                                       <NA>
## 28                                       <NA>
## 29                                       <NA>
## 30                                       <NA>
## 31                                       <NA>
## 32                                       <NA>
## 33                                       <NA>
## 34                                       <NA>
## 35                                       <NA>
## 36                                       <NA>
## 37                                       <NA>
## 38                                       <NA>
## 39                                       <NA>
## 40                                       <NA>
## 41                                       <NA>
## 42                                       <NA>
## 43                                       <NA>
## 44                                       <NA>
## 45                                  Efficient
## 46                                     Social
## 47                                Accountable
## 48                           Service Delivery
## 49                                       <NA>
## 50                                       <NA>
## 51                                       <NA>
## 52                                       <NA>
## 53                      Helpful / Cooperative
## 54                                  Behaviour
## 55                                       <NA>
## 56                                       <NA>
## 57                                       <NA>
## 58                                  Efficient
## 59                                       <NA>
## 60                                       <NA>
## 61                                       <NA>
## 62                                       <NA>
## 63                                    Popular
## 64                                       <NA>
## 65                                       <NA>
## 66                                      Other
## 67                       Idealastic / ethical
## 68                                  Behaviour
## 69                                       <NA>
## 70                                       <NA>
## 71                                 Good/Great
## 72                       Idealastic / ethical
## 73                           Service Delivery
## 74                       Idealastic / ethical
## 75                                       <NA>
## 76                      Helpful / Cooperative
## 77                                    Popular
## 78                           Service Delivery
## 79                                       <NA>
## 80                       Idealastic / ethical
## 81                                    Popular
## 82                                    Popular
## 83                      Helpful / Cooperative
## 84                      Helpful / Cooperative
## 85                                       <NA>
## 86                                       <NA>
## 87                                       <NA>
## 88                                       <NA>
## 89                    Laborious / Industrious
## 90                                       <NA>
## 91                           Service Delivery
## 92                           Service Delivery
## 93                      Helpful / Cooperative
## 94                                       <NA>
## 95                    Laborious / Industrious
## 96                                 Good/Great
## 97                       Idealastic / ethical
## 98                       Idealastic / ethical
## 99                       Idealastic / ethical
## 100                     Helpful / Cooperative
## 101                          Known / Familiar
## 102                          Known / Familiar
## 103                         Relative / Friend
## 104                                 Behaviour
## 105                                   Logical
## 106                               Accountable
## 107                                 Behaviour
## 108                           Power deligator
## 109                                   Popular
## 110                          Known / Familiar
## 111                                      <NA>
## 112                       Constitutional Body
## 113                       Educated / Academic
## 114                          Known / Familiar
## 115                          Known / Familiar
## 116                               Accountable
## 117                                 Efficient
## 118                          Service Delivery
## 119                   Laborious / Industrious
## 120                   Laborious / Industrious
## 121                                      <NA>
## 122                                Leadership
## 123                         Relative / Friend
## 124                   Laborious / Industrious
## 125                   Laborious / Industrious
## 126                                  Kindness
## 127                               Accountable
## 128                                 Behaviour
## 129                       Educated / Academic
## 130                   Laborious / Industrious
## 131                               Transparent
## 132                       Educated / Academic
## 133                               Accountable
## 134                                    Honest
## 135                                 Practical
## 136                                      <NA>
## 137                       Constitutional Body
## 138                     Helpful / Cooperative
## 139                        Rich / Independent
## 140                       Constitutional Body
## 141                                     Other
## 142                       Constitutional Body
## 143                                Leadership
## 144                        Rich / Independent
## 145                                Leadership
## 146                                 Behaviour
## 147                               Accountable
## 148                                 Patriotic
## 149                                    Social
## 150                           Corruption Free
## 151                                      <NA>
## 152                                      <NA>
## 153                                      <NA>
## 154                                      <NA>
## 155                                      <NA>
## 156                                      <NA>
## 157                                      <NA>
## 158                                      <NA>
## 159                                      <NA>
## 160                                      <NA>
## 161                                      <NA>
## 162                                      <NA>
## 163                                      <NA>
## 164                                      <NA>
## 165                                      <NA>
## 166                                      <NA>
## 167                                      <NA>
## 168                                      <NA>
## 169                                      <NA>
## 170                                      <NA>
## 171                                      <NA>
## 172                                      <NA>
## 173                                      <NA>
## 174                                      <NA>
## 175                                      <NA>
## 176                                      <NA>
## 177                                      <NA>
## 178                                      <NA>
## 179                                      <NA>
## 180                                      <NA>
## 181                                      <NA>
## 182                                      <NA>
## 183                                      <NA>
## 184                                      <NA>
## 185                                      <NA>
## 186                                      <NA>
## 187                                      <NA>
## 188                                      <NA>
## 189                                      <NA>
## 190                                      <NA>
## 191                                      <NA>
## 192                                      <NA>
## 193                                      <NA>
## 194                                      <NA>
## 195                                      <NA>
## 196                                      <NA>
## 197                                      <NA>
## 198                                      <NA>
## 199                                      <NA>
## 200                                      <NA>
## 201                                    Honest
## 202                                    Honest
## 203                                      <NA>
## 204                                      <NA>
## 205                                      <NA>
## 206                               Transparent
## 207                                      <NA>
## 208                                      <NA>
## 209                                      <NA>
## 210                     Helpful / Cooperative
## 211                                   Logical
## 212                                      <NA>
## 213                                 Practical
## 214                                      <NA>
## 215                                 Practical
## 216                                      <NA>
## 217                               Responsible
## 218                                      <NA>
## 219                                    Honest
## 220                                      <NA>
## 221                                   Liberal
## 222                                 Practical
## 223                                      <NA>
## 224                               Responsible
## 225                                      <NA>
## 226                                      <NA>
## 227                                      <NA>
## 228                                      <NA>
## 229                                 Practical
## 230                                      <NA>
## 231                                      <NA>
## 232                                      <NA>
## 233                                      <NA>
## 234                                      <NA>
## 235                                      <NA>
## 236                                      <NA>
## 237                                Leadership
## 238                                      <NA>
## 239                                      <NA>
## 240                              Truthfulness
## 241                                      <NA>
## 242                                      <NA>
## 243                                      <NA>
## 244                                      <NA>
## 245                     Helpful / Cooperative
## 246                                      <NA>
## 247                                Benevolent
## 248                                 Efficient
## 249                                      <NA>
## 250                                    Honest
## 251                                      <NA>
## 252                                      <NA>
## 253                                      <NA>
## 254                                      <NA>
## 255                          Service Delivery
## 256                                  Kindness
## 257                                      <NA>
## 258                                      <NA>
## 259                                      <NA>
## 260                                      <NA>
## 261                                      <NA>
## 262                                      <NA>
## 263                                      <NA>
## 264                                   Justice
## 265                                      <NA>
## 266                                      <NA>
## 267                                      <NA>
## 268                                      <NA>
## 269                                      <NA>
## 270                                      <NA>
## 271                                      <NA>
## 272                                      <NA>
## 273                                      <NA>
## 274                          Service Delivery
## 275                                      <NA>
## 276                     Helpful / Cooperative
## 277                                      <NA>
## 278                                      <NA>
## 279                                      <NA>
## 280                                  Security
## 281                                      <NA>
## 282                                      <NA>
## 283                          Service Delivery
## 284                          Service Delivery
## 285                                      <NA>
## 286                                      <NA>
## 287                                      <NA>
## 288                                      <NA>
## 289                           Corruption Free
## 290                          Service Delivery
## 291                                  Security
## 292                                      <NA>
## 293                                      <NA>
## 294                          Service Delivery
## 295                                      <NA>
## 296                                      <NA>
## 297                                      <NA>
## 298                                      <NA>
## 299                                      <NA>
## 300                                      <NA>
## 302                                   Justice
## 303                                      <NA>
## 304                                   Justice
## 305                                      <NA>
## 306                                   Justice
## 307                                      <NA>
## 308                               Responsible
## 309                                      <NA>
## 310                               Transparent
## 311                                      <NA>
## 312                                      <NA>
## 313                                      <NA>
## 314                                      <NA>
## 315                                      <NA>
## 316                                      <NA>
## 317                                   Justice
## 318                                     Other
## 319                                      <NA>
## 320                                      <NA>
## 321                   Laborious / Industrious
## 322                                      <NA>
## 323                                      <NA>
## 324                                      <NA>
## 325                                      <NA>
## 326                                      <NA>
## 327                                   Justice
## 328                                      <NA>
## 329                                      <NA>
## 330                                      <NA>
## 331                                      <NA>
## 332                                      <NA>
## 333                                      <NA>
## 334                                      <NA>
## 335                                      <NA>
## 336                                      <NA>
## 337                                      <NA>
## 338                                      <NA>
## 339                               Transparent
## 340                                      <NA>
## 341                                      <NA>
## 342                                      <NA>
## 343                                      <NA>
## 344                               Transparent
## 345                                      <NA>
## 346                                      <NA>
## 347                                      <NA>
## 348                                      <NA>
## 349                                      <NA>
## 350                               Responsible
## 351                                      <NA>
## 352                                      <NA>
## 353                                      <NA>
## 354                                      <NA>
## 355                                      <NA>
## 356                                      <NA>
## 357                                      <NA>
## 358                                      <NA>
## 359                                      <NA>
## 360                                      <NA>
## 361                                      <NA>
## 362                                      <NA>
## 363                                      <NA>
## 364                                      <NA>
## 365                                      <NA>
## 366                                      <NA>
## 367                                      <NA>
## 368                                      <NA>
## 369                                      <NA>
## 370                                      <NA>
## 371                                      <NA>
## 372                                      <NA>
## 373                                      <NA>
## 374                                      <NA>
## 375                                      <NA>
## 376                                      <NA>
## 377                                      <NA>
## 378                                      <NA>
## 379                                      <NA>
## 380                                      <NA>
## 381                                      <NA>
## 382                                      <NA>
## 383                                      <NA>
## 384                                      <NA>
## 385                                      <NA>
## 386                                      <NA>
## 387                                      <NA>
## 388                                      <NA>
## 389                                      <NA>
## 390                                      <NA>
## 391                                      <NA>
## 392                                      <NA>
## 393                                      <NA>
## 394                                      <NA>
## 395                                      <NA>
## 396                                      <NA>
## 397                                      <NA>
## 398                                      <NA>
## 399                                      <NA>
## 400                                      <NA>
## 401                                      <NA>
## 402                                    Honest
## 403                           Corruption Free
## 404                                      <NA>
## 405                                      <NA>
## 406                                  Security
## 407                                      <NA>
## 408                                     Other
## 409                     Helpful / Cooperative
## 410                                  Security
## 411                     Helpful / Cooperative
## 412                               Accountable
## 413                           Corruption Free
## 414                                      <NA>
## 415                                Don't Know
## 416                                      <NA>
## 417                                      <NA>
## 418                                      <NA>
## 419                           Corruption Free
## 420                                      <NA>
## 421                           Corruption Free
## 422                                      <NA>
## 423                                      <NA>
## 424                                      <NA>
## 425                                      <NA>
## 426                               Accountable
## 427                           Corruption Free
## 428                                      <NA>
## 429                                      <NA>
## 430                                      <NA>
## 431                           Corruption Free
## 432                                      <NA>
## 433                           Corruption Free
## 434                                      <NA>
## 435                                      <NA>
## 436                                      <NA>
## 437                           Corruption Free
## 438                     Helpful / Cooperative
## 439                                     Other
## 440                                      <NA>
## 441                                  Security
## 442                                      <NA>
## 443                                      <NA>
## 444                                  Security
## 445                               Accountable
## 446                                  Security
## 447                               Accountable
## 448                                      <NA>
## 449                                      <NA>
## 450                                      <NA>
## 451                                      <NA>
## 452                                      <NA>
## 453                                      <NA>
## 454                   Laborious / Industrious
## 455                          Service Delivery
## 456                                      <NA>
## 457                                 Efficient
## 458                                   Justice
## 459                                   Justice
## 460                                    Honest
## 461                                  Security
## 462                                    Social
## 463                                  Security
## 464                                   Justice
## 465                                  Security
## 466                                Benevolent
## 467                           Corruption Free
## 468                                      <NA>
## 469                                      <NA>
## 470                               Accountable
## 471                                      <NA>
## 472                     Helpful / Cooperative
## 473                          Service Delivery
## 474                                    Honest
## 475                                      <NA>
## 476                                  Security
## 477                                      <NA>
## 478                               Transparent
## 479                                      <NA>
## 480                                 Behaviour
## 481                                      <NA>
## 482                     Helpful / Cooperative
## 483                                      <NA>
## 484                                      <NA>
## 485                                      <NA>
## 486                      Idealastic / ethical
## 487                                      <NA>
## 488                                      <NA>
## 489                                 Efficient
## 490                                      <NA>
## 491                                  Security
## 492                                      <NA>
## 493                   Laborious / Industrious
## 494                                      <NA>
## 495                                      <NA>
## 496                                      <NA>
##      Trustworthy.institution.Characteristic.5
## 1                                        <NA>
## 2                                        <NA>
## 3                                        <NA>
## 4                                        <NA>
## 5                                        <NA>
## 6                                        <NA>
## 7                                        <NA>
## 8                                        <NA>
## 9                                        <NA>
## 10                                       <NA>
## 11                                       <NA>
## 12                                       <NA>
## 13                                       <NA>
## 14                                       <NA>
## 15                            Corruption Free
## 16                                  Behaviour
## 17                                       <NA>
## 18                                       <NA>
## 19                                       <NA>
## 20                                       <NA>
## 21                                       <NA>
## 22                                       <NA>
## 23                                  Efficient
## 24                                       <NA>
## 25                                       <NA>
## 26                                       <NA>
## 27                                       <NA>
## 28                                       <NA>
## 29                                       <NA>
## 30                                       <NA>
## 31                                       <NA>
## 32                                       <NA>
## 33                                       <NA>
## 34                                       <NA>
## 35                                       <NA>
## 36                                       <NA>
## 37                                       <NA>
## 38                                       <NA>
## 39                                       <NA>
## 40                                       <NA>
## 41                                       <NA>
## 42                                       <NA>
## 43                                       <NA>
## 44                                       <NA>
## 45                                       <NA>
## 46                                       <NA>
## 47                                       <NA>
## 48                                       <NA>
## 49                                       <NA>
## 50                                       <NA>
## 51                                       <NA>
## 52                                       <NA>
## 53                                       <NA>
## 54                       Idealastic / ethical
## 55                                       <NA>
## 56                                       <NA>
## 57                                       <NA>
## 58                                       <NA>
## 59                                       <NA>
## 60                                       <NA>
## 61                                       <NA>
## 62                                       <NA>
## 63                                       <NA>
## 64                                       <NA>
## 65                                       <NA>
## 66                                       <NA>
## 67                                       <NA>
## 68                      Helpful / Cooperative
## 69                                       <NA>
## 70                                       <NA>
## 71                                       <NA>
## 72                                     Honest
## 73                                       <NA>
## 74                                       <NA>
## 75                                       <NA>
## 76                                       <NA>
## 77                                       <NA>
## 78                                       <NA>
## 79                                       <NA>
## 80                                       <NA>
## 81                                       <NA>
## 82                                       <NA>
## 83                                    Popular
## 84                                       <NA>
## 85                                       <NA>
## 86                                       <NA>
## 87                                       <NA>
## 88                                       <NA>
## 89                                       <NA>
## 90                                       <NA>
## 91                                       <NA>
## 92                                       <NA>
## 93                                 Benevolent
## 94                                       <NA>
## 95                                       <NA>
## 96                       Idealastic / ethical
## 97                                    Popular
## 98                                       <NA>
## 99                                       <NA>
## 100                      Idealastic / ethical
## 101                         Relative / Friend
## 102                          Known / Familiar
## 103                                 Behaviour
## 104                                      <NA>
## 105                                      <NA>
## 106                                 Efficient
## 107                                 Behaviour
## 108                   Laborious / Industrious
## 109                                      <NA>
## 110                         Relative / Friend
## 111                                      <NA>
## 112                                      <NA>
## 113                                      <NA>
## 114                                      <NA>
## 115                                      <NA>
## 116                                   Popular
## 117                                Leadership
## 118                                      <NA>
## 119                               Accountable
## 120                   Laborious / Industrious
## 121                                      <NA>
## 122                         Relative / Friend
## 123                          Known / Familiar
## 124                         Relative / Friend
## 125                   Laborious / Industrious
## 126                                 Behaviour
## 127                   Laborious / Industrious
## 128                                      <NA>
## 129                   Laborious / Industrious
## 130                                      <NA>
## 131                                      <NA>
## 132                                      <NA>
## 133                                 Practical
## 134                                 Practical
## 135                         Relative / Friend
## 136                                      <NA>
## 137                       Constitutional Body
## 138                   Laborious / Industrious
## 139                       Educated / Academic
## 140                                      <NA>
## 141                            Troubleshooter
## 142                                Leadership
## 143                       Constitutional Body
## 144                   Laborious / Industrious
## 145                          Service Delivery
## 146                          Service Delivery
## 147                                Leadership
## 148                                 Patriotic
## 149                          Service Delivery
## 150                                      <NA>
## 151                                      <NA>
## 152                                      <NA>
## 153                                      <NA>
## 154                                      <NA>
## 155                                      <NA>
## 156                                      <NA>
## 157                                      <NA>
## 158                                      <NA>
## 159                                      <NA>
## 160                                      <NA>
## 161                                      <NA>
## 162                                      <NA>
## 163                                      <NA>
## 164                                      <NA>
## 165                                      <NA>
## 166                                      <NA>
## 167                                      <NA>
## 168                                      <NA>
## 169                                      <NA>
## 170                                      <NA>
## 171                                      <NA>
## 172                                      <NA>
## 173                                      <NA>
## 174                                      <NA>
## 175                                      <NA>
## 176                                      <NA>
## 177                                      <NA>
## 178                                      <NA>
## 179                                      <NA>
## 180                                      <NA>
## 181                                      <NA>
## 182                                      <NA>
## 183                                      <NA>
## 184                                      <NA>
## 185                                      <NA>
## 186                                      <NA>
## 187                                      <NA>
## 188                                      <NA>
## 189                                      <NA>
## 190                                      <NA>
## 191                                      <NA>
## 192                                      <NA>
## 193                                      <NA>
## 194                                      <NA>
## 195                                      <NA>
## 196                                      <NA>
## 197                                      <NA>
## 198                                      <NA>
## 199                                      <NA>
## 200                                      <NA>
## 201                                      <NA>
## 202                                      <NA>
## 203                                      <NA>
## 204                                      <NA>
## 205                                      <NA>
## 206                                      <NA>
## 207                                      <NA>
## 208                                      <NA>
## 209                                      <NA>
## 210                                      <NA>
## 211                                   Neutral
## 212                                      <NA>
## 213                                      <NA>
## 214                                      <NA>
## 215                                      <NA>
## 216                                      <NA>
## 217                                      <NA>
## 218                                      <NA>
## 219                                   Liberal
## 220                                      <NA>
## 221                                   Liberal
## 222                                      <NA>
## 223                                      <NA>
## 224                                      <NA>
## 225                                      <NA>
## 226                                      <NA>
## 227                                      <NA>
## 228                                      <NA>
## 229                                      <NA>
## 230                                      <NA>
## 231                                      <NA>
## 232                                      <NA>
## 233                                      <NA>
## 234                                      <NA>
## 235                                      <NA>
## 236                                      <NA>
## 237                                      <NA>
## 238                                      <NA>
## 239                                      <NA>
## 240                                      <NA>
## 241                                      <NA>
## 242                                      <NA>
## 243                                      <NA>
## 244                                      <NA>
## 245                                      <NA>
## 246                                      <NA>
## 247                                      <NA>
## 248                                      <NA>
## 249                                      <NA>
## 250                                      <NA>
## 251                                      <NA>
## 252                                      <NA>
## 253                                      <NA>
## 254                                      <NA>
## 255                     Helpful / Cooperative
## 256                                      <NA>
## 257                                      <NA>
## 258                                      <NA>
## 259                                      <NA>
## 260                                      <NA>
## 261                                      <NA>
## 262                                      <NA>
## 263                                      <NA>
## 264                                      <NA>
## 265                                      <NA>
## 266                               Accountable
## 267                                      <NA>
## 268                                      <NA>
## 269                                      <NA>
## 270                                      <NA>
## 271                                      <NA>
## 272                                      <NA>
## 273                                      <NA>
## 274                          Service Delivery
## 275                                      <NA>
## 276                               Transparent
## 277                                      <NA>
## 278                                      <NA>
## 279                                      <NA>
## 280                     Helpful / Cooperative
## 281                                      <NA>
## 282                                      <NA>
## 283                                      <NA>
## 284                          Service Delivery
## 285                                      <NA>
## 286                                      <NA>
## 287                                      <NA>
## 288                                      <NA>
## 289                                      <NA>
## 290                                      <NA>
## 291                          Service Delivery
## 292                                      <NA>
## 293                                      <NA>
## 294                          Service Delivery
## 295                                      <NA>
## 296                                      <NA>
## 297                                      <NA>
## 298                                      <NA>
## 299                                      <NA>
## 300                                      <NA>
## 302                                     Other
## 303                                      <NA>
## 304                                     Other
## 305                                      <NA>
## 306                                      <NA>
## 307                                      <NA>
## 308                                      <NA>
## 309                                      <NA>
## 310                                      <NA>
## 311                                      <NA>
## 312                                      <NA>
## 313                                      <NA>
## 314                                      <NA>
## 315                                      <NA>
## 316                                      <NA>
## 317                                      <NA>
## 318                                      <NA>
## 319                                      <NA>
## 320                                      <NA>
## 321                                      <NA>
## 322                                      <NA>
## 323                                      <NA>
## 324                                      <NA>
## 325                                      <NA>
## 326                                      <NA>
## 327                           Corruption Free
## 328                                      <NA>
## 329                                      <NA>
## 330                                      <NA>
## 331                                      <NA>
## 332                                      <NA>
## 333                                      <NA>
## 334                                      <NA>
## 335                                      <NA>
## 336                                      <NA>
## 337                                      <NA>
## 338                                      <NA>
## 339                                      <NA>
## 340                                      <NA>
## 341                                      <NA>
## 342                                      <NA>
## 343                                      <NA>
## 344                                      <NA>
## 345                                      <NA>
## 346                                      <NA>
## 347                                      <NA>
## 348                                      <NA>
## 349                                      <NA>
## 350                                      <NA>
## 351                                      <NA>
## 352                                      <NA>
## 353                                      <NA>
## 354                                      <NA>
## 355                                      <NA>
## 356                                      <NA>
## 357                                      <NA>
## 358                                      <NA>
## 359                                      <NA>
## 360                                      <NA>
## 361                                      <NA>
## 362                                      <NA>
## 363                                      <NA>
## 364                                      <NA>
## 365                                      <NA>
## 366                                      <NA>
## 367                                      <NA>
## 368                                      <NA>
## 369                                      <NA>
## 370                                      <NA>
## 371                                      <NA>
## 372                                      <NA>
## 373                                      <NA>
## 374                                      <NA>
## 375                                      <NA>
## 376                                      <NA>
## 377                                      <NA>
## 378                                      <NA>
## 379                                      <NA>
## 380                                      <NA>
## 381                                      <NA>
## 382                                      <NA>
## 383                                      <NA>
## 384                                      <NA>
## 385                                      <NA>
## 386                                      <NA>
## 387                                      <NA>
## 388                                      <NA>
## 389                                      <NA>
## 390                                      <NA>
## 391                                      <NA>
## 392                                      <NA>
## 393                                      <NA>
## 394                                      <NA>
## 395                                      <NA>
## 396                                      <NA>
## 397                                      <NA>
## 398                                      <NA>
## 399                                      <NA>
## 400                                      <NA>
## 401                                      <NA>
## 402                           Corruption Free
## 403                                   Popular
## 404                                      <NA>
## 405                                      <NA>
## 406                                   Popular
## 407                                      <NA>
## 408                                      <NA>
## 409                               Accountable
## 410                              Truthfulness
## 411                               Accountable
## 412                           Corruption Free
## 413                               Accountable
## 414                                      <NA>
## 415                                Don't Know
## 416                                      <NA>
## 417                                      <NA>
## 418                                      <NA>
## 419                                  Security
## 420                                      <NA>
## 421                               Accountable
## 422                                      <NA>
## 423                                      <NA>
## 424                                      <NA>
## 425                                      <NA>
## 426                                  Security
## 427                               Accountable
## 428                                      <NA>
## 429                                      <NA>
## 430                                      <NA>
## 431                                  Security
## 432                                      <NA>
## 433                               Accountable
## 434                                      <NA>
## 435                                      <NA>
## 436                                      <NA>
## 437                          Service Delivery
## 438                                  Security
## 439                           Corruption Free
## 440                                      <NA>
## 441                                      <NA>
## 442                                      <NA>
## 443                                      <NA>
## 444                                      <NA>
## 445                                      <NA>
## 446                                      <NA>
## 447                                  Security
## 448                                      <NA>
## 449                                      <NA>
## 450                                      <NA>
## 451                                      <NA>
## 452                                      <NA>
## 453                                      <NA>
## 454                                      <NA>
## 455                                Leadership
## 456                                      <NA>
## 457                                      <NA>
## 458                                    Social
## 459                                      <NA>
## 460                                   Justice
## 461                                      <NA>
## 462                                      <NA>
## 463                                      <NA>
## 464                                    Honest
## 465                                      <NA>
## 466                                   Justice
## 467                                      <NA>
## 468                                      <NA>
## 469                                      <NA>
## 470                                  Kindness
## 471                                      <NA>
## 472                                      <NA>
## 473                                      <NA>
## 474                                      <NA>
## 475                                      <NA>
## 476                                      <NA>
## 477                                      <NA>
## 478                               Accountable
## 479                                      <NA>
## 480                                      <NA>
## 481                                      <NA>
## 482                                      <NA>
## 483                                      <NA>
## 484                                      <NA>
## 485                                      <NA>
## 486                                      <NA>
## 487                                      <NA>
## 488                                      <NA>
## 489                                      <NA>
## 490                                      <NA>
## 491                                      <NA>
## 492                                      <NA>
## 493                                      <NA>
## 494                                      <NA>
## 495                                      <NA>
## 496                                      <NA>
##                  Image..Civil.Servants        Image..Central.Politicians
## 1    Not negative, not positive either Not negative, not positive either
## 2    Not negative, not positive either Not negative, not positive either
## 3                             Negative                          Negative
## 4                             Positive                     Very Negative
## 5    Not negative, not positive either Not negative, not positive either
## 6                           Don't know Not negative, not positive either
## 7    Not negative, not positive either                          Positive
## 8    Not negative, not positive either Not negative, not positive either
## 9                             Positive Not negative, not positive either
## 10   Not negative, not positive either                        Don't know
## 11   Not negative, not positive either Not negative, not positive either
## 12                            Positive                     Very Negative
## 13                            Positive Not negative, not positive either
## 14                            Negative                              <NA>
## 15   Not negative, not positive either                          Negative
## 16   Not negative, not positive either                          Positive
## 17                            Positive                          Positive
## 18                            Positive                          Positive
## 19   Not negative, not positive either                          Positive
## 20                            Positive                          Positive
## 21                            Positive                          Positive
## 22   Not negative, not positive either                          Negative
## 23                            Positive                          Positive
## 24   Not negative, not positive either Not negative, not positive either
## 25                            Negative Not negative, not positive either
## 26                            Positive                          Positive
## 27   Not negative, not positive either                          Positive
## 28                          Don't know                          Positive
## 29                          Don't know Not negative, not positive either
## 30   Not negative, not positive either Not negative, not positive either
## 31   Not negative, not positive either                          Negative
## 32                          Don't know                          Positive
## 33   Not negative, not positive either                          Negative
## 34                            Positive                          Negative
## 35                            Positive                          Positive
## 36   Not negative, not positive either                          Negative
## 37   Not negative, not positive either Not negative, not positive either
## 38   Not negative, not positive either Not negative, not positive either
## 39   Not negative, not positive either                          Negative
## 40   Not negative, not positive either Not negative, not positive either
## 41   Not negative, not positive either Not negative, not positive either
## 42   Not negative, not positive either Not negative, not positive either
## 43                            Positive                     Very Positive
## 44   Not negative, not positive either                          Negative
## 45   Not negative, not positive either Not negative, not positive either
## 46   Not negative, not positive either                          Negative
## 47                            Negative Not negative, not positive either
## 48                            Positive                          Negative
## 49   Not negative, not positive either                          Negative
## 50                            Positive                        Don't know
## 51   Not negative, not positive either Not negative, not positive either
## 52                          Don't know                        Don't know
## 53                            Positive                          Positive
## 54                            Positive                          Negative
## 55                            Positive                          Positive
## 56                          Don't know                          Negative
## 57                          Don't know                        Don't know
## 58                            Positive Not negative, not positive either
## 59                                <NA>                              <NA>
## 60                            Positive                          Positive
## 61                            Positive                          Positive
## 62                            Positive                          Positive
## 63                       Very Positive                          Positive
## 64                            Positive                          Positive
## 65                            Positive                          Positive
## 66                            Positive                          Positive
## 67                            Positive                          Positive
## 68                            Positive                          Positive
## 69                       Very Negative                     Very Negative
## 70                       Very Negative                     Very Negative
## 71                            Positive                          Positive
## 72                            Positive                          Positive
## 73                            Positive                          Positive
## 74                            Positive                          Positive
## 75                            Positive                          Positive
## 76                            Positive                          Positive
## 77                            Positive                          Positive
## 78                            Positive                          Positive
## 79                            Positive                          Positive
## 80                            Positive                          Positive
## 81                            Positive                          Positive
## 82                            Positive                          Positive
## 83                       Very Positive                          Positive
## 84                            Positive                          Positive
## 85                            Positive                          Positive
## 86                            Positive Not negative, not positive either
## 87                            Positive Not negative, not positive either
## 88                            Positive                          Positive
## 89                            Positive                          Positive
## 90                            Positive                          Positive
## 91                            Positive                          Positive
## 92                            Positive                          Positive
## 93                            Positive                          Positive
## 94                            Positive                          Positive
## 95                            Positive                          Positive
## 96                            Positive                          Positive
## 97                            Positive                          Positive
## 98                            Positive                          Positive
## 99                            Positive                          Positive
## 100                           Positive                          Positive
## 101                           Positive Not negative, not positive either
## 102  Not negative, not positive either                              <NA>
## 103                           Positive Not negative, not positive either
## 104  Not negative, not positive either Not negative, not positive either
## 105  Not negative, not positive either Not negative, not positive either
## 106                               <NA>                              <NA>
## 107  Not negative, not positive either                          Positive
## 108                           Positive Not negative, not positive either
## 109  Not negative, not positive either Not negative, not positive either
## 110  Not negative, not positive either                          Positive
## 111                               <NA>                              <NA>
## 112  Not negative, not positive either                          Negative
## 113  Not negative, not positive either Not negative, not positive either
## 114  Not negative, not positive either                          Negative
## 115  Not negative, not positive either Not negative, not positive either
## 116                         Don't know                        Don't know
## 117                           Positive Not negative, not positive either
## 118                         Don't know Not negative, not positive either
## 119                           Positive Not negative, not positive either
## 120                           Positive Not negative, not positive either
## 121                           Positive Not negative, not positive either
## 122  Not negative, not positive either Not negative, not positive either
## 123  Not negative, not positive either                        Don't know
## 124                           Positive                          Positive
## 125                           Positive                          Positive
## 126  Not negative, not positive either                          Positive
## 127  Not negative, not positive either                          Positive
## 128  Not negative, not positive either Not negative, not positive either
## 129  Not negative, not positive either                          Positive
## 130                           Positive                          Negative
## 131                           Positive                          Negative
## 132  Not negative, not positive either                          Negative
## 133  Not negative, not positive either                          Negative
## 134                           Positive Not negative, not positive either
## 135                           Positive                          Positive
## 136                         Don't know                        Don't know
## 137  Not negative, not positive either Not negative, not positive either
## 138  Not negative, not positive either                          Positive
## 139  Not negative, not positive either Not negative, not positive either
## 140                         Don't know                          Positive
## 141                           Positive                          Positive
## 142  Not negative, not positive either                          Negative
## 143  Not negative, not positive either                          Negative
## 144                           Positive                          Positive
## 145                           Positive Not negative, not positive either
## 146  Not negative, not positive either Not negative, not positive either
## 147                           Positive                          Negative
## 148  Not negative, not positive either                          Negative
## 149                           Positive                          Negative
## 150  Not negative, not positive either Not negative, not positive either
## 151                           Positive                          Positive
## 152                      Very Positive                          Positive
## 153                         Don't know                        Don't know
## 154                         Don't know                     Very Positive
## 155  Not negative, not positive either                          Positive
## 156                           Positive                          Positive
## 157                           Positive                          Negative
## 158                      Very Positive                          Positive
## 159                         Don't know                          Negative
## 160  Not negative, not positive either                          Negative
## 161                           Positive Not negative, not positive either
## 162                         Don't know                        Don't know
## 163                         Don't know                        Don't know
## 164                         Don't know                        Don't know
## 165                      Very Positive                          Positive
## 166                      Very Positive                          Positive
## 167                      Very Positive                          Positive
## 168                           Positive Not negative, not positive either
## 169                           Positive Not negative, not positive either
## 170                         Don't know                        Don't know
## 171                         Don't know                        Don't know
## 172                         Don't know                        Don't know
## 173                         Don't know                        Don't know
## 174                           Positive                          Positive
## 175  Not negative, not positive either                          Negative
## 176                           Negative                          Negative
## 177                           Positive Not negative, not positive either
## 178                         Don't know                        Don't know
## 179                         Don't know                        Don't know
## 180  Not negative, not positive either                          Positive
## 181  Not negative, not positive either                          Positive
## 182  Not negative, not positive either Not negative, not positive either
## 183                           Negative                          Negative
## 184                           Negative                          Negative
## 185  Not negative, not positive either Not negative, not positive either
## 186  Not negative, not positive either                          Positive
## 187                           Positive                          Negative
## 188                         Don't know                        Don't know
## 189                         Don't know                        Don't know
## 190                         Don't know                        Don't know
## 191  Not negative, not positive either Not negative, not positive either
## 192                         Don't know                          Negative
## 193                           Positive                          Positive
## 194                           Positive                        Don't know
## 195                           Positive Not negative, not positive either
## 196                           Positive Not negative, not positive either
## 197                           Positive Not negative, not positive either
## 198  Not negative, not positive either                          Positive
## 199                           Positive Not negative, not positive either
## 200                           Positive                          Positive
## 201  Not negative, not positive either                          Negative
## 202                           Negative                          Negative
## 203  Not negative, not positive either                          Negative
## 204  Not negative, not positive either                          Positive
## 205                           Negative Not negative, not positive either
## 206                           Negative                          Negative
## 207  Not negative, not positive either                          Negative
## 208  Not negative, not positive either                          Negative
## 209  Not negative, not positive either                          Negative
## 210  Not negative, not positive either                          Negative
## 211  Not negative, not positive either                          Negative
## 212  Not negative, not positive either                          Negative
## 213  Not negative, not positive either                          Negative
## 214  Not negative, not positive either                          Negative
## 215  Not negative, not positive either                          Negative
## 216  Not negative, not positive either                          Negative
## 217                           Negative Not negative, not positive either
## 218  Not negative, not positive either                          Negative
## 219  Not negative, not positive either                          Negative
## 220                           Negative Not negative, not positive either
## 221                      Very Positive                          Positive
## 222                      Very Positive                          Positive
## 223  Not negative, not positive either                          Negative
## 224                           Positive                     Very Positive
## 225  Not negative, not positive either Not negative, not positive either
## 226  Not negative, not positive either Not negative, not positive either
## 227  Not negative, not positive either Not negative, not positive either
## 228  Not negative, not positive either                          Positive
## 229                           Negative                     Very Negative
## 230  Not negative, not positive either                          Positive
## 231  Not negative, not positive either                          Positive
## 232  Not negative, not positive either                          Negative
## 233  Not negative, not positive either                          Negative
## 234  Not negative, not positive either                          Negative
## 235  Not negative, not positive either                          Negative
## 236                           Negative Not negative, not positive either
## 237                           Positive Not negative, not positive either
## 238                           Negative                     Very Negative
## 239  Not negative, not positive either                          Negative
## 240  Not negative, not positive either                          Negative
## 241  Not negative, not positive either                          Negative
## 242  Not negative, not positive either                          Negative
## 243  Not negative, not positive either                          Negative
## 244  Not negative, not positive either                          Negative
## 245                           Positive                     Very Positive
## 246  Not negative, not positive either                          Negative
## 247                           Negative Not negative, not positive either
## 248  Not negative, not positive either                          Negative
## 249                           Negative                     Very Negative
## 250  Not negative, not positive either Not negative, not positive either
## 251                           Positive                          Positive
## 252                           Positive                          Positive
## 253                         Don't know                        Don't know
## 254                           Positive                          Positive
## 255                           Positive                          Positive
## 256                           Negative                          Positive
## 257                           Positive                          Positive
## 258                           Positive                        Don't know
## 259                         Don't know                        Don't know
## 260                      Very Positive                          Positive
## 261                         Don't know                        Don't know
## 262                      Very Positive                     Very Positive
## 263                         Don't know                        Don't know
## 264                           Positive                          Positive
## 265                         Don't know                        Don't know
## 266                           Positive                          Positive
## 267                           Positive                        Don't know
## 268                           Positive                          Positive
## 269                           Positive                          Positive
## 270                           Positive                          Positive
## 271                           Positive                          Positive
## 272                           Positive                          Positive
## 273                           Positive                          Positive
## 274                           Positive                          Negative
## 275                           Positive                          Positive
## 276  Not negative, not positive either                          Positive
## 277                           Positive                        Don't know
## 278                           Positive                          Positive
## 279                           Positive                          Negative
## 280  Not negative, not positive either Not negative, not positive either
## 281                           Positive                          Positive
## 282                           Positive                          Positive
## 283                           Negative                          Negative
## 284  Not negative, not positive either                          Positive
## 285                           Positive                          Positive
## 286                           Positive                          Positive
## 287                           Positive                          Positive
## 288                         Don't know                        Don't know
## 289                         Don't know                        Don't know
## 290                           Positive                          Positive
## 291                           Positive                          Positive
## 292                         Don't know                        Don't know
## 293                           Positive                          Positive
## 294                           Positive                          Positive
## 295                           Positive                        Don't know
## 296                         Don't know                        Don't know
## 297                         Don't know                        Don't know
## 298                           Positive                          Positive
## 299                         Don't know                        Don't know
## 300                           Positive                          Positive
## 302  Not negative, not positive either                          Positive
## 303                           Positive Not negative, not positive either
## 304  Not negative, not positive either                          Negative
## 305  Not negative, not positive either                     Very Negative
## 306  Not negative, not positive either                          Negative
## 307                           Positive                          Negative
## 308                           Positive Not negative, not positive either
## 309                           Positive                          Negative
## 310  Not negative, not positive either                     Very Negative
## 311                           Positive                          Positive
## 312                           Positive                          Positive
## 313                           Negative                          Negative
## 314                      Very Positive                        Don't know
## 315                           Positive                          Positive
## 316                           Positive                          Negative
## 317  Not negative, not positive either Not negative, not positive either
## 318                           Positive                     Very Negative
## 319  Not negative, not positive either                          Negative
## 320                           Positive                          Positive
## 321                           Positive                          Positive
## 322                           Positive                        Don't know
## 323                           Positive                          Positive
## 324                           Positive Not negative, not positive either
## 325                           Positive                          Positive
## 326                           Positive                          Positive
## 327                           Positive                          Negative
## 328                           Positive Not negative, not positive either
## 329  Not negative, not positive either                          Negative
## 330                         Don't know                        Don't know
## 331                      Very Negative                          Negative
## 332                      Very Negative                          Negative
## 333                           Negative Not negative, not positive either
## 334                      Very Negative                          Negative
## 335  Not negative, not positive either                          Positive
## 336                           Negative Not negative, not positive either
## 337                           Negative                          Positive
## 338  Not negative, not positive either                          Negative
## 339                           Positive Not negative, not positive either
## 340                           Negative                          Negative
## 341                      Very Negative                          Negative
## 342  Not negative, not positive either Not negative, not positive either
## 343                           Positive Not negative, not positive either
## 344  Not negative, not positive either                          Negative
## 345  Not negative, not positive either                        Don't know
## 346                      Very Positive                          Positive
## 347  Not negative, not positive either                          Negative
## 348                           Positive                     Very Positive
## 349  Not negative, not positive either                          Negative
## 350                           Negative                     Very Negative
## 351  Not negative, not positive either                          Negative
## 352                         Don't know                        Don't know
## 353  Not negative, not positive either Not negative, not positive either
## 354                         Don't know                        Don't know
## 355  Not negative, not positive either Not negative, not positive either
## 356                         Don't know Not negative, not positive either
## 357  Not negative, not positive either Not negative, not positive either
## 358  Not negative, not positive either                          Negative
## 359  Not negative, not positive either                          Negative
## 360                           Positive                          Negative
## 361                      Very Negative Not negative, not positive either
## 362  Not negative, not positive either                          Negative
## 363  Not negative, not positive either                          Negative
## 364  Not negative, not positive either                          Negative
## 365                         Don't know Not negative, not positive either
## 366  Not negative, not positive either                     Very Negative
## 367  Not negative, not positive either Not negative, not positive either
## 368  Not negative, not positive either Not negative, not positive either
## 369  Not negative, not positive either                          Negative
## 370                         Don't know Not negative, not positive either
## 371  Not negative, not positive either Not negative, not positive either
## 372                           Negative                          Negative
## 373                           Positive Not negative, not positive either
## 374                           Positive                          Positive
## 375                           Positive Not negative, not positive either
## 376  Not negative, not positive either Not negative, not positive either
## 377                           Positive Not negative, not positive either
## 378  Not negative, not positive either                          Positive
## 379                           Positive Not negative, not positive either
## 380  Not negative, not positive either Not negative, not positive either
## 381                         Don't know                        Don't know
## 382                         Don't know                        Don't know
## 383  Not negative, not positive either Not negative, not positive either
## 384                         Don't know Not negative, not positive either
## 385  Not negative, not positive either Not negative, not positive either
## 386                           Positive Not negative, not positive either
## 387  Not negative, not positive either Not negative, not positive either
## 388  Not negative, not positive either Not negative, not positive either
## 389  Not negative, not positive either Not negative, not positive either
## 390  Not negative, not positive either                          Negative
## 391  Not negative, not positive either Not negative, not positive either
## 392  Not negative, not positive either                          Negative
## 393                         Don't know                        Don't know
## 394                         Don't know Not negative, not positive either
## 395  Not negative, not positive either Not negative, not positive either
## 396  Not negative, not positive either Not negative, not positive either
## 397                           Positive                          Negative
## 398                         Don't know Not negative, not positive either
## 399                         Don't know Not negative, not positive either
## 400                         Don't know Not negative, not positive either
## 401  Not negative, not positive either Not negative, not positive either
## 402                         Don't know                     Very Negative
## 403                           Positive Not negative, not positive either
## 404  Not negative, not positive either Not negative, not positive either
## 405  Not negative, not positive either                          Negative
## 406                         Don't know                     Very Negative
## 407                         Don't know                     Very Negative
## 408                           Positive Not negative, not positive either
## 409  Not negative, not positive either                          Negative
## 410  Not negative, not positive either                     Very Negative
## 411                           Positive Not negative, not positive either
## 412                           Positive                     Very Negative
## 413                      Very Positive Not negative, not positive either
## 414                           Positive Not negative, not positive either
## 415                         Don't know                        Don't know
## 416                           Positive                     Very Negative
## 417                         Don't know                        Don't know
## 418                         Don't know                     Very Negative
## 419                           Positive                     Very Negative
## 420                           Positive Not negative, not positive either
## 421                      Very Positive                     Very Negative
## 422                         Don't know                        Don't know
## 423                      Very Positive                     Very Negative
## 424                           Positive                     Very Negative
## 425                           Positive                     Very Negative
## 426                      Very Positive Not negative, not positive either
## 427                           Positive Not negative, not positive either
## 428                         Don't know                        Don't know
## 429  Not negative, not positive either                          Negative
## 430  Not negative, not positive either                          Negative
## 431                      Very Positive Not negative, not positive either
## 432                         Don't know                        Don't know
## 433                           Positive Not negative, not positive either
## 434                           Positive Not negative, not positive either
## 435  Not negative, not positive either                          Negative
## 436                           Positive Not negative, not positive either
## 437                           Positive Not negative, not positive either
## 438                           Positive                          Positive
## 439                      Very Positive                     Very Negative
## 440                           Positive                          Negative
## 441                           Positive Not negative, not positive either
## 442  Not negative, not positive either Not negative, not positive either
## 443                      Very Positive                     Very Negative
## 444                           Positive                          Positive
## 445                      Very Positive                          Positive
## 446                      Very Positive Not negative, not positive either
## 447                      Very Positive Not negative, not positive either
## 448                      Very Positive Not negative, not positive either
## 449                           Positive                          Positive
## 450  Not negative, not positive either Not negative, not positive either
## 451                           Positive Not negative, not positive either
## 452                           Positive Not negative, not positive either
## 453  Not negative, not positive either                              <NA>
## 454  Not negative, not positive either                          Negative
## 455  Not negative, not positive either                          Positive
## 456                           Negative Not negative, not positive either
## 457                         Don't know                          Positive
## 458  Not negative, not positive either                     Very Negative
## 459                           Negative                     Very Negative
## 460  Not negative, not positive either                          Negative
## 461                               <NA>                              <NA>
## 462                      Very Positive                          Positive
## 463                           Positive Not negative, not positive either
## 464  Not negative, not positive either                          Positive
## 465                           Negative                          Negative
## 466                           Negative                     Very Negative
## 467  Not negative, not positive either                          Positive
## 468                           Negative Not negative, not positive either
## 469  Not negative, not positive either                          Negative
## 470  Not negative, not positive either                          Positive
## 471  Not negative, not positive either                          Negative
## 472  Not negative, not positive either Not negative, not positive either
## 473                           Positive                          Positive
## 474                           Positive                          Positive
## 475  Not negative, not positive either                          Negative
## 476                         Don't know                        Don't know
## 477  Not negative, not positive either                          Negative
## 478                           Positive                          Positive
## 479                         Don't know                        Don't know
## 480                         Don't know                        Don't know
## 481                      Very Negative                     Very Negative
## 482  Not negative, not positive either                     Very Negative
## 483  Not negative, not positive either                          Negative
## 484  Not negative, not positive either                     Very Negative
## 485                           Positive                          Positive
## 486                           Positive Not negative, not positive either
## 487                           Positive Not negative, not positive either
## 488  Not negative, not positive either Not negative, not positive either
## 489                           Positive Not negative, not positive either
## 490  Not negative, not positive either                          Negative
## 491  Not negative, not positive either                          Negative
## 492                           Positive                          Positive
## 493                           Negative                     Very Negative
## 494  Not negative, not positive either Not negative, not positive either
## 495  Not negative, not positive either                     Very Negative
## 496                           Positive                          Negative
##               Image..Local.Politicians Image..Local.Government.Employees
## 1    Not negative, not positive either                          Positive
## 2                             Negative                          Positive
## 3    Not negative, not positive either Not negative, not positive either
## 4                        Very Negative Not negative, not positive either
## 5    Not negative, not positive either Not negative, not positive either
## 6    Not negative, not positive either Not negative, not positive either
## 7    Not negative, not positive either Not negative, not positive either
## 8    Not negative, not positive either Not negative, not positive either
## 9    Not negative, not positive either                          Positive
## 10                            Positive                          Positive
## 11   Not negative, not positive either Not negative, not positive either
## 12                            Positive Not negative, not positive either
## 13   Not negative, not positive either Not negative, not positive either
## 14   Not negative, not positive either                              <NA>
## 15   Not negative, not positive either Not negative, not positive either
## 16                            Positive                          Positive
## 17                            Positive                          Positive
## 18                            Positive                          Positive
## 19                            Positive Not negative, not positive either
## 20                            Positive                     Very Positive
## 21                            Positive                          Positive
## 22   Not negative, not positive either Not negative, not positive either
## 23                            Positive                          Positive
## 24   Not negative, not positive either                          Negative
## 25                            Positive                          Positive
## 26                            Positive Not negative, not positive either
## 27                            Positive                          Positive
## 28                            Positive                        Don't know
## 29   Not negative, not positive either Not negative, not positive either
## 30   Not negative, not positive either                          Positive
## 31                            Negative Not negative, not positive either
## 32                            Positive                        Don't know
## 33   Not negative, not positive either Not negative, not positive either
## 34   Not negative, not positive either Not negative, not positive either
## 35                            Positive Not negative, not positive either
## 36                            Negative                     Very Negative
## 37   Not negative, not positive either Not negative, not positive either
## 38   Not negative, not positive either Not negative, not positive either
## 39   Not negative, not positive either Not negative, not positive either
## 40   Not negative, not positive either Not negative, not positive either
## 41   Not negative, not positive either Not negative, not positive either
## 42                            Positive Not negative, not positive either
## 43                            Positive                          Positive
## 44   Not negative, not positive either                              <NA>
## 45   Not negative, not positive either Not negative, not positive either
## 46                       Very Negative                          Negative
## 47                            Negative                          Positive
## 48                            Negative                          Positive
## 49                            Negative Not negative, not positive either
## 50                            Positive Not negative, not positive either
## 51   Not negative, not positive either                          Positive
## 52   Not negative, not positive either                        Don't know
## 53                            Negative                          Negative
## 54   Not negative, not positive either                          Positive
## 55                            Positive                          Positive
## 56                            Negative Not negative, not positive either
## 57                            Positive                          Positive
## 58                            Positive                          Positive
## 59                                <NA>                              <NA>
## 60                            Positive                          Positive
## 61                            Positive                          Positive
## 62                            Positive                          Positive
## 63                            Positive                          Positive
## 64                            Positive                          Positive
## 65                            Positive                          Positive
## 66                            Positive                          Positive
## 67                            Positive                          Positive
## 68                            Positive                          Positive
## 69                       Very Negative                     Very Negative
## 70                            Positive                          Positive
## 71                            Positive                          Positive
## 72                            Positive                          Positive
## 73                            Positive                          Positive
## 74                            Positive                          Positive
## 75                            Positive                          Positive
## 76                            Positive                          Positive
## 77                            Positive                          Positive
## 78                            Positive                          Positive
## 79                            Positive                          Positive
## 80                            Positive                          Positive
## 81                            Positive                          Positive
## 82                            Positive                          Positive
## 83                            Positive                          Positive
## 84                            Positive                          Positive
## 85                            Positive                          Positive
## 86                            Positive Not negative, not positive either
## 87                            Positive                          Positive
## 88                            Positive                          Positive
## 89                            Positive                          Positive
## 90                            Positive                          Positive
## 91                            Positive                          Positive
## 92                            Positive                          Positive
## 93                            Positive                          Positive
## 94                            Positive                          Positive
## 95                            Positive                          Positive
## 96                            Positive                          Positive
## 97                            Positive                          Positive
## 98                            Positive                          Positive
## 99                            Positive                          Positive
## 100                           Positive                          Positive
## 101                           Positive                          Positive
## 102                           Positive Not negative, not positive either
## 103  Not negative, not positive either Not negative, not positive either
## 104                           Positive                          Positive
## 105                           Positive Not negative, not positive either
## 106                               <NA>                              <NA>
## 107                           Positive Not negative, not positive either
## 108                           Positive                          Positive
## 109                           Positive                          Positive
## 110                           Positive                          Positive
## 111                               <NA>                              <NA>
## 112                           Negative Not negative, not positive either
## 113  Not negative, not positive either                          Positive
## 114                           Positive                          Positive
## 115  Not negative, not positive either Not negative, not positive either
## 116  Not negative, not positive either                          Positive
## 117                           Positive                          Positive
## 118                           Positive                          Positive
## 119                           Positive                          Positive
## 120  Not negative, not positive either                          Positive
## 121                           Positive Not negative, not positive either
## 122                           Positive Not negative, not positive either
## 123                           Positive Not negative, not positive either
## 124                           Positive                          Positive
## 125                           Positive                          Positive
## 126  Not negative, not positive either                          Positive
## 127  Not negative, not positive either                          Positive
## 128  Not negative, not positive either Not negative, not positive either
## 129  Not negative, not positive either                     Very Positive
## 130                           Positive Not negative, not positive either
## 131                           Negative                          Positive
## 132                           Positive Not negative, not positive either
## 133                           Positive                          Negative
## 134                           Positive                          Positive
## 135                           Positive                          Positive
## 136                         Don't know                        Don't know
## 137                           Positive Not negative, not positive either
## 138                           Positive                          Positive
## 139  Not negative, not positive either Not negative, not positive either
## 140                           Positive Not negative, not positive either
## 141                           Positive                          Positive
## 142  Not negative, not positive either                          Positive
## 143                           Positive Not negative, not positive either
## 144                           Positive                          Positive
## 145                           Positive Not negative, not positive either
## 146  Not negative, not positive either Not negative, not positive either
## 147                           Negative Not negative, not positive either
## 148  Not negative, not positive either Not negative, not positive either
## 149                           Positive                          Negative
## 150  Not negative, not positive either Not negative, not positive either
## 151                           Negative                          Positive
## 152  Not negative, not positive either                          Positive
## 153                         Don't know                        Don't know
## 154                      Very Negative                          Positive
## 155                      Very Positive                          Positive
## 156                           Negative                          Positive
## 157                           Positive                          Negative
## 158                      Very Positive                     Very Positive
## 159  Not negative, not positive either                          Positive
## 160  Not negative, not positive either                          Positive
## 161                           Positive                     Very Positive
## 162  Not negative, not positive either                          Positive
## 163                         Don't know                        Don't know
## 164                         Don't know                        Don't know
## 165                      Very Positive                     Very Positive
## 166  Not negative, not positive either                          Positive
## 167                      Very Positive                     Very Positive
## 168                           Positive                          Positive
## 169                      Very Positive                          Positive
## 170                         Don't know                        Don't know
## 171                         Don't know                        Don't know
## 172                         Don't know                        Don't know
## 173                         Don't know                        Don't know
## 174                           Positive                          Positive
## 175                           Positive Not negative, not positive either
## 176                           Negative                          Positive
## 177                           Positive                          Positive
## 178                         Don't know Not negative, not positive either
## 179                         Don't know                        Don't know
## 180  Not negative, not positive either                          Positive
## 181                           Positive                          Positive
## 182                           Negative                          Positive
## 183                           Negative                          Negative
## 184                           Negative Not negative, not positive either
## 185                           Negative                          Positive
## 186                           Positive                          Positive
## 187  Not negative, not positive either                          Positive
## 188                         Don't know                        Don't know
## 189                         Don't know                        Don't know
## 190                         Don't know                        Don't know
## 191  Not negative, not positive either                          Negative
## 192  Not negative, not positive either Not negative, not positive either
## 193                      Very Positive                     Very Positive
## 194                         Don't know Not negative, not positive either
## 195                           Positive                          Positive
## 196                           Positive                     Very Positive
## 197                           Positive                          Positive
## 198                           Positive                          Positive
## 199                           Positive Not negative, not positive either
## 200  Not negative, not positive either                          Positive
## 201                      Very Negative Not negative, not positive either
## 202                      Very Negative Not negative, not positive either
## 203                      Very Negative                          Negative
## 204  Not negative, not positive either                          Positive
## 205                      Very Negative Not negative, not positive either
## 206  Not negative, not positive either                          Negative
## 207                      Very Negative Not negative, not positive either
## 208                      Very Negative                     Very Negative
## 209                           Negative Not negative, not positive either
## 210                      Very Negative                     Very Negative
## 211                           Negative                          Negative
## 212                           Negative Not negative, not positive either
## 213                           Negative                          Negative
## 214                           Negative                          Negative
## 215                           Negative                          Negative
## 216                           Negative                          Negative
## 217                           Negative                          Positive
## 218                           Negative                          Negative
## 219                           Positive                          Positive
## 220                           Positive Not negative, not positive either
## 221                      Very Positive Not negative, not positive either
## 222                      Very Positive Not negative, not positive either
## 223                      Very Negative                     Very Negative
## 224                           Positive Not negative, not positive either
## 225                           Positive                          Positive
## 226                           Positive                     Very Positive
## 227                           Negative Not negative, not positive either
## 228  Not negative, not positive either                          Negative
## 229                           Negative                          Positive
## 230                           Negative Not negative, not positive either
## 231                           Negative                          Negative
## 232                           Negative Not negative, not positive either
## 233                           Negative                          Negative
## 234                           Negative                          Negative
## 235                           Negative                          Negative
## 236  Not negative, not positive either                          Positive
## 237                           Negative Not negative, not positive either
## 238                           Negative Not negative, not positive either
## 239                           Negative                          Negative
## 240                           Negative                          Negative
## 241                           Negative                          Negative
## 242                           Negative                          Negative
## 243                           Negative                          Negative
## 244                           Negative                          Negative
## 245                           Positive                          Negative
## 246                           Negative                          Negative
## 247  Not negative, not positive either                          Negative
## 248                           Positive                          Positive
## 249                           Negative Not negative, not positive either
## 250  Not negative, not positive either                          Negative
## 251                           Positive                          Positive
## 252                           Positive                          Positive
## 253                         Don't know                        Don't know
## 254                           Positive                          Positive
## 255                           Positive                          Positive
## 256                           Positive                          Positive
## 257                           Positive                          Positive
## 258                         Don't know                        Don't know
## 259                         Don't know                          Positive
## 260                           Positive                          Positive
## 261                         Don't know                        Don't know
## 262                      Very Positive                     Very Positive
## 263                         Don't know                        Don't know
## 264                           Positive                          Positive
## 265                         Don't know                        Don't know
## 266                           Positive                          Positive
## 267                         Don't know                        Don't know
## 268                           Positive                          Positive
## 269                           Positive                          Positive
## 270                           Positive                          Positive
## 271                           Positive                          Positive
## 272                           Positive                          Positive
## 273                           Positive                          Positive
## 274  Not negative, not positive either                          Positive
## 275                           Positive                          Positive
## 276  Not negative, not positive either                          Positive
## 277                         Don't know                        Don't know
## 278                           Positive                          Positive
## 279                           Negative                          Positive
## 280  Not negative, not positive either Not negative, not positive either
## 281                           Positive                          Positive
## 282                           Positive                          Positive
## 283                           Negative                          Negative
## 284  Not negative, not positive either                          Positive
## 285                           Positive                          Positive
## 286                           Positive                          Positive
## 287                           Positive                          Positive
## 288                         Don't know                        Don't know
## 289                         Don't know                        Don't know
## 290                           Positive                          Positive
## 291                           Positive                          Positive
## 292                         Don't know                        Don't know
## 293                           Positive                          Positive
## 294                           Positive                          Positive
## 295                         Don't know                        Don't know
## 296                         Don't know                          Positive
## 297                         Don't know                        Don't know
## 298                           Positive                          Positive
## 299                         Don't know                        Don't know
## 300                           Positive                          Positive
## 302                           Negative                          Negative
## 303                      Very Negative Not negative, not positive either
## 304                           Negative Not negative, not positive either
## 305                           Negative                          Negative
## 306                           Negative Not negative, not positive either
## 307                           Negative                          Positive
## 308  Not negative, not positive either                          Positive
## 309                           Negative                          Positive
## 310                           Negative Not negative, not positive either
## 311                           Positive                          Positive
## 312                           Positive                          Positive
## 313                           Negative                          Negative
## 314                         Don't know                        Don't know
## 315                           Positive                          Positive
## 316  Not negative, not positive either                          Positive
## 317                           Positive                          Positive
## 318                      Very Negative                          Positive
## 319                           Negative Not negative, not positive either
## 320  Not negative, not positive either Not negative, not positive either
## 321                           Positive                          Positive
## 322                           Negative                          Positive
## 323                           Positive                          Positive
## 324  Not negative, not positive either                          Positive
## 325                           Positive                          Positive
## 326                           Positive                          Positive
## 327                           Negative                          Positive
## 328  Not negative, not positive either                          Negative
## 329  Not negative, not positive either                     Very Positive
## 330                         Don't know                        Don't know
## 331  Not negative, not positive either                          Positive
## 332  Not negative, not positive either                          Positive
## 333                           Positive                     Very Positive
## 334  Not negative, not positive either                          Positive
## 335                           Negative                     Very Negative
## 336                           Negative Not negative, not positive either
## 337                           Negative                          Positive
## 338                      Very Positive                          Negative
## 339  Not negative, not positive either Not negative, not positive either
## 340                           Negative Not negative, not positive either
## 341                           Negative                     Very Negative
## 342  Not negative, not positive either Not negative, not positive either
## 343                           Positive                          Positive
## 344                           Positive                          Positive
## 345                         Don't know                          Positive
## 346  Not negative, not positive either                          Positive
## 347                           Negative Not negative, not positive either
## 348                      Very Positive Not negative, not positive either
## 349                           Negative Not negative, not positive either
## 350                      Very Negative                          Negative
## 351                           Negative                          Negative
## 352  Not negative, not positive either                        Don't know
## 353  Not negative, not positive either Not negative, not positive either
## 354  Not negative, not positive either                        Don't know
## 355  Not negative, not positive either Not negative, not positive either
## 356                           Negative Not negative, not positive either
## 357  Not negative, not positive either                          Positive
## 358  Not negative, not positive either Not negative, not positive either
## 359  Not negative, not positive either Not negative, not positive either
## 360                           Negative                          Positive
## 361  Not negative, not positive either Not negative, not positive either
## 362  Not negative, not positive either Not negative, not positive either
## 363  Not negative, not positive either                          Negative
## 364  Not negative, not positive either Not negative, not positive either
## 365  Not negative, not positive either Not negative, not positive either
## 366  Not negative, not positive either Not negative, not positive either
## 367  Not negative, not positive either Not negative, not positive either
## 368  Not negative, not positive either Not negative, not positive either
## 369                           Negative Not negative, not positive either
## 370  Not negative, not positive either Not negative, not positive either
## 371  Not negative, not positive either Not negative, not positive either
## 372  Not negative, not positive either Not negative, not positive either
## 373  Not negative, not positive either                          Positive
## 374                           Positive                          Positive
## 375  Not negative, not positive either Not negative, not positive either
## 376  Not negative, not positive either Not negative, not positive either
## 377  Not negative, not positive either                          Positive
## 378                           Positive                          Positive
## 379  Not negative, not positive either Not negative, not positive either
## 380  Not negative, not positive either Not negative, not positive either
## 381                           Negative                        Don't know
## 382  Not negative, not positive either                        Don't know
## 383  Not negative, not positive either Not negative, not positive either
## 384  Not negative, not positive either Not negative, not positive either
## 385  Not negative, not positive either Not negative, not positive either
## 386  Not negative, not positive either Not negative, not positive either
## 387  Not negative, not positive either Not negative, not positive either
## 388  Not negative, not positive either Not negative, not positive either
## 389  Not negative, not positive either Not negative, not positive either
## 390                           Negative Not negative, not positive either
## 391  Not negative, not positive either Not negative, not positive either
## 392                           Negative Not negative, not positive either
## 393  Not negative, not positive either                        Don't know
## 394  Not negative, not positive either Not negative, not positive either
## 395  Not negative, not positive either Not negative, not positive either
## 396  Not negative, not positive either Not negative, not positive either
## 397                           Negative                          Negative
## 398  Not negative, not positive either                        Don't know
## 399  Not negative, not positive either                        Don't know
## 400  Not negative, not positive either Not negative, not positive either
## 401  Not negative, not positive either Not negative, not positive either
## 402                      Very Negative                        Don't know
## 403                      Very Negative                          Positive
## 404  Not negative, not positive either Not negative, not positive either
## 405  Not negative, not positive either Not negative, not positive either
## 406                      Very Negative                        Don't know
## 407                      Very Negative                        Don't know
## 408  Not negative, not positive either                          Positive
## 409                           Positive                          Positive
## 410                      Very Negative                          Positive
## 411  Not negative, not positive either                          Positive
## 412                      Very Negative                          Positive
## 413  Not negative, not positive either                     Very Positive
## 414  Not negative, not positive either                          Negative
## 415                         Don't know                        Don't know
## 416                      Very Negative                          Positive
## 417                         Don't know                        Don't know
## 418                      Very Negative                        Don't know
## 419                      Very Negative                          Positive
## 420                           Positive                          Positive
## 421                      Very Negative                     Very Positive
## 422                         Don't know                        Don't know
## 423                      Very Negative                     Very Positive
## 424                      Very Negative                          Positive
## 425                      Very Negative                          Positive
## 426  Not negative, not positive either                     Very Positive
## 427  Not negative, not positive either                          Positive
## 428                         Don't know                        Don't know
## 429                           Negative Not negative, not positive either
## 430                           Negative                          Positive
## 431  Not negative, not positive either                     Very Positive
## 432                         Don't know                        Don't know
## 433  Not negative, not positive either                          Positive
## 434  Not negative, not positive either                          Positive
## 435                           Negative Not negative, not positive either
## 436  Not negative, not positive either                          Positive
## 437  Not negative, not positive either                          Positive
## 438  Not negative, not positive either                          Positive
## 439                      Very Negative                     Very Positive
## 440                           Negative                          Positive
## 441  Not negative, not positive either                          Positive
## 442  Not negative, not positive either Not negative, not positive either
## 443                      Very Negative                     Very Positive
## 444  Not negative, not positive either                          Positive
## 445                           Positive                     Very Positive
## 446  Not negative, not positive either                     Very Positive
## 447  Not negative, not positive either                     Very Positive
## 448  Not negative, not positive either                     Very Positive
## 449  Not negative, not positive either                          Positive
## 450  Not negative, not positive either                          Positive
## 451  Not negative, not positive either                          Positive
## 452  Not negative, not positive either                          Positive
## 453                               <NA> Not negative, not positive either
## 454                           Negative                     Very Negative
## 455                           Positive Not negative, not positive either
## 456  Not negative, not positive either                          Negative
## 457                           Positive                        Don't know
## 458  Not negative, not positive either                          Positive
## 459                           Negative                          Negative
## 460  Not negative, not positive either Not negative, not positive either
## 461                               <NA>                              <NA>
## 462  Not negative, not positive either                          Positive
## 463                           Positive                          Positive
## 464                           Negative                     Very Positive
## 465                           Negative                          Negative
## 466  Not negative, not positive either                          Negative
## 467                           Positive                     Very Positive
## 468                           Negative                          Positive
## 469                           Negative Not negative, not positive either
## 470                      Very Positive                     Very Positive
## 471                      Very Negative                     Very Negative
## 472                           Positive Not negative, not positive either
## 473                           Positive                          Positive
## 474                           Positive                          Positive
## 475  Not negative, not positive either                          Positive
## 476                         Don't know                        Don't know
## 477                           Negative                          Positive
## 478                           Positive                          Positive
## 479                         Don't know                        Don't know
## 480                           Positive                          Positive
## 481                           Negative                          Negative
## 482                      Very Negative                          Negative
## 483  Not negative, not positive either Not negative, not positive either
## 484                      Very Negative                          Negative
## 485                           Positive                          Positive
## 486                           Positive                          Positive
## 487  Not negative, not positive either                          Positive
## 488  Not negative, not positive either Not negative, not positive either
## 489  Not negative, not positive either                          Positive
## 490                      Very Negative                          Negative
## 491                           Negative Not negative, not positive either
## 492                           Positive                          Positive
## 493                      Very Negative                     Very Negative
## 494                           Negative                          Negative
## 495                      Very Negative                          Negative
## 496                           Negative                          Positive
##                       Image..Policemen                      Image..Judge
## 1                             Positive                          Positive
## 2                             Positive                          Positive
## 3    Not negative, not positive either                        Don't know
## 4    Not negative, not positive either Not negative, not positive either
## 5                             Positive                              <NA>
## 6                             Positive                     Very Positive
## 7                        Very Positive                     Very Positive
## 8    Not negative, not positive either                          Positive
## 9                             Positive                     Very Positive
## 10                            Positive                        Don't know
## 11                            Positive                          Positive
## 12                            Negative                          Positive
## 13   Not negative, not positive either Not negative, not positive either
## 14                            Negative                          Negative
## 15                            Negative                          Positive
## 16                            Positive                        Don't know
## 17                            Positive                     Very Positive
## 18   Not negative, not positive either                        Don't know
## 19   Not negative, not positive either                          Positive
## 20                       Very Positive                        Don't know
## 21                            Positive                     Very Positive
## 22                            Positive Not negative, not positive either
## 23                            Positive                          Positive
## 24                            Negative                          Positive
## 25                            Positive Not negative, not positive either
## 26                            Positive                        Don't know
## 27                            Positive                     Very Positive
## 28                            Positive                     Very Positive
## 29                            Positive                     Very Positive
## 30   Not negative, not positive either Not negative, not positive either
## 31                            Positive                          Positive
## 32                            Positive                          Positive
## 33                            Positive                     Very Positive
## 34   Not negative, not positive either Not negative, not positive either
## 35                            Positive Not negative, not positive either
## 36                       Very Negative                          Negative
## 37   Not negative, not positive either Not negative, not positive either
## 38   Not negative, not positive either Not negative, not positive either
## 39   Not negative, not positive either Not negative, not positive either
## 40   Not negative, not positive either Not negative, not positive either
## 41   Not negative, not positive either Not negative, not positive either
## 42   Not negative, not positive either Not negative, not positive either
## 43   Not negative, not positive either                          Positive
## 44   Not negative, not positive either                          Positive
## 45   Not negative, not positive either Not negative, not positive either
## 46                            Negative                          Negative
## 47                            Positive                          Positive
## 48                            Positive                          Positive
## 49                            Positive                          Positive
## 50   Not negative, not positive either                        Don't know
## 51                            Positive                          Positive
## 52                            Positive                        Don't know
## 53   Not negative, not positive either Not negative, not positive either
## 54                            Positive                          Positive
## 55                            Positive                          Positive
## 56   Not negative, not positive either                        Don't know
## 57   Not negative, not positive either                        Don't know
## 58                            Positive                        Don't know
## 59                                <NA>                              <NA>
## 60                            Positive                     Very Negative
## 61                            Positive                          Positive
## 62                            Positive                          Positive
## 63                            Positive                          Positive
## 64                            Positive                          Positive
## 65                            Positive                          Positive
## 66                            Positive                          Positive
## 67                            Positive                          Positive
## 68                            Positive                          Positive
## 69                            Negative Not negative, not positive either
## 70   Not negative, not positive either Not negative, not positive either
## 71   Not negative, not positive either Not negative, not positive either
## 72                            Positive                          Positive
## 73                            Positive                          Positive
## 74                            Positive                          Positive
## 75                            Positive                          Positive
## 76                            Positive                          Positive
## 77                            Positive                          Positive
## 78                            Positive                          Positive
## 79                            Positive                          Positive
## 80                            Positive                          Positive
## 81                            Positive                          Positive
## 82                            Positive                          Positive
## 83   Not negative, not positive either Not negative, not positive either
## 84                            Positive                          Positive
## 85                            Positive                          Positive
## 86                          Don't know                          Positive
## 87   Not negative, not positive either Not negative, not positive either
## 88   Not negative, not positive either Not negative, not positive either
## 89                            Positive                          Positive
## 90                            Positive                          Positive
## 91                            Positive                          Positive
## 92                            Positive                          Positive
## 93                            Positive                          Positive
## 94                            Positive                          Positive
## 95                            Positive                          Positive
## 96                            Positive                          Positive
## 97                            Positive                          Positive
## 98                            Positive                          Positive
## 99                            Positive                          Positive
## 100                           Positive                          Positive
## 101                      Very Positive                        Don't know
## 102                           Positive                          Positive
## 103                           Positive                          Positive
## 104                           Positive                     Very Positive
## 105                           Positive                          Positive
## 106                               <NA>                              <NA>
## 107  Not negative, not positive either                          Positive
## 108                           Positive                          Positive
## 109                           Positive                          Positive
## 110                           Positive                          Positive
## 111                               <NA>                              <NA>
## 112                           Positive                          Positive
## 113                           Positive                          Positive
## 114                           Positive                          Positive
## 115                           Positive                          Positive
## 116                           Positive                        Don't know
## 117                           Positive                          Positive
## 118                      Very Positive                     Very Positive
## 119                           Positive                          Positive
## 120                           Positive                          Positive
## 121                           Positive                          Positive
## 122                           Positive                          Positive
## 123                           Positive                          Positive
## 124                           Positive                          Positive
## 125                           Positive                          Positive
## 126                           Positive                     Very Positive
## 127                           Positive                          Positive
## 128                           Positive Not negative, not positive either
## 129                           Positive                     Very Positive
## 130                           Positive Not negative, not positive either
## 131                      Very Positive Not negative, not positive either
## 132                           Positive                          Positive
## 133  Not negative, not positive either Not negative, not positive either
## 134                           Positive                          Positive
## 135                           Positive                          Positive
## 136                         Don't know                        Don't know
## 137                           Positive Not negative, not positive either
## 138                           Positive Not negative, not positive either
## 139                           Positive                          Positive
## 140                           Positive                          Positive
## 141                           Positive                          Positive
## 142                           Positive                          Positive
## 143                           Positive Not negative, not positive either
## 144                           Positive                          Positive
## 145                           Positive Not negative, not positive either
## 146  Not negative, not positive either Not negative, not positive either
## 147                           Negative                          Positive
## 148  Not negative, not positive either Not negative, not positive either
## 149  Not negative, not positive either Not negative, not positive either
## 150  Not negative, not positive either                          Positive
## 151                           Positive                          Positive
## 152                           Positive                          Positive
## 153                           Positive                          Positive
## 154                           Positive                          Positive
## 155                           Positive                          Positive
## 156                           Positive                          Positive
## 157                           Negative                          Positive
## 158                           Positive                          Positive
## 159                           Positive Not negative, not positive either
## 160                           Positive                          Positive
## 161                      Very Positive                     Very Positive
## 162                           Positive                          Positive
## 163                           Positive Not negative, not positive either
## 164                           Positive                          Positive
## 165                           Positive                          Positive
## 166                           Positive                          Positive
## 167                           Positive                          Positive
## 168                           Positive                          Positive
## 169                           Positive Not negative, not positive either
## 170                           Positive                          Positive
## 171                           Positive                          Positive
## 172                           Positive Not negative, not positive either
## 173                           Positive                          Positive
## 174                           Positive                          Positive
## 175                           Positive                          Positive
## 176                           Positive                          Positive
## 177                           Positive                          Positive
## 178                           Positive                          Positive
## 179                           Positive                          Positive
## 180                           Positive                          Positive
## 181                           Positive                          Positive
## 182                           Positive                          Positive
## 183                           Positive                          Positive
## 184                           Positive                          Positive
## 185                           Positive                          Positive
## 186                           Positive                          Positive
## 187                           Positive                          Positive
## 188                           Positive Not negative, not positive either
## 189  Not negative, not positive either                          Positive
## 190                           Positive                          Positive
## 191                           Positive                          Positive
## 192                           Positive                          Positive
## 193                           Positive                     Very Positive
## 194                           Positive                          Positive
## 195                           Positive                          Positive
## 196                      Very Positive                     Very Positive
## 197                           Positive                          Positive
## 198                           Positive                     Very Positive
## 199                           Positive                     Very Positive
## 200                           Positive                          Positive
## 201                           Positive                     Very Positive
## 202  Not negative, not positive either                          Positive
## 203  Not negative, not positive either                          Positive
## 204                           Negative Not negative, not positive either
## 205                           Negative                          Positive
## 206                           Positive                          Positive
## 207                           Positive                     Very Positive
## 208                           Negative                          Positive
## 209                           Positive Not negative, not positive either
## 210                           Negative                          Positive
## 211  Not negative, not positive either                          Positive
## 212  Not negative, not positive either                          Positive
## 213  Not negative, not positive either                          Positive
## 214  Not negative, not positive either                          Positive
## 215  Not negative, not positive either                          Positive
## 216  Not negative, not positive either                          Positive
## 217                           Positive                     Very Positive
## 218                           Positive                          Positive
## 219  Not negative, not positive either                          Positive
## 220                           Positive Not negative, not positive either
## 221                           Positive                          Positive
## 222                           Negative Not negative, not positive either
## 223                           Negative                          Positive
## 224                           Positive                          Negative
## 225                      Very Positive                          Positive
## 226                           Positive Not negative, not positive either
## 227                           Negative Not negative, not positive either
## 228  Not negative, not positive either                          Positive
## 229  Not negative, not positive either                          Negative
## 230                           Positive                          Positive
## 231                           Positive                          Positive
## 232                           Positive                          Positive
## 233  Not negative, not positive either Not negative, not positive either
## 234  Not negative, not positive either                          Positive
## 235  Not negative, not positive either                          Positive
## 236                           Positive Not negative, not positive either
## 237  Not negative, not positive either                          Positive
## 238                           Negative Not negative, not positive either
## 239  Not negative, not positive either                          Positive
## 240  Not negative, not positive either                          Positive
## 241  Not negative, not positive either                          Positive
## 242  Not negative, not positive either                          Positive
## 243  Not negative, not positive either                          Positive
## 244  Not negative, not positive either                          Positive
## 245                      Very Negative Not negative, not positive either
## 246                           Positive                          Positive
## 247  Not negative, not positive either                          Positive
## 248                      Very Positive                          Positive
## 249                           Positive Not negative, not positive either
## 250                      Very Negative                     Very Negative
## 251                           Positive                          Positive
## 252                           Positive                          Positive
## 253                           Positive                          Positive
## 254                      Very Positive                     Very Positive
## 255                           Positive                          Positive
## 256                           Positive                          Positive
## 257                           Positive                          Positive
## 258                      Very Positive                     Very Positive
## 259                           Positive                          Positive
## 260                      Very Positive                     Very Positive
## 261                      Very Positive                        Don't know
## 262                      Very Positive                     Very Positive
## 263                         Don't know                        Don't know
## 264                           Positive                          Positive
## 265                      Very Positive                     Very Positive
## 266                           Positive                          Positive
## 267                         Don't know                          Positive
## 268                           Positive                          Positive
## 269                           Positive                          Positive
## 270                           Positive                          Positive
## 271                           Positive                          Positive
## 272                           Positive                          Positive
## 273                           Positive                          Positive
## 274  Not negative, not positive either                          Positive
## 275                           Positive                          Positive
## 276                           Positive Not negative, not positive either
## 277                           Positive                          Positive
## 278                           Positive                          Positive
## 279                           Positive                          Positive
## 280  Not negative, not positive either Not negative, not positive either
## 281                           Positive                          Positive
## 282                           Positive                          Positive
## 283                           Positive                          Positive
## 284  Not negative, not positive either                          Positive
## 285                           Positive                          Positive
## 286                           Positive                          Positive
## 287                           Positive                          Positive
## 288                           Positive                          Positive
## 289                      Very Positive                          Positive
## 290                           Positive                          Positive
## 291                           Positive                          Positive
## 292                           Positive                        Don't know
## 293                           Positive                          Positive
## 294                           Positive                          Positive
## 295                           Positive                          Positive
## 296                           Positive                          Positive
## 297                           Positive                          Positive
## 298                           Positive                          Positive
## 299                      Very Positive                     Very Positive
## 300                           Positive                          Positive
## 302                           Negative                          Negative
## 303                           Positive                     Very Negative
## 304  Not negative, not positive either                          Negative
## 305  Not negative, not positive either Not negative, not positive either
## 306                           Negative Not negative, not positive either
## 307                           Positive Not negative, not positive either
## 308                           Positive                          Positive
## 309                           Positive                          Positive
## 310                      Very Negative                          Negative
## 311                           Positive                          Positive
## 312                           Positive                          Positive
## 313                           Negative                          Negative
## 314                      Very Positive                     Very Positive
## 315                           Positive                          Positive
## 316                           Positive Not negative, not positive either
## 317  Not negative, not positive either Not negative, not positive either
## 318                           Positive                          Positive
## 319  Not negative, not positive either Not negative, not positive either
## 320  Not negative, not positive either                          Positive
## 321                           Positive                          Positive
## 322                           Positive                          Positive
## 323                           Positive                          Positive
## 324                           Positive                          Positive
## 325                           Positive                          Positive
## 326                           Positive                          Positive
## 327                           Positive                          Positive
## 328                           Negative                          Negative
## 329                           Negative Not negative, not positive either
## 330                         Don't know                        Don't know
## 331                      Very Positive                        Don't know
## 332                      Very Positive                        Don't know
## 333                         Don't know                     Very Positive
## 334                      Very Positive                        Don't know
## 335                           Negative                          Positive
## 336                           Negative Not negative, not positive either
## 337                           Negative                          Positive
## 338                           Negative                     Very Positive
## 339  Not negative, not positive either                          Positive
## 340  Not negative, not positive either                          Positive
## 341                      Very Negative                          Negative
## 342  Not negative, not positive either Not negative, not positive either
## 343                           Positive Not negative, not positive either
## 344                           Positive                          Positive
## 345  Not negative, not positive either                          Positive
## 346                           Positive                          Positive
## 347                           Negative Not negative, not positive either
## 348                           Positive Not negative, not positive either
## 349                           Negative Not negative, not positive either
## 350  Not negative, not positive either Not negative, not positive either
## 351                           Negative                          Negative
## 352                         Don't know                        Don't know
## 353  Not negative, not positive either                          Positive
## 354  Not negative, not positive either Not negative, not positive either
## 355  Not negative, not positive either Not negative, not positive either
## 356                           Negative Not negative, not positive either
## 357  Not negative, not positive either Not negative, not positive either
## 358  Not negative, not positive either                          Positive
## 359  Not negative, not positive either Not negative, not positive either
## 360                           Positive                          Positive
## 361                           Positive Not negative, not positive either
## 362                           Positive                          Positive
## 363  Not negative, not positive either Not negative, not positive either
## 364                           Positive                          Positive
## 365  Not negative, not positive either Not negative, not positive either
## 366  Not negative, not positive either Not negative, not positive either
## 367  Not negative, not positive either Not negative, not positive either
## 368  Not negative, not positive either Not negative, not positive either
## 369  Not negative, not positive either Not negative, not positive either
## 370  Not negative, not positive either Not negative, not positive either
## 371  Not negative, not positive either Not negative, not positive either
## 372                           Positive                          Positive
## 373  Not negative, not positive either Not negative, not positive either
## 374                           Positive                          Positive
## 375  Not negative, not positive either Not negative, not positive either
## 376  Not negative, not positive either                          Positive
## 377                           Positive                          Positive
## 378                           Positive Not negative, not positive either
## 379                           Negative                          Positive
## 380  Not negative, not positive either Not negative, not positive either
## 381  Not negative, not positive either Not negative, not positive either
## 382  Not negative, not positive either Not negative, not positive either
## 383  Not negative, not positive either Not negative, not positive either
## 384  Not negative, not positive either Not negative, not positive either
## 385  Not negative, not positive either Not negative, not positive either
## 386  Not negative, not positive either Not negative, not positive either
## 387  Not negative, not positive either Not negative, not positive either
## 388  Not negative, not positive either Not negative, not positive either
## 389  Not negative, not positive either Not negative, not positive either
## 390  Not negative, not positive either Not negative, not positive either
## 391  Not negative, not positive either Not negative, not positive either
## 392                           Negative Not negative, not positive either
## 393  Not negative, not positive either Not negative, not positive either
## 394  Not negative, not positive either                          Positive
## 395  Not negative, not positive either Not negative, not positive either
## 396  Not negative, not positive either                          Positive
## 397  Not negative, not positive either Not negative, not positive either
## 398  Not negative, not positive either Not negative, not positive either
## 399  Not negative, not positive either Not negative, not positive either
## 400  Not negative, not positive either Not negative, not positive either
## 401  Not negative, not positive either Not negative, not positive either
## 402                           Positive                          Positive
## 403                           Positive                          Positive
## 404                           Positive                          Positive
## 405                           Positive                          Positive
## 406  Not negative, not positive either                          Positive
## 407  Not negative, not positive either                          Positive
## 408                           Positive                          Positive
## 409                      Very Positive                          Positive
## 410                           Positive                          Positive
## 411                           Positive                          Positive
## 412                           Positive                          Positive
## 413                           Positive                          Positive
## 414                           Positive                          Positive
## 415  Not negative, not positive either Not negative, not positive either
## 416                           Positive                          Positive
## 417                           Positive                          Positive
## 418                           Positive                          Positive
## 419                           Positive                          Positive
## 420                           Positive                          Positive
## 421                      Very Positive                     Very Positive
## 422                      Very Positive                     Very Positive
## 423                      Very Positive                     Very Positive
## 424                           Positive                          Positive
## 425                           Positive                          Positive
## 426                      Very Positive                     Very Positive
## 427                           Positive                          Positive
## 428                         Don't know                        Don't know
## 429  Not negative, not positive either Not negative, not positive either
## 430                           Positive                          Positive
## 431                      Very Positive                     Very Positive
## 432                         Don't know                        Don't know
## 433                           Positive                          Positive
## 434                           Positive                          Positive
## 435  Not negative, not positive either Not negative, not positive either
## 436                           Positive                          Positive
## 437                           Positive                          Positive
## 438                      Very Positive                          Positive
## 439                      Very Positive                     Very Positive
## 440                           Positive                          Positive
## 441                           Positive                          Positive
## 442  Not negative, not positive either                              <NA>
## 443                      Very Positive                     Very Positive
## 444  Not negative, not positive either                          Positive
## 445                      Very Positive                     Very Positive
## 446                      Very Positive                     Very Positive
## 447  Not negative, not positive either                     Very Positive
## 448                      Very Positive                     Very Positive
## 449  Not negative, not positive either                          Positive
## 450                           Positive                          Positive
## 451                           Positive                          Positive
## 452  Not negative, not positive either                          Positive
## 453  Not negative, not positive either Not negative, not positive either
## 454                           Negative                          Negative
## 455  Not negative, not positive either                          Positive
## 456  Not negative, not positive either                     Very Negative
## 457                           Positive Not negative, not positive either
## 458  Not negative, not positive either Not negative, not positive either
## 459                           Negative Not negative, not positive either
## 460                           Negative Not negative, not positive either
## 461                           Negative                          Negative
## 462                           Positive                          Positive
## 463                      Very Positive                     Very Positive
## 464                           Positive                          Positive
## 465                           Positive                     Very Positive
## 466  Not negative, not positive either                          Negative
## 467                      Very Positive                     Very Positive
## 468                      Very Negative                     Very Positive
## 469  Not negative, not positive either                          Positive
## 470                           Positive                          Positive
## 471                           Positive                          Positive
## 472  Not negative, not positive either                          Positive
## 473  Not negative, not positive either Not negative, not positive either
## 474  Not negative, not positive either                          Negative
## 475                           Positive                          Positive
## 476                         Don't know                        Don't know
## 477                           Positive                          Positive
## 478                           Positive                          Positive
## 479                         Don't know                        Don't know
## 480                           Positive                          Positive
## 481                           Negative                     Very Negative
## 482                      Very Negative                     Very Negative
## 483  Not negative, not positive either Not negative, not positive either
## 484                           Negative Not negative, not positive either
## 485                           Positive                     Very Positive
## 486  Not negative, not positive either                     Very Positive
## 487                           Positive                          Positive
## 488  Not negative, not positive either Not negative, not positive either
## 489                           Positive                          Positive
## 490                      Very Negative Not negative, not positive either
## 491  Not negative, not positive either Not negative, not positive either
## 492                           Positive                          Positive
## 493                      Very Negative                     Very Negative
## 494  Not negative, not positive either Not negative, not positive either
## 495  Not negative, not positive either                          Positive
## 496                           Positive                          Positive
##                         Image..Lawyers                     Image..Doctor
## 1                             Positive                     Very Positive
## 2                             Positive                          Positive
## 3                             Negative Not negative, not positive either
## 4    Not negative, not positive either                     Very Positive
## 5                                 <NA>                     Very Positive
## 6                             Positive                          Positive
## 7                        Very Positive                     Very Positive
## 8                             Positive                          Positive
## 9                        Very Positive                          Positive
## 10   Not negative, not positive either                          Positive
## 11                            Positive                          Positive
## 12   Not negative, not positive either                              <NA>
## 13   Not negative, not positive either                          Positive
## 14                            Positive                          Positive
## 15                            Positive                     Very Positive
## 16                          Don't know                          Positive
## 17                       Very Positive                     Very Positive
## 18                          Don't know                          Positive
## 19                            Positive                     Very Positive
## 20                          Don't know                     Very Positive
## 21                       Very Positive                     Very Positive
## 22                            Positive                          Negative
## 23                            Positive                          Positive
## 24                       Very Positive Not negative, not positive either
## 25   Not negative, not positive either                          Positive
## 26                          Don't know                          Positive
## 27                            Positive                          Positive
## 28                          Don't know                          Positive
## 29                          Don't know                          Positive
## 30                            Positive                          Positive
## 31   Not negative, not positive either                          Positive
## 32                            Positive                          Positive
## 33   Not negative, not positive either                          Positive
## 34   Not negative, not positive either                          Positive
## 35   Not negative, not positive either Not negative, not positive either
## 36                            Negative                          Negative
## 37   Not negative, not positive either                          Positive
## 38   Not negative, not positive either Not negative, not positive either
## 39                            Negative                          Positive
## 40   Not negative, not positive either                          Positive
## 41                            Positive Not negative, not positive either
## 42   Not negative, not positive either                          Positive
## 43   Not negative, not positive either                          Positive
## 44   Not negative, not positive either                          Positive
## 45   Not negative, not positive either                          Positive
## 46                            Negative Not negative, not positive either
## 47                            Positive                          Positive
## 48                            Positive                          Positive
## 49                            Positive                     Very Positive
## 50                            Positive                          Positive
## 51                            Positive                          Positive
## 52                          Don't know                          Positive
## 53   Not negative, not positive either                          Positive
## 54                            Positive                          Positive
## 55                            Negative                     Very Positive
## 56                          Don't know                          Positive
## 57                          Don't know                          Positive
## 58                          Don't know                     Very Negative
## 59                                <NA>                              <NA>
## 60                          Don't know                          Positive
## 61                            Positive                          Positive
## 62                            Positive                          Positive
## 63                            Positive                          Positive
## 64                            Positive                          Positive
## 65                            Positive                          Positive
## 66                            Positive                          Positive
## 67                            Positive                          Positive
## 68                            Positive                          Positive
## 69   Not negative, not positive either                          Positive
## 70   Not negative, not positive either                          Positive
## 71   Not negative, not positive either                          Positive
## 72                            Positive                          Positive
## 73                            Positive                          Positive
## 74                            Positive                          Positive
## 75                            Positive                          Positive
## 76                            Positive                          Positive
## 77                            Positive                          Positive
## 78                            Positive                          Positive
## 79                            Positive                          Positive
## 80                            Positive                          Positive
## 81                            Positive                          Positive
## 82                            Positive                          Positive
## 83   Not negative, not positive either                          Positive
## 84                            Positive                          Positive
## 85                            Positive                          Positive
## 86                            Positive                          Positive
## 87   Not negative, not positive either                          Positive
## 88   Not negative, not positive either                          Positive
## 89                            Positive                          Positive
## 90                            Positive                          Positive
## 91                            Positive                          Positive
## 92                            Positive                          Positive
## 93                            Positive                          Positive
## 94                            Positive                          Positive
## 95                            Positive                          Positive
## 96                            Positive                          Positive
## 97                            Positive                          Positive
## 98                            Positive                          Positive
## 99                            Positive                          Positive
## 100                           Positive                          Positive
## 101                         Don't know                          Positive
## 102                      Very Positive                     Very Positive
## 103                           Positive                          Positive
## 104                      Very Positive                          Positive
## 105                           Positive                          Positive
## 106                               <NA>                              <NA>
## 107                           Positive                          Positive
## 108                           Positive                          Positive
## 109                           Positive                          Positive
## 110                           Positive                          Positive
## 111                               <NA>                              <NA>
## 112                           Positive                          Positive
## 113                           Positive                          Positive
## 114                           Positive                          Positive
## 115                      Very Positive                          Positive
## 116                           Positive                          Positive
## 117                           Positive                          Positive
## 118                      Very Positive                     Very Positive
## 119                           Positive                          Positive
## 120  Not negative, not positive either                          Positive
## 121                           Negative Not negative, not positive either
## 122                           Positive                          Positive
## 123                           Positive                          Positive
## 124                           Positive                          Positive
## 125                           Positive                          Positive
## 126                      Very Positive                          Positive
## 127  Not negative, not positive either                          Positive
## 128                           Positive                          Positive
## 129                           Positive                     Very Positive
## 130                           Positive                     Very Positive
## 131                           Positive                     Very Positive
## 132  Not negative, not positive either                          Positive
## 133  Not negative, not positive either                          Positive
## 134                           Positive                          Positive
## 135                           Positive                          Positive
## 136                         Don't know                        Don't know
## 137                           Positive                          Positive
## 138  Not negative, not positive either                          Positive
## 139                           Positive                          Positive
## 140                           Positive Not negative, not positive either
## 141                           Positive                          Positive
## 142  Not negative, not positive either                          Positive
## 143                           Positive                          Positive
## 144                           Positive                          Positive
## 145                           Positive                          Positive
## 146  Not negative, not positive either Not negative, not positive either
## 147                           Negative                          Negative
## 148                           Negative                          Negative
## 149                           Negative Not negative, not positive either
## 150  Not negative, not positive either                          Negative
## 151                           Positive                          Positive
## 152                           Positive                          Positive
## 153                         Don't know                          Positive
## 154                           Positive                          Positive
## 155                           Positive                          Positive
## 156                           Positive                          Positive
## 157                           Positive                          Positive
## 158                      Very Positive                     Very Positive
## 159                           Positive                          Positive
## 160                           Positive                          Positive
## 161                      Very Positive                     Very Positive
## 162                           Positive                          Positive
## 163                           Positive                          Positive
## 164                           Positive                          Positive
## 165                      Very Positive                     Very Positive
## 166                      Very Positive                          Positive
## 167                      Very Positive                     Very Positive
## 168                           Positive                          Positive
## 169                           Positive                          Positive
## 170                      Very Positive                          Positive
## 171                           Negative                          Positive
## 172                           Positive Not negative, not positive either
## 173  Not negative, not positive either                          Positive
## 174                           Positive                          Positive
## 175                           Positive Not negative, not positive either
## 176                           Positive                          Positive
## 177                           Positive                          Positive
## 178                           Positive                          Positive
## 179                      Very Positive                     Very Positive
## 180                           Positive                          Positive
## 181                           Positive                          Positive
## 182                           Positive                          Positive
## 183                           Positive                          Positive
## 184                      Very Positive                          Positive
## 185                           Positive                          Positive
## 186                      Very Positive                          Positive
## 187                           Positive                          Positive
## 188  Not negative, not positive either                          Positive
## 189                           Positive                          Positive
## 190                      Very Positive                          Positive
## 191                           Positive                          Positive
## 192                         Don't know                          Positive
## 193                           Positive                          Positive
## 194                           Positive                          Positive
## 195                           Positive                          Positive
## 196                           Positive                     Very Positive
## 197  Not negative, not positive either                          Positive
## 198                         Don't know                          Positive
## 199                           Positive                          Positive
## 200                           Positive                          Positive
## 201                      Very Positive Not negative, not positive either
## 202  Not negative, not positive either                          Positive
## 203  Not negative, not positive either Not negative, not positive either
## 204                           Positive Not negative, not positive either
## 205                           Positive                          Positive
## 206  Not negative, not positive either                          Positive
## 207                      Very Positive                          Positive
## 208                      Very Positive                          Positive
## 209                           Positive                          Positive
## 210                      Very Positive                          Positive
## 211  Not negative, not positive either                          Positive
## 212  Not negative, not positive either                          Positive
## 213  Not negative, not positive either                          Positive
## 214  Not negative, not positive either                          Positive
## 215  Not negative, not positive either                          Positive
## 216  Not negative, not positive either                          Positive
## 217                           Positive                     Very Positive
## 218  Not negative, not positive either                          Positive
## 219                           Positive                     Very Positive
## 220                           Positive Not negative, not positive either
## 221  Not negative, not positive either Not negative, not positive either
## 222                           Positive Not negative, not positive either
## 223                      Very Positive                          Positive
## 224                      Very Negative                     Very Positive
## 225                           Positive                          Positive
## 226                           Positive Not negative, not positive either
## 227                           Positive Not negative, not positive either
## 228                      Very Positive Not negative, not positive either
## 229                           Positive                          Positive
## 230  Not negative, not positive either                          Positive
## 231  Not negative, not positive either                          Positive
## 232                           Positive Not negative, not positive either
## 233                           Positive Not negative, not positive either
## 234  Not negative, not positive either Not negative, not positive either
## 235  Not negative, not positive either Not negative, not positive either
## 236                           Positive                          Positive
## 237                      Very Positive                          Positive
## 238                           Negative Not negative, not positive either
## 239  Not negative, not positive either Not negative, not positive either
## 240  Not negative, not positive either Not negative, not positive either
## 241  Not negative, not positive either Not negative, not positive either
## 242  Not negative, not positive either Not negative, not positive either
## 243  Not negative, not positive either Not negative, not positive either
## 244  Not negative, not positive either Not negative, not positive either
## 245                           Positive Not negative, not positive either
## 246  Not negative, not positive either                          Positive
## 247                      Very Positive                     Very Positive
## 248                      Very Positive                     Very Negative
## 249                           Negative                          Negative
## 250                           Negative Not negative, not positive either
## 251                           Positive                          Positive
## 252                           Positive                          Positive
## 253                           Positive                          Positive
## 254                      Very Positive                          Positive
## 255                           Positive                          Positive
## 256  Not negative, not positive either                          Positive
## 257                           Positive                          Positive
## 258                      Very Positive                     Very Positive
## 259                           Positive                          Positive
## 260                      Very Positive                     Very Positive
## 261                      Very Positive                          Positive
## 262                      Very Positive                     Very Positive
## 263                      Very Positive                     Very Positive
## 264                      Very Positive                     Very Positive
## 265                      Very Positive                          Positive
## 266                           Positive                          Positive
## 267                           Positive                          Positive
## 268                           Positive                          Positive
## 269                           Positive                          Positive
## 270                           Positive                          Positive
## 271                           Positive                          Positive
## 272                           Positive                          Positive
## 273                           Positive                          Positive
## 274  Not negative, not positive either                          Positive
## 275                           Positive                          Positive
## 276                           Positive                              <NA>
## 277                           Positive                          Positive
## 278                           Positive                          Positive
## 279                           Positive                     Very Positive
## 280  Not negative, not positive either Not negative, not positive either
## 281                           Positive                          Positive
## 282                           Positive                          Positive
## 283                           Positive                          Positive
## 284  Not negative, not positive either                          Positive
## 285                           Positive                          Positive
## 286                           Positive                          Positive
## 287                           Positive                          Positive
## 288                           Positive                          Positive
## 289                      Very Positive                          Positive
## 290                           Positive                          Positive
## 291                           Positive                          Positive
## 292                           Positive                     Very Positive
## 293                           Positive                          Positive
## 294                           Positive                          Positive
## 295                           Positive                          Positive
## 296                           Positive                          Positive
## 297                           Positive                          Positive
## 298                           Positive                          Positive
## 299                      Very Positive                          Positive
## 300                           Positive                     Very Positive
## 302  Not negative, not positive either                          Positive
## 303                      Very Negative                          Positive
## 304                           Negative Not negative, not positive either
## 305                           Positive                          Positive
## 306                           Negative                     Very Positive
## 307                      Very Negative                          Positive
## 308                           Negative                          Positive
## 309                           Positive                          Positive
## 310                           Negative                     Very Positive
## 311  Not negative, not positive either                          Positive
## 312                           Positive                          Positive
## 313                           Negative                          Negative
## 314                      Very Positive                     Very Positive
## 315                           Positive                          Positive
## 316  Not negative, not positive either                          Positive
## 317                           Positive                          Positive
## 318                         Don't know                     Very Positive
## 319  Not negative, not positive either Not negative, not positive either
## 320  Not negative, not positive either                          Positive
## 321                           Positive                          Positive
## 322                           Positive                          Positive
## 323                           Positive                          Positive
## 324                           Positive                          Positive
## 325                           Positive                          Positive
## 326                           Positive                          Positive
## 327                           Positive                          Positive
## 328                           Negative                          Positive
## 329                           Positive                          Negative
## 330                         Don't know                        Don't know
## 331                      Very Positive                          Positive
## 332                      Very Positive                          Positive
## 333                           Positive Not negative, not positive either
## 334                      Very Positive                          Positive
## 335                           Negative                     Very Negative
## 336                           Negative                     Very Negative
## 337                           Negative                          Positive
## 338                           Positive                          Negative
## 339                           Positive                          Positive
## 340  Not negative, not positive either                          Positive
## 341                      Very Negative                          Negative
## 342  Not negative, not positive either Not negative, not positive either
## 343  Not negative, not positive either                          Positive
## 344  Not negative, not positive either                          Positive
## 345                         Don't know                     Very Positive
## 346  Not negative, not positive either                     Very Positive
## 347  Not negative, not positive either                     Very Positive
## 348                           Positive                          Positive
## 349  Not negative, not positive either                     Very Positive
## 350  Not negative, not positive either                          Positive
## 351                           Negative                     Very Positive
## 352                           Positive                          Positive
## 353  Not negative, not positive either                          Positive
## 354  Not negative, not positive either                          Positive
## 355  Not negative, not positive either Not negative, not positive either
## 356                         Don't know Not negative, not positive either
## 357  Not negative, not positive either                          Positive
## 358  Not negative, not positive either                          Positive
## 359                           Negative Not negative, not positive either
## 360  Not negative, not positive either Not negative, not positive either
## 361  Not negative, not positive either                     Very Positive
## 362  Not negative, not positive either                          Positive
## 363  Not negative, not positive either                          Positive
## 364                           Negative                          Positive
## 365  Not negative, not positive either                          Positive
## 366  Not negative, not positive either Not negative, not positive either
## 367  Not negative, not positive either                          Positive
## 368  Not negative, not positive either                          Positive
## 369                           Negative                          Positive
## 370  Not negative, not positive either                          Positive
## 371  Not negative, not positive either                          Positive
## 372                           Positive                          Positive
## 373  Not negative, not positive either                          Positive
## 374                           Positive                          Positive
## 375                           Positive                          Positive
## 376  Not negative, not positive either                          Positive
## 377  Not negative, not positive either                          Positive
## 378                           Negative                          Positive
## 379  Not negative, not positive either                          Positive
## 380                           Negative                          Positive
## 381  Not negative, not positive either                          Positive
## 382                           Negative                          Positive
## 383                           Negative                          Positive
## 384                           Negative                          Positive
## 385  Not negative, not positive either Not negative, not positive either
## 386  Not negative, not positive either                          Positive
## 387  Not negative, not positive either                          Positive
## 388  Not negative, not positive either                          Positive
## 389  Not negative, not positive either                          Positive
## 390  Not negative, not positive either                          Positive
## 391  Not negative, not positive either Not negative, not positive either
## 392  Not negative, not positive either Not negative, not positive either
## 393                         Don't know                          Positive
## 394  Not negative, not positive either                          Positive
## 395  Not negative, not positive either Not negative, not positive either
## 396  Not negative, not positive either Not negative, not positive either
## 397  Not negative, not positive either                          Positive
## 398  Not negative, not positive either                          Positive
## 399  Not negative, not positive either                          Positive
## 400                           Negative                          Positive
## 401  Not negative, not positive either                          Positive
## 402                           Positive                          Positive
## 403                           Positive                          Positive
## 404                           Positive                          Positive
## 405                           Positive                          Positive
## 406                           Positive                          Positive
## 407                           Positive                          Positive
## 408                           Positive                          Positive
## 409  Not negative, not positive either                          Positive
## 410                           Positive                          Positive
## 411                           Positive                          Positive
## 412                           Positive                          Positive
## 413                           Positive                          Positive
## 414                           Positive                     Very Positive
## 415                         Don't know Not negative, not positive either
## 416                           Positive                          Positive
## 417                         Don't know                          Positive
## 418                           Positive                     Very Positive
## 419                           Positive                          Positive
## 420                           Positive                          Positive
## 421                      Very Positive                     Very Positive
## 422                      Very Positive                     Very Positive
## 423                      Very Positive                     Very Positive
## 424                           Positive                          Positive
## 425                           Positive                          Positive
## 426                      Very Positive                     Very Positive
## 427                           Positive                          Positive
## 428                         Don't know                        Don't know
## 429  Not negative, not positive either Not negative, not positive either
## 430                           Positive                          Positive
## 431                      Very Positive                     Very Positive
## 432                         Don't know                        Don't know
## 433                           Positive                          Positive
## 434                           Positive                          Positive
## 435  Not negative, not positive either Not negative, not positive either
## 436                           Positive                          Positive
## 437                           Positive                          Positive
## 438                           Positive                     Very Positive
## 439                      Very Positive                     Very Positive
## 440                           Positive                          Positive
## 441                           Positive                          Positive
## 442  Not negative, not positive either Not negative, not positive either
## 443                      Very Positive                     Very Positive
## 444                           Positive                          Positive
## 445                      Very Positive                     Very Positive
## 446                      Very Positive                     Very Positive
## 447                      Very Positive                     Very Positive
## 448                      Very Positive                     Very Positive
## 449                           Positive                          Positive
## 450                           Positive                          Positive
## 451                           Positive                          Positive
## 452                           Positive                          Positive
## 453                               <NA> Not negative, not positive either
## 454                           Negative                     Very Positive
## 455                           Positive                     Very Positive
## 456                           Negative Not negative, not positive either
## 457  Not negative, not positive either Not negative, not positive either
## 458                           Positive                          Positive
## 459                           Negative                          Positive
## 460                           Negative                          Negative
## 461                           Positive                          Negative
## 462  Not negative, not positive either                     Very Positive
## 463  Not negative, not positive either                     Very Positive
## 464                      Very Positive                     Very Positive
## 465                           Positive                          Positive
## 466                           Negative Not negative, not positive either
## 467                      Very Positive                     Very Positive
## 468                      Very Positive                          Positive
## 469  Not negative, not positive either Not negative, not positive either
## 470                           Positive                     Very Positive
## 471                           Positive Not negative, not positive either
## 472                           Positive                          Positive
## 473                           Positive                          Positive
## 474                           Negative                     Very Positive
## 475  Not negative, not positive either                          Positive
## 476                         Don't know                          Positive
## 477  Not negative, not positive either                          Positive
## 478                           Positive                          Positive
## 479                         Don't know                        Don't know
## 480                           Positive                     Very Positive
## 481                      Very Negative                          Positive
## 482                           Negative Not negative, not positive either
## 483  Not negative, not positive either                          Positive
## 484  Not negative, not positive either Not negative, not positive either
## 485                           Positive                     Very Positive
## 486                      Very Positive                          Positive
## 487                           Positive                          Positive
## 488  Not negative, not positive either Not negative, not positive either
## 489                           Positive                          Positive
## 490                      Very Negative                          Positive
## 491  Not negative, not positive either Not negative, not positive either
## 492                           Positive Not negative, not positive either
## 493                      Very Negative                     Very Negative
## 494  Not negative, not positive either Not negative, not positive either
## 495                      Very Positive                          Positive
## 496                           Positive                          Positive
##                          Image..Nurses         Image..Military.Personnel
## 1                        Very Positive                     Very Positive
## 2                             Positive                        Don't know
## 3                             Positive Not negative, not positive either
## 4                             Positive                          Positive
## 5                        Very Positive                          Positive
## 6                             Positive                          Positive
## 7                        Very Positive                     Very Positive
## 8                             Positive                          Positive
## 9                             Positive                          Positive
## 10                            Positive                     Very Positive
## 11                            Positive Not negative, not positive either
## 12   Not negative, not positive either Not negative, not positive either
## 13                            Positive                          Positive
## 14                                <NA> Not negative, not positive either
## 15                       Very Positive                     Very Positive
## 16                            Positive                          Positive
## 17                       Very Positive                          Positive
## 18                            Positive                          Negative
## 19                            Positive Not negative, not positive either
## 20                       Very Positive                          Positive
## 21                            Positive                     Very Positive
## 22                            Negative                          Negative
## 23                            Positive                          Positive
## 24                            Positive                          Positive
## 25                            Positive                          Positive
## 26                            Positive                          Positive
## 27                            Positive                          Positive
## 28                            Positive                          Positive
## 29                            Positive                          Positive
## 30                            Positive                          Positive
## 31                            Positive                          Positive
## 32                            Positive                          Positive
## 33                            Positive                          Positive
## 34                            Positive                          Positive
## 35   Not negative, not positive either Not negative, not positive either
## 36                       Very Negative                     Very Negative
## 37                            Positive Not negative, not positive either
## 38   Not negative, not positive either                          Positive
## 39                            Positive Not negative, not positive either
## 40                            Positive                          Positive
## 41   Not negative, not positive either Not negative, not positive either
## 42                            Positive                          Positive
## 43                            Positive                          Positive
## 44                            Positive                          Positive
## 45                            Positive Not negative, not positive either
## 46                            Negative                          Negative
## 47                            Positive                          Positive
## 48                            Positive Not negative, not positive either
## 49                       Very Positive                          Positive
## 50   Not negative, not positive either Not negative, not positive either
## 51                            Positive                          Positive
## 52                            Positive                        Don't know
## 53                            Positive                          Positive
## 54                            Positive Not negative, not positive either
## 55                       Very Positive                          Positive
## 56                            Negative Not negative, not positive either
## 57                            Positive                        Don't know
## 58                          Don't know                          Positive
## 59                                <NA>                              <NA>
## 60                            Positive                     Very Negative
## 61                            Positive                          Positive
## 62                            Positive                          Positive
## 63                            Positive                          Positive
## 64                            Positive                          Positive
## 65                            Positive                          Positive
## 66                            Positive                          Positive
## 67                            Positive                          Positive
## 68                            Positive                          Positive
## 69                            Positive Not negative, not positive either
## 70                            Positive                          Positive
## 71                            Positive                          Positive
## 72                            Positive                          Positive
## 73                            Positive                          Positive
## 74                            Positive                          Positive
## 75                            Positive                          Positive
## 76                            Positive                          Positive
## 77                            Positive                          Positive
## 78                            Positive                          Positive
## 79                            Positive                          Positive
## 80                            Positive                          Positive
## 81                            Positive                          Positive
## 82                            Positive                          Positive
## 83                            Positive Not negative, not positive either
## 84                            Positive                          Positive
## 85                            Positive                          Positive
## 86                            Positive                        Don't know
## 87                            Positive                          Positive
## 88                            Positive                          Positive
## 89                            Positive                          Positive
## 90                            Positive                          Positive
## 91                            Positive                          Positive
## 92                            Positive                          Positive
## 93                            Positive                          Positive
## 94                            Positive                          Positive
## 95                            Positive                          Positive
## 96                            Positive                          Positive
## 97                            Positive                          Positive
## 98                            Positive                          Positive
## 99                            Positive                          Positive
## 100                           Positive                          Positive
## 101                           Positive                     Very Positive
## 102                           Positive                          Positive
## 103  Not negative, not positive either                          Positive
## 104                           Positive                          Positive
## 105                           Positive                          Positive
## 106                               <NA>                              <NA>
## 107                           Positive                          Positive
## 108                           Positive                          Positive
## 109                           Positive                          Positive
## 110                           Positive                          Positive
## 111                               <NA>                              <NA>
## 112                           Positive                          Positive
## 113                           Positive                          Positive
## 114                           Positive Not negative, not positive either
## 115                           Positive                     Very Positive
## 116                           Positive                          Positive
## 117                           Positive                          Positive
## 118                      Very Positive                     Very Positive
## 119  Not negative, not positive either                          Positive
## 120  Not negative, not positive either Not negative, not positive either
## 121                           Negative                          Positive
## 122  Not negative, not positive either                          Positive
## 123                           Positive                          Positive
## 124                           Positive                          Positive
## 125                           Positive                          Positive
## 126                      Very Positive                          Positive
## 127  Not negative, not positive either                          Positive
## 128  Not negative, not positive either Not negative, not positive either
## 129                           Positive                     Very Positive
## 130                      Very Positive                          Positive
## 131                      Very Positive                     Very Positive
## 132  Not negative, not positive either Not negative, not positive either
## 133  Not negative, not positive either Not negative, not positive either
## 134                           Positive                          Positive
## 135                           Positive                          Positive
## 136                         Don't know                        Don't know
## 137                           Positive                          Positive
## 138  Not negative, not positive either                          Positive
## 139  Not negative, not positive either Not negative, not positive either
## 140                           Positive                          Positive
## 141                           Positive                          Positive
## 142                           Positive                          Positive
## 143                           Positive Not negative, not positive either
## 144                           Positive                          Positive
## 145                           Positive                          Positive
## 146  Not negative, not positive either Not negative, not positive either
## 147  Not negative, not positive either Not negative, not positive either
## 148  Not negative, not positive either Not negative, not positive either
## 149  Not negative, not positive either Not negative, not positive either
## 150                           Negative Not negative, not positive either
## 151                           Positive                          Positive
## 152                           Positive                          Positive
## 153                           Positive                          Positive
## 154                           Positive                          Positive
## 155                           Positive                          Positive
## 156                           Positive                          Positive
## 157                           Negative                          Negative
## 158                      Very Positive                     Very Positive
## 159                           Positive                          Positive
## 160                           Positive                          Positive
## 161                      Very Positive                     Very Positive
## 162                           Positive                          Positive
## 163                           Positive                          Positive
## 164                           Positive                          Positive
## 165                      Very Positive                     Very Positive
## 166                      Very Positive                     Very Positive
## 167                      Very Positive                     Very Positive
## 168                           Positive                          Positive
## 169                           Positive                          Positive
## 170                           Positive                          Positive
## 171                           Positive                          Positive
## 172                           Positive                          Positive
## 173  Not negative, not positive either                          Positive
## 174                           Positive                          Positive
## 175                           Positive                          Positive
## 176                           Positive                          Positive
## 177                           Positive                          Positive
## 178                           Positive                     Very Positive
## 179                      Very Positive                     Very Positive
## 180                           Positive                          Positive
## 181                           Positive                          Positive
## 182                      Very Positive                          Positive
## 183                           Positive                          Positive
## 184                           Positive                          Positive
## 185                      Very Positive                          Positive
## 186                           Positive                          Positive
## 187                           Positive                          Positive
## 188                      Very Positive                          Positive
## 189                           Positive                          Positive
## 190                           Positive                          Positive
## 191                           Positive                          Positive
## 192                           Positive                          Positive
## 193                           Positive                          Positive
## 194                      Very Positive                          Positive
## 195                           Positive                          Positive
## 196                      Very Positive                     Very Positive
## 197                           Positive                          Positive
## 198                           Positive                          Positive
## 199                           Positive                          Positive
## 200                           Positive                          Positive
## 201  Not negative, not positive either                     Very Positive
## 202                           Positive                          Positive
## 203  Not negative, not positive either                          Positive
## 204                           Negative                          Positive
## 205                      Very Positive                     Very Positive
## 206                           Positive                          Positive
## 207                           Positive                          Positive
## 208  Not negative, not positive either Not negative, not positive either
## 209                           Positive                          Positive
## 210                      Very Positive                          Positive
## 211                      Very Positive                          Positive
## 212                           Positive                     Very Positive
## 213                           Positive                     Very Positive
## 214                           Positive                     Very Positive
## 215                           Positive                     Very Positive
## 216                           Positive                     Very Positive
## 217                      Very Positive                          Positive
## 218                           Positive                     Very Positive
## 219                      Very Positive                          Positive
## 220                           Positive Not negative, not positive either
## 221                           Negative                          Negative
## 222                           Negative                          Positive
## 223  Not negative, not positive either Not negative, not positive either
## 224                           Positive Not negative, not positive either
## 225  Not negative, not positive either Not negative, not positive either
## 226                           Positive Not negative, not positive either
## 227  Not negative, not positive either                          Positive
## 228  Not negative, not positive either Not negative, not positive either
## 229  Not negative, not positive either                          Positive
## 230  Not negative, not positive either Not negative, not positive either
## 231  Not negative, not positive either                     Very Positive
## 232                           Positive                     Very Positive
## 233  Not negative, not positive either Not negative, not positive either
## 234  Not negative, not positive either                     Very Positive
## 235  Not negative, not positive either                     Very Positive
## 236                           Positive Not negative, not positive either
## 237  Not negative, not positive either Not negative, not positive either
## 238  Not negative, not positive either                          Negative
## 239  Not negative, not positive either                     Very Positive
## 240  Not negative, not positive either                     Very Positive
## 241  Not negative, not positive either                     Very Positive
## 242  Not negative, not positive either                     Very Positive
## 243  Not negative, not positive either                     Very Positive
## 244  Not negative, not positive either                     Very Positive
## 245                           Negative                          Positive
## 246                           Positive                     Very Positive
## 247                           Positive                     Very Positive
## 248  Not negative, not positive either                          Negative
## 249                      Very Negative                          Negative
## 250  Not negative, not positive either                          Positive
## 251                           Positive                          Positive
## 252                           Positive                          Positive
## 253                           Positive                          Positive
## 254                           Positive                          Positive
## 255                           Positive                          Positive
## 256                           Positive Not negative, not positive either
## 257                           Positive                          Positive
## 258                      Very Positive                     Very Positive
## 259                           Positive                          Positive
## 260                      Very Positive                          Positive
## 261                      Very Positive                          Positive
## 262                      Very Positive                     Very Positive
## 263                           Positive                          Positive
## 264                      Very Positive                          Positive
## 265                           Positive                          Positive
## 266                           Positive                          Positive
## 267                           Positive                          Positive
## 268                           Positive                          Positive
## 269                           Positive                          Positive
## 270                           Positive                          Positive
## 271                           Positive                          Positive
## 272                           Positive                          Positive
## 273                           Positive                          Positive
## 274  Not negative, not positive either                          Positive
## 275                           Positive                          Positive
## 276  Not negative, not positive either                          Positive
## 277                           Positive                          Positive
## 278                           Positive                          Positive
## 279                           Positive                          Positive
## 280  Not negative, not positive either Not negative, not positive either
## 281                           Positive                          Positive
## 282                           Positive                          Positive
## 283                           Positive                          Positive
## 284  Not negative, not positive either                          Positive
## 285                           Positive                          Positive
## 286                           Positive                          Positive
## 287                           Positive                          Positive
## 288                           Positive                          Positive
## 289                           Positive                          Positive
## 290                           Positive                          Positive
## 291                           Positive                          Positive
## 292                      Very Positive                     Very Positive
## 293                           Positive                          Positive
## 294                           Positive                          Positive
## 295                           Positive                          Positive
## 296                           Positive                     Very Positive
## 297                           Positive                          Positive
## 298                           Positive                          Positive
## 299                      Very Positive                          Positive
## 300                      Very Positive                     Very Positive
## 302                           Positive                          Positive
## 303                           Positive Not negative, not positive either
## 304  Not negative, not positive either Not negative, not positive either
## 305                      Very Positive                     Very Positive
## 306                      Very Positive Not negative, not positive either
## 307                           Positive                          Positive
## 308                           Positive                          Positive
## 309                           Positive                          Negative
## 310                      Very Positive Not negative, not positive either
## 311                           Positive                          Positive
## 312                           Positive                          Positive
## 313                           Positive                          Negative
## 314                      Very Positive                        Don't know
## 315                           Positive                          Positive
## 316                           Positive Not negative, not positive either
## 317                           Positive Not negative, not positive either
## 318                      Very Positive                     Very Positive
## 319  Not negative, not positive either Not negative, not positive either
## 320                           Positive                          Positive
## 321                           Positive                          Positive
## 322                         Don't know                        Don't know
## 323                           Positive                          Positive
## 324                           Positive Not negative, not positive either
## 325                           Positive                          Positive
## 326                           Positive                          Positive
## 327                           Positive Not negative, not positive either
## 328                           Positive                          Positive
## 329                      Very Positive                          Positive
## 330                         Don't know                        Don't know
## 331  Not negative, not positive either                          Negative
## 332  Not negative, not positive either                          Negative
## 333                           Negative                     Very Negative
## 334  Not negative, not positive either                          Negative
## 335  Not negative, not positive either                     Very Negative
## 336                           Negative                     Very Negative
## 337                           Negative                          Positive
## 338                           Positive Not negative, not positive either
## 339  Not negative, not positive either                     Very Positive
## 340  Not negative, not positive either                          Positive
## 341                           Negative                          Negative
## 342  Not negative, not positive either Not negative, not positive either
## 343                           Positive Not negative, not positive either
## 344                           Positive                          Positive
## 345                      Very Positive Not negative, not positive either
## 346                           Positive Not negative, not positive either
## 347                      Very Positive                          Negative
## 348                           Positive                        Don't know
## 349                      Very Positive Not negative, not positive either
## 350                           Positive Not negative, not positive either
## 351                      Very Positive Not negative, not positive either
## 352                         Don't know                        Don't know
## 353                           Positive                          Positive
## 354                           Positive Not negative, not positive either
## 355  Not negative, not positive either Not negative, not positive either
## 356  Not negative, not positive either Not negative, not positive either
## 357                           Positive                          Positive
## 358                           Positive                          Positive
## 359                           Positive                          Positive
## 360  Not negative, not positive either Not negative, not positive either
## 361                           Positive                          Positive
## 362                           Positive                          Positive
## 363                           Positive Not negative, not positive either
## 364                           Positive Not negative, not positive either
## 365  Not negative, not positive either Not negative, not positive either
## 366  Not negative, not positive either Not negative, not positive either
## 367                           Positive                          Positive
## 368                           Positive Not negative, not positive either
## 369                           Positive Not negative, not positive either
## 370                           Positive                          Positive
## 371                           Positive Not negative, not positive either
## 372                           Positive Not negative, not positive either
## 373                           Positive Not negative, not positive either
## 374                           Positive                          Positive
## 375                           Positive                          Positive
## 376                           Positive Not negative, not positive either
## 377                           Positive                          Positive
## 378                           Positive                          Positive
## 379                           Positive                          Positive
## 380                           Positive Not negative, not positive either
## 381                           Positive Not negative, not positive either
## 382                           Positive Not negative, not positive either
## 383                           Positive Not negative, not positive either
## 384                           Positive Not negative, not positive either
## 385  Not negative, not positive either Not negative, not positive either
## 386                           Positive                          Positive
## 387                           Positive                          Positive
## 388                           Positive                          Positive
## 389                           Positive                          Positive
## 390                           Positive                          Positive
## 391  Not negative, not positive either                          Negative
## 392                           Positive                          Positive
## 393                           Positive                          Positive
## 394                           Positive                          Positive
## 395  Not negative, not positive either Not negative, not positive either
## 396  Not negative, not positive either Not negative, not positive either
## 397                           Positive                     Very Positive
## 398                           Positive Not negative, not positive either
## 399                           Positive Not negative, not positive either
## 400                           Positive Not negative, not positive either
## 401                           Positive                          Positive
## 402                           Positive                          Positive
## 403                           Positive                          Positive
## 404                           Positive                          Positive
## 405                           Positive                          Positive
## 406                           Positive                          Positive
## 407                           Positive                          Positive
## 408                           Positive                          Positive
## 409                           Positive Not negative, not positive either
## 410                           Positive                          Positive
## 411                           Positive                          Positive
## 412                           Positive                          Positive
## 413                           Positive                          Positive
## 414                           Positive                              <NA>
## 415  Not negative, not positive either Not negative, not positive either
## 416                           Positive                          Positive
## 417                           Positive                        Don't know
## 418                      Very Positive                     Very Positive
## 419                           Positive                          Positive
## 420                           Positive                              <NA>
## 421                      Very Positive                     Very Positive
## 422                      Very Positive                     Very Positive
## 423                      Very Positive                     Very Positive
## 424                           Positive                          Positive
## 425                           Positive                          Positive
## 426                      Very Positive                     Very Positive
## 427                           Positive                          Positive
## 428                         Don't know                        Don't know
## 429  Not negative, not positive either Not negative, not positive either
## 430                           Positive                          Positive
## 431                      Very Positive                     Very Positive
## 432                         Don't know                        Don't know
## 433                           Positive                          Positive
## 434                           Positive                          Positive
## 435  Not negative, not positive either Not negative, not positive either
## 436                           Positive                          Positive
## 437                           Positive                          Positive
## 438                           Positive                          Positive
## 439                      Very Positive                     Very Positive
## 440                           Positive                          Positive
## 441                           Positive                          Positive
## 442  Not negative, not positive either Not negative, not positive either
## 443                      Very Positive                     Very Positive
## 444                           Positive                          Positive
## 445                      Very Positive                     Very Positive
## 446                      Very Positive Not negative, not positive either
## 447                      Very Positive Not negative, not positive either
## 448                      Very Positive                     Very Positive
## 449                           Positive                          Positive
## 450                           Positive                          Positive
## 451                           Positive                          Positive
## 452                           Positive                          Positive
## 453  Not negative, not positive either                              <NA>
## 454                      Very Positive                          Negative
## 455  Not negative, not positive either Not negative, not positive either
## 456  Not negative, not positive either Not negative, not positive either
## 457                           Positive Not negative, not positive either
## 458                           Positive                     Very Positive
## 459                           Positive Not negative, not positive either
## 460  Not negative, not positive either                          Negative
## 461                           Negative                     Very Positive
## 462                           Positive                          Positive
## 463                      Very Positive                     Very Positive
## 464                           Positive                          Positive
## 465                           Positive                     Very Positive
## 466  Not negative, not positive either                          Positive
## 467                      Very Positive                     Very Positive
## 468                           Positive                          Positive
## 469  Not negative, not positive either                     Very Positive
## 470  Not negative, not positive either                          Positive
## 471                           Negative                     Very Positive
## 472                           Positive Not negative, not positive either
## 473                           Positive Not negative, not positive either
## 474                      Very Positive Not negative, not positive either
## 475                      Very Positive Not negative, not positive either
## 476                           Positive                        Don't know
## 477                      Very Positive Not negative, not positive either
## 478                           Positive                          Positive
## 479                         Don't know                        Don't know
## 480                      Very Positive                          Negative
## 481                           Positive                     Very Negative
## 482  Not negative, not positive either Not negative, not positive either
## 483                           Positive Not negative, not positive either
## 484  Not negative, not positive either Not negative, not positive either
## 485                      Very Positive                          Positive
## 486                           Positive                          Positive
## 487                           Positive                          Positive
## 488  Not negative, not positive either Not negative, not positive either
## 489                           Positive                          Positive
## 490                           Negative                          Positive
## 491                           Positive                          Positive
## 492  Not negative, not positive either Not negative, not positive either
## 493                           Negative                     Very Positive
## 494  Not negative, not positive either Not negative, not positive either
## 495                           Positive                     Very Positive
## 496                           Positive                          Positive
##                        Image..Students          Image..NGO.functionaries
## 1                        Very Positive                          Positive
## 2    Not negative, not positive either                        Don't know
## 3    Not negative, not positive either Not negative, not positive either
## 4    Not negative, not positive either                          Positive
## 5    Not negative, not positive either Not negative, not positive either
## 6    Not negative, not positive either                        Don't know
## 7    Not negative, not positive either Not negative, not positive either
## 8    Not negative, not positive either                          Positive
## 9    Not negative, not positive either Not negative, not positive either
## 10                       Very Positive                          Positive
## 11   Not negative, not positive either                          Positive
## 12                            Positive                          Positive
## 13                            Positive                          Positive
## 14   Not negative, not positive either                          Positive
## 15                            Positive                          Positive
## 16                            Positive                        Don't know
## 17                       Very Positive                          Positive
## 18                            Positive                          Positive
## 19                       Very Positive Not negative, not positive either
## 20                            Positive                     Very Positive
## 21                            Positive                     Very Positive
## 22                            Positive                          Positive
## 23                            Positive                          Positive
## 24                       Very Positive                     Very Positive
## 25   Not negative, not positive either Not negative, not positive either
## 26                            Positive                        Don't know
## 27                            Positive Not negative, not positive either
## 28                            Positive                        Don't know
## 29                          Don't know                        Don't know
## 30   Not negative, not positive either                          Positive
## 31   Not negative, not positive either Not negative, not positive either
## 32                          Don't know                        Don't know
## 33                            Positive                          Positive
## 34                            Positive                          Positive
## 35                            Positive                          Positive
## 36                            Negative                          Negative
## 37                            Positive Not negative, not positive either
## 38   Not negative, not positive either Not negative, not positive either
## 39   Not negative, not positive either Not negative, not positive either
## 40                            Positive                          Positive
## 41   Not negative, not positive either                          Positive
## 42   Not negative, not positive either Not negative, not positive either
## 43                            Positive Not negative, not positive either
## 44                       Very Positive                          Positive
## 45   Not negative, not positive either Not negative, not positive either
## 46                            Negative                          Positive
## 47                       Very Positive                          Positive
## 48                            Positive Not negative, not positive either
## 49   Not negative, not positive either Not negative, not positive either
## 50                       Very Positive Not negative, not positive either
## 51                            Positive Not negative, not positive either
## 52                            Positive                          Positive
## 53                            Positive                          Positive
## 54                            Positive                          Positive
## 55   Not negative, not positive either Not negative, not positive either
## 56                       Very Positive Not negative, not positive either
## 57                            Positive                        Don't know
## 58                            Positive                        Don't know
## 59                                <NA>                              <NA>
## 60                            Positive                        Don't know
## 61                            Positive                          Positive
## 62                            Positive                          Positive
## 63                            Positive                          Positive
## 64                            Positive                          Positive
## 65                            Positive                          Positive
## 66                            Positive                          Positive
## 67                            Positive                          Positive
## 68                            Positive                          Positive
## 69   Not negative, not positive either                          Positive
## 70                            Positive                          Positive
## 71                            Positive                          Positive
## 72                            Positive                          Positive
## 73                            Positive                          Positive
## 74                            Positive                          Positive
## 75                            Positive                          Positive
## 76                            Positive                          Positive
## 77                            Positive                          Positive
## 78                            Positive                          Positive
## 79                            Positive                          Positive
## 80                            Positive                          Positive
## 81                            Positive                          Positive
## 82                            Positive                          Positive
## 83                            Positive                          Positive
## 84                            Positive                          Positive
## 85                            Positive                          Positive
## 86                            Positive                        Don't know
## 87                            Positive                          Positive
## 88                            Positive                          Positive
## 89                            Positive                          Positive
## 90                            Positive                          Positive
## 91                            Positive                          Positive
## 92                            Positive                          Positive
## 93                            Positive                          Positive
## 94                            Positive                          Positive
## 95                            Positive                          Positive
## 96                            Positive                          Positive
## 97                            Positive                          Positive
## 98                            Positive                          Positive
## 99                            Positive                          Positive
## 100                           Positive                          Positive
## 101  Not negative, not positive either Not negative, not positive either
## 102                      Very Positive Not negative, not positive either
## 103                           Positive Not negative, not positive either
## 104                           Positive                          Positive
## 105                      Very Positive                          Positive
## 106                               <NA>                              <NA>
## 107                           Positive Not negative, not positive either
## 108                      Very Positive Not negative, not positive either
## 109                         Don't know Not negative, not positive either
## 110                           Positive                          Positive
## 111                               <NA>                              <NA>
## 112                           Positive Not negative, not positive either
## 113                           Positive                        Don't know
## 114                           Positive Not negative, not positive either
## 115                           Positive                     Very Positive
## 116                           Positive                          Positive
## 117  Not negative, not positive either Not negative, not positive either
## 118                      Very Positive                        Don't know
## 119                         Don't know                          Positive
## 120  Not negative, not positive either Not negative, not positive either
## 121  Not negative, not positive either                          Negative
## 122                           Positive                        Don't know
## 123                           Positive                          Positive
## 124                           Positive                          Positive
## 125                           Positive                          Positive
## 126                      Very Positive                        Don't know
## 127                           Negative                     Very Positive
## 128  Not negative, not positive either Not negative, not positive either
## 129                           Positive                     Very Positive
## 130                      Very Positive Not negative, not positive either
## 131                           Positive                          Positive
## 132  Not negative, not positive either                          Positive
## 133  Not negative, not positive either Not negative, not positive either
## 134                           Positive                          Positive
## 135                           Positive                        Don't know
## 136                         Don't know                        Don't know
## 137  Not negative, not positive either                          Positive
## 138  Not negative, not positive either                          Positive
## 139                           Positive                          Positive
## 140  Not negative, not positive either                          Positive
## 141                           Positive                     Very Positive
## 142  Not negative, not positive either Not negative, not positive either
## 143                           Positive Not negative, not positive either
## 144                           Positive                          Positive
## 145                           Positive Not negative, not positive either
## 146  Not negative, not positive either Not negative, not positive either
## 147  Not negative, not positive either                          Negative
## 148  Not negative, not positive either                        Don't know
## 149  Not negative, not positive either Not negative, not positive either
## 150                           Positive                          Negative
## 151                           Positive                          Negative
## 152  Not negative, not positive either                          Positive
## 153                           Positive                          Positive
## 154                           Positive                          Positive
## 155                           Positive                          Positive
## 156                           Positive                          Negative
## 157                           Positive                          Positive
## 158                           Positive                     Very Positive
## 159                           Positive                          Positive
## 160                           Positive                          Positive
## 161                      Very Positive                     Very Positive
## 162                           Positive                          Positive
## 163                           Positive                          Positive
## 164                           Positive                          Positive
## 165                      Very Positive                     Very Positive
## 166                           Positive                     Very Positive
## 167                           Positive                     Very Positive
## 168                           Positive                          Positive
## 169                           Positive                        Don't know
## 170                           Positive                        Don't know
## 171                      Very Positive                        Don't know
## 172                           Positive                        Don't know
## 173  Not negative, not positive either                        Don't know
## 174                           Positive                          Positive
## 175                           Positive                          Positive
## 176                           Positive                          Positive
## 177                           Positive Not negative, not positive either
## 178                      Very Positive                     Very Positive
## 179                      Very Positive                          Positive
## 180                           Positive                          Positive
## 181                           Positive                          Positive
## 182                           Positive                     Very Positive
## 183                           Positive                          Negative
## 184                           Positive                          Positive
## 185                      Very Positive                     Very Positive
## 186                           Positive                          Positive
## 187                           Positive                          Positive
## 188                           Positive                          Positive
## 189                           Positive                          Positive
## 190                           Positive                     Very Positive
## 191                           Positive                     Very Positive
## 192                           Positive Not negative, not positive either
## 193                           Positive                          Positive
## 194                      Very Positive                          Positive
## 195                           Positive Not negative, not positive either
## 196                           Positive                          Positive
## 197                           Positive                          Positive
## 198                           Positive                     Very Positive
## 199                           Positive                     Very Positive
## 200                           Positive                          Positive
## 201                      Very Positive                          Positive
## 202                      Very Positive Not negative, not positive either
## 203                      Very Positive Not negative, not positive either
## 204  Not negative, not positive either                          Negative
## 205                      Very Positive Not negative, not positive either
## 206  Not negative, not positive either                          Negative
## 207                           Positive                     Very Positive
## 208  Not negative, not positive either                          Positive
## 209                           Positive Not negative, not positive either
## 210  Not negative, not positive either                          Negative
## 211  Not negative, not positive either Not negative, not positive either
## 212                           Positive Not negative, not positive either
## 213                           Positive Not negative, not positive either
## 214                           Positive Not negative, not positive either
## 215                           Positive Not negative, not positive either
## 216                           Positive Not negative, not positive either
## 217                      Very Positive                     Very Negative
## 218                           Positive Not negative, not positive either
## 219                           Positive Not negative, not positive either
## 220                           Positive Not negative, not positive either
## 221  Not negative, not positive either Not negative, not positive either
## 222  Not negative, not positive either                          Negative
## 223  Not negative, not positive either                          Positive
## 224                      Very Negative Not negative, not positive either
## 225                      Very Positive                          Positive
## 226                           Positive                          Negative
## 227                      Very Positive                          Positive
## 228                           Positive                          Positive
## 229  Not negative, not positive either Not negative, not positive either
## 230                           Positive                          Positive
## 231                           Positive Not negative, not positive either
## 232                           Positive Not negative, not positive either
## 233                      Very Positive                          Positive
## 234                           Positive Not negative, not positive either
## 235                           Positive Not negative, not positive either
## 236  Not negative, not positive either                          Positive
## 237                           Negative Not negative, not positive either
## 238                           Positive                          Positive
## 239                           Positive Not negative, not positive either
## 240                           Positive Not negative, not positive either
## 241                           Positive Not negative, not positive either
## 242                           Positive Not negative, not positive either
## 243                           Positive Not negative, not positive either
## 244                           Positive Not negative, not positive either
## 245                           Positive Not negative, not positive either
## 246                           Positive Not negative, not positive either
## 247                      Very Positive Not negative, not positive either
## 248  Not negative, not positive either Not negative, not positive either
## 249  Not negative, not positive either                          Positive
## 250                           Positive Not negative, not positive either
## 251                           Positive                          Positive
## 252                           Positive                          Positive
## 253                           Positive                        Don't know
## 254                           Positive                        Don't know
## 255                           Positive                          Negative
## 256  Not negative, not positive either Not negative, not positive either
## 257                           Positive                        Don't know
## 258                           Positive                          Positive
## 259                           Positive                          Positive
## 260                           Positive                          Positive
## 261                      Very Positive                     Very Positive
## 262                      Very Positive                     Very Positive
## 263                           Positive                          Positive
## 264                           Positive                          Positive
## 265                           Positive                          Positive
## 266  Not negative, not positive either                          Positive
## 267                           Positive                          Positive
## 268                           Positive                          Positive
## 269                         Don't know                          Positive
## 270                           Positive                        Don't know
## 271                           Positive                          Positive
## 272                           Positive                          Positive
## 273                           Positive                          Positive
## 274  Not negative, not positive either                          Positive
## 275                           Positive                          Positive
## 276  Not negative, not positive either Not negative, not positive either
## 277                           Positive                        Don't know
## 278                           Positive                          Positive
## 279                           Positive                     Very Positive
## 280  Not negative, not positive either Not negative, not positive either
## 281                           Positive                          Positive
## 282                           Positive                          Positive
## 283                           Positive                          Negative
## 284  Not negative, not positive either                          Positive
## 285                           Positive                          Positive
## 286                           Positive                          Positive
## 287                           Positive                          Positive
## 288                           Positive                          Positive
## 289                         Don't know                        Don't know
## 290                           Positive                          Positive
## 291                           Positive                          Positive
## 292                           Positive                        Don't know
## 293  Not negative, not positive either Not negative, not positive either
## 294  Not negative, not positive either                          Negative
## 295  Not negative, not positive either                          Positive
## 296                           Positive                        Don't know
## 297  Not negative, not positive either                        Don't know
## 298  Not negative, not positive either                     Very Positive
## 299                           Positive                          Positive
## 300                           Positive                          Negative
## 302                      Very Negative                          Negative
## 303                           Positive                          Positive
## 304                           Positive Not negative, not positive either
## 305                           Positive                          Negative
## 306                           Positive                          Negative
## 307                           Positive                          Negative
## 308  Not negative, not positive either Not negative, not positive either
## 309                           Negative                          Negative
## 310  Not negative, not positive either                          Negative
## 311  Not negative, not positive either                     Very Positive
## 312                           Positive                          Positive
## 313                           Negative                          Negative
## 314                         Don't know                        Don't know
## 315                           Positive                          Positive
## 316  Not negative, not positive either                          Positive
## 317                      Very Negative                          Positive
## 318                         Don't know                        Don't know
## 319  Not negative, not positive either Not negative, not positive either
## 320                           Positive                          Positive
## 321                           Positive                          Positive
## 322                         Don't know                        Don't know
## 323                         Don't know                        Don't know
## 324  Not negative, not positive either Not negative, not positive either
## 325                           Positive                          Positive
## 326                           Positive                          Positive
## 327  Not negative, not positive either                          Positive
## 328                           Positive                          Positive
## 329                           Negative                          Positive
## 330                         Don't know                        Don't know
## 331                      Very Negative                          Negative
## 332                      Very Negative                          Negative
## 333                           Negative Not negative, not positive either
## 334                      Very Negative                          Negative
## 335  Not negative, not positive either                     Very Negative
## 336                           Negative Not negative, not positive either
## 337                           Negative Not negative, not positive either
## 338                           Negative                          Positive
## 339                           Positive                          Positive
## 340  Not negative, not positive either                          Negative
## 341                           Negative                          Negative
## 342  Not negative, not positive either Not negative, not positive either
## 343                           Positive                          Positive
## 344                           Positive                          Negative
## 345  Not negative, not positive either                     Very Negative
## 346                           Positive                     Very Positive
## 347  Not negative, not positive either Not negative, not positive either
## 348                         Don't know                        Don't know
## 349                           Positive                          Negative
## 350                           Positive                     Very Negative
## 351                           Negative                          Negative
## 352                         Don't know                        Don't know
## 353                           Positive                          Positive
## 354                         Don't know                        Don't know
## 355  Not negative, not positive either Not negative, not positive either
## 356                           Positive                        Don't know
## 357                           Positive                          Positive
## 358                           Positive                          Positive
## 359  Not negative, not positive either Not negative, not positive either
## 360                           Positive                          Positive
## 361  Not negative, not positive either Not negative, not positive either
## 362                           Positive                          Positive
## 363                           Positive Not negative, not positive either
## 364  Not negative, not positive either                          Positive
## 365  Not negative, not positive either Not negative, not positive either
## 366  Not negative, not positive either Not negative, not positive either
## 367                           Positive                          Positive
## 368  Not negative, not positive either Not negative, not positive either
## 369                         Don't know                        Don't know
## 370                           Positive Not negative, not positive either
## 371                           Positive Not negative, not positive either
## 372  Not negative, not positive either Not negative, not positive either
## 373                           Positive Not negative, not positive either
## 374                           Positive Not negative, not positive either
## 375  Not negative, not positive either Not negative, not positive either
## 376                           Positive                          Positive
## 377                           Positive Not negative, not positive either
## 378                           Positive                          Positive
## 379                           Positive                          Positive
## 380                           Positive Not negative, not positive either
## 381                         Don't know                        Don't know
## 382                         Don't know                        Don't know
## 383  Not negative, not positive either                        Don't know
## 384                         Don't know                        Don't know
## 385  Not negative, not positive either                        Don't know
## 386  Not negative, not positive either Not negative, not positive either
## 387  Not negative, not positive either Not negative, not positive either
## 388  Not negative, not positive either                        Don't know
## 389  Not negative, not positive either Not negative, not positive either
## 390                      Very Positive Not negative, not positive either
## 391  Not negative, not positive either Not negative, not positive either
## 392  Not negative, not positive either Not negative, not positive either
## 393  Not negative, not positive either                        Don't know
## 394  Not negative, not positive either                        Don't know
## 395  Not negative, not positive either Not negative, not positive either
## 396  Not negative, not positive either Not negative, not positive either
## 397  Not negative, not positive either Not negative, not positive either
## 398  Not negative, not positive either                        Don't know
## 399  Not negative, not positive either                        Don't know
## 400  Not negative, not positive either Not negative, not positive either
## 401  Not negative, not positive either Not negative, not positive either
## 402                           Positive                          Positive
## 403                           Positive                          Positive
## 404                           Positive Not negative, not positive either
## 405  Not negative, not positive either Not negative, not positive either
## 406                           Positive                          Positive
## 407                         Don't know                          Positive
## 408                           Positive                          Positive
## 409  Not negative, not positive either Not negative, not positive either
## 410                           Positive                          Positive
## 411                           Positive                          Positive
## 412                           Positive                          Positive
## 413                           Positive                          Positive
## 414                               <NA>                              <NA>
## 415                         Don't know                        Don't know
## 416                           Positive                          Positive
## 417                         Don't know                        Don't know
## 418                         Don't know                        Don't know
## 419                           Positive                          Positive
## 420                               <NA>                          Positive
## 421                      Very Positive                     Very Positive
## 422                      Very Positive                        Don't know
## 423                      Very Positive                     Very Positive
## 424                           Positive                          Positive
## 425                           Positive                          Positive
## 426                      Very Positive                     Very Positive
## 427                           Positive                          Positive
## 428                         Don't know                        Don't know
## 429  Not negative, not positive either Not negative, not positive either
## 430                           Positive                          Positive
## 431                      Very Positive                     Very Positive
## 432                      Very Positive                        Don't know
## 433                           Positive                          Positive
## 434                           Positive                          Positive
## 435  Not negative, not positive either Not negative, not positive either
## 436                           Positive                          Positive
## 437                           Positive                          Positive
## 438                           Positive                          Positive
## 439                      Very Positive                     Very Positive
## 440                           Positive                          Positive
## 441                           Positive                          Positive
## 442                               <NA>                              <NA>
## 443                      Very Positive                     Very Positive
## 444                           Positive                          Positive
## 445                      Very Positive                     Very Positive
## 446                      Very Positive                     Very Positive
## 447                      Very Positive                     Very Positive
## 448                      Very Positive                     Very Positive
## 449                           Positive                          Positive
## 450                           Positive                          Positive
## 451                           Positive                          Positive
## 452                           Positive                          Positive
## 453  Not negative, not positive either Not negative, not positive either
## 454  Not negative, not positive either                          Negative
## 455  Not negative, not positive either                          Positive
## 456  Not negative, not positive either Not negative, not positive either
## 457  Not negative, not positive either Not negative, not positive either
## 458                      Very Positive                     Very Negative
## 459                      Very Positive Not negative, not positive either
## 460  Not negative, not positive either                          Negative
## 461                      Very Positive                        Don't know
## 462                      Very Positive                          Positive
## 463                      Very Positive                          Positive
## 464                      Very Positive                        Don't know
## 465                      Very Positive                          Positive
## 466                           Positive                     Very Negative
## 467                      Very Positive Not negative, not positive either
## 468                           Positive                          Positive
## 469                           Negative                              <NA>
## 470                      Very Positive                        Don't know
## 471                      Very Positive                          Positive
## 472                           Positive Not negative, not positive either
## 473  Not negative, not positive either Not negative, not positive either
## 474  Not negative, not positive either Not negative, not positive either
## 475                           Positive                          Positive
## 476                         Don't know                        Don't know
## 477                      Very Positive                          Positive
## 478                           Positive                          Positive
## 479                         Don't know                        Don't know
## 480                           Positive                          Negative
## 481                           Negative                          Negative
## 482  Not negative, not positive either Not negative, not positive either
## 483                           Positive                        Don't know
## 484                           Positive Not negative, not positive either
## 485                           Positive Not negative, not positive either
## 486                      Very Positive                     Very Positive
## 487                           Positive Not negative, not positive either
## 488  Not negative, not positive either                          Negative
## 489                           Positive                          Positive
## 490                           Positive                          Negative
## 491                           Positive                          Positive
## 492                           Positive                          Positive
## 493                           Negative                     Very Negative
## 494  Not negative, not positive either Not negative, not positive either
## 495                      Very Positive                          Positive
## 496                           Positive                          Positive
##      Image..Private.sector.functionaries                Image..Businessmen
## 1                          Very Positive                          Positive
## 2                               Negative                          Negative
## 3                               Positive                          Positive
## 4                               Positive Not negative, not positive either
## 5      Not negative, not positive either                          Positive
## 6                             Don't know                          Positive
## 7      Not negative, not positive either                          Positive
## 8                               Positive                          Positive
## 9      Not negative, not positive either                          Positive
## 10                              Positive Not negative, not positive either
## 11     Not negative, not positive either Not negative, not positive either
## 12                              Positive Not negative, not positive either
## 13     Not negative, not positive either Not negative, not positive either
## 14     Not negative, not positive either                          Negative
## 15     Not negative, not positive either                          Negative
## 16                            Don't know                          Positive
## 17                              Positive                          Negative
## 18                              Positive                          Negative
## 19     Not negative, not positive either Not negative, not positive either
## 20                         Very Positive                          Positive
## 21                              Positive                          Positive
## 22     Not negative, not positive either Not negative, not positive either
## 23                              Positive                          Positive
## 24     Not negative, not positive either Not negative, not positive either
## 25                              Positive                          Negative
## 26                            Don't know Not negative, not positive either
## 27     Not negative, not positive either                          Negative
## 28                            Don't know Not negative, not positive either
## 29                            Don't know Not negative, not positive either
## 30     Not negative, not positive either Not negative, not positive either
## 31     Not negative, not positive either Not negative, not positive either
## 32                            Don't know                        Don't know
## 33                              Positive                          Positive
## 34                              Positive                          Positive
## 35                              Positive                          Positive
## 36     Not negative, not positive either                          Negative
## 37     Not negative, not positive either Not negative, not positive either
## 38                              Negative                          Negative
## 39                              Negative Not negative, not positive either
## 40     Not negative, not positive either Not negative, not positive either
## 41     Not negative, not positive either Not negative, not positive either
## 42     Not negative, not positive either Not negative, not positive either
## 43     Not negative, not positive either Not negative, not positive either
## 44     Not negative, not positive either Not negative, not positive either
## 45     Not negative, not positive either Not negative, not positive either
## 46                              Positive                          Negative
## 47                              Positive                          Positive
## 48                              Positive                          Negative
## 49                              Positive                          Negative
## 50                              Positive                          Positive
## 51     Not negative, not positive either                          Positive
## 52                            Don't know                          Positive
## 53                              Positive Not negative, not positive either
## 54                              Positive                          Positive
## 55     Not negative, not positive either Not negative, not positive either
## 56                            Don't know Not negative, not positive either
## 57                            Don't know                     Very Positive
## 58                            Don't know                          Positive
## 59                                  <NA>                              <NA>
## 60                            Don't know                          Positive
## 61                              Positive                          Positive
## 62                              Positive                          Positive
## 63                              Positive                     Very Positive
## 64                              Positive                          Positive
## 65                              Positive                          Positive
## 66                              Positive                          Positive
## 67                              Positive                          Positive
## 68                              Positive                          Positive
## 69     Not negative, not positive either Not negative, not positive either
## 70                              Positive                          Positive
## 71                              Positive Not negative, not positive either
## 72                              Positive                          Positive
## 73                              Positive                          Positive
## 74                              Positive                          Positive
## 75                              Positive                          Positive
## 76                              Positive                          Positive
## 77                              Positive                          Positive
## 78                              Positive                          Positive
## 79                              Positive                          Positive
## 80                              Positive                          Positive
## 81                              Positive                          Positive
## 82                              Positive                          Positive
## 83                              Positive                          Positive
## 84                              Positive                          Positive
## 85                              Positive                          Positive
## 86                            Don't know                        Don't know
## 87                              Positive                          Positive
## 88                              Positive                          Positive
## 89                              Positive                          Positive
## 90                              Positive                          Positive
## 91                              Positive                          Positive
## 92                              Positive                              <NA>
## 93                              Positive                          Positive
## 94                              Positive                          Positive
## 95                              Positive                          Positive
## 96                              Positive                          Positive
## 97                              Positive                          Positive
## 98                              Positive                          Positive
## 99                              Positive                          Positive
## 100                             Positive                          Positive
## 101                        Very Positive Not negative, not positive either
## 102    Not negative, not positive either                          Positive
## 103    Not negative, not positive either Not negative, not positive either
## 104                             Positive Not negative, not positive either
## 105                             Positive                          Positive
## 106                                 <NA> Not negative, not positive either
## 107                             Positive Not negative, not positive either
## 108                             Positive                          Positive
## 109    Not negative, not positive either Not negative, not positive either
## 110                             Positive                          Positive
## 111                                 <NA> Not negative, not positive either
## 112                             Positive                          Positive
## 113                             Positive                          Positive
## 114                             Positive Not negative, not positive either
## 115                             Positive Not negative, not positive either
## 116                             Positive Not negative, not positive either
## 117                             Positive                          Positive
## 118                           Don't know                        Don't know
## 119                             Positive                          Positive
## 120                             Positive Not negative, not positive either
## 121                             Positive                          Negative
## 122                        Very Positive Not negative, not positive either
## 123                             Positive Not negative, not positive either
## 124                             Positive Not negative, not positive either
## 125                             Positive                          Negative
## 126                        Very Positive Not negative, not positive either
## 127                             Positive Not negative, not positive either
## 128                             Positive Not negative, not positive either
## 129                        Very Positive Not negative, not positive either
## 130    Not negative, not positive either                          Negative
## 131                             Positive Not negative, not positive either
## 132                             Positive                     Very Negative
## 133    Not negative, not positive either Not negative, not positive either
## 134                             Positive Not negative, not positive either
## 135                        Very Positive                          Negative
## 136                           Don't know                        Don't know
## 137    Not negative, not positive either                          Positive
## 138                             Positive Not negative, not positive either
## 139    Not negative, not positive either Not negative, not positive either
## 140                             Positive Not negative, not positive either
## 141                             Positive Not negative, not positive either
## 142    Not negative, not positive either Not negative, not positive either
## 143    Not negative, not positive either                          Negative
## 144                             Positive                          Positive
## 145                             Positive Not negative, not positive either
## 146    Not negative, not positive either Not negative, not positive either
## 147                             Negative                     Very Negative
## 148                             Negative                          Negative
## 149                             Negative                     Very Negative
## 150                             Negative                          Negative
## 151                             Positive                          Negative
## 152    Not negative, not positive either                          Positive
## 153                           Don't know Not negative, not positive either
## 154                             Positive                     Very Negative
## 155    Not negative, not positive either                          Positive
## 156                             Positive                          Negative
## 157                             Positive                          Positive
## 158                        Very Positive                     Very Positive
## 159                             Positive                     Very Positive
## 160                             Positive                     Very Positive
## 161                        Very Positive                          Positive
## 162                             Positive                          Positive
## 163                             Positive                          Positive
## 164                           Don't know                          Positive
## 165                        Very Positive                     Very Positive
## 166                        Very Positive                          Positive
## 167                        Very Positive                     Very Positive
## 168                        Very Positive Not negative, not positive either
## 169                           Don't know                          Positive
## 170                           Don't know                          Positive
## 171                           Don't know                          Positive
## 172                           Don't know                          Positive
## 173                           Don't know                          Positive
## 174                             Positive                          Positive
## 175                             Positive                          Positive
## 176                             Positive                          Negative
## 177                             Positive                          Positive
## 178                             Positive                          Positive
## 179    Not negative, not positive either                          Positive
## 180    Not negative, not positive either                          Positive
## 181                             Positive                          Positive
## 182                        Very Positive                          Positive
## 183    Not negative, not positive either                          Positive
## 184                        Very Positive                          Positive
## 185                        Very Positive Not negative, not positive either
## 186                             Positive                          Positive
## 187                             Positive                          Positive
## 188                        Very Positive                          Positive
## 189                             Positive Not negative, not positive either
## 190                             Positive                          Positive
## 191                             Positive                          Positive
## 192                             Positive                          Positive
## 193                             Positive                          Positive
## 194                        Very Positive                          Positive
## 195                             Positive                          Positive
## 196                             Positive                          Positive
## 197                             Positive                          Positive
## 198                        Very Positive                          Positive
## 199                        Very Positive                          Positive
## 200    Not negative, not positive either                          Positive
## 201    Not negative, not positive either Not negative, not positive either
## 202                             Negative Not negative, not positive either
## 203                             Negative Not negative, not positive either
## 204    Not negative, not positive either                          Negative
## 205                             Negative Not negative, not positive either
## 206    Not negative, not positive either                          Positive
## 207                             Positive Not negative, not positive either
## 208    Not negative, not positive either                     Very Negative
## 209    Not negative, not positive either                          Positive
## 210    Not negative, not positive either                          Positive
## 211    Not negative, not positive either                          Positive
## 212                             Positive Not negative, not positive either
## 213    Not negative, not positive either Not negative, not positive either
## 214    Not negative, not positive either Not negative, not positive either
## 215    Not negative, not positive either Not negative, not positive either
## 216    Not negative, not positive either Not negative, not positive either
## 217    Not negative, not positive either                     Very Negative
## 218                             Positive Not negative, not positive either
## 219                             Negative Not negative, not positive either
## 220                             Positive Not negative, not positive either
## 221                             Positive Not negative, not positive either
## 222                             Positive                          Negative
## 223    Not negative, not positive either                          Positive
## 224                        Very Negative                          Negative
## 225                             Negative                          Negative
## 226                             Positive Not negative, not positive either
## 227    Not negative, not positive either                     Very Positive
## 228                        Very Positive Not negative, not positive either
## 229                             Positive                          Positive
## 230    Not negative, not positive either                          Positive
## 231    Not negative, not positive either Not negative, not positive either
## 232                             Negative                          Negative
## 233    Not negative, not positive either Not negative, not positive either
## 234    Not negative, not positive either Not negative, not positive either
## 235    Not negative, not positive either Not negative, not positive either
## 236    Not negative, not positive either Not negative, not positive either
## 237                             Positive Not negative, not positive either
## 238    Not negative, not positive either                          Positive
## 239    Not negative, not positive either Not negative, not positive either
## 240    Not negative, not positive either Not negative, not positive either
## 241    Not negative, not positive either Not negative, not positive either
## 242    Not negative, not positive either Not negative, not positive either
## 243    Not negative, not positive either Not negative, not positive either
## 244    Not negative, not positive either Not negative, not positive either
## 245                        Very Positive                          Negative
## 246    Not negative, not positive either Not negative, not positive either
## 247                             Negative Not negative, not positive either
## 248                             Positive Not negative, not positive either
## 249                             Positive                          Positive
## 250                        Very Positive Not negative, not positive either
## 251                             Positive                          Positive
## 252                             Positive                          Positive
## 253                           Don't know                          Positive
## 254                        Very Positive                          Positive
## 255                             Negative                          Positive
## 256                             Positive                          Negative
## 257                           Don't know                          Negative
## 258                             Positive Not negative, not positive either
## 259                             Positive Not negative, not positive either
## 260                             Positive                          Positive
## 261                             Positive                          Negative
## 262                        Very Positive                     Very Positive
## 263                             Positive                        Don't know
## 264                             Positive Not negative, not positive either
## 265                             Positive                     Very Positive
## 266                             Positive                          Positive
## 267                             Positive                          Negative
## 268                             Positive Not negative, not positive either
## 269    Not negative, not positive either                          Positive
## 270                           Don't know                          Positive
## 271                             Positive                          Positive
## 272                             Positive                          Positive
## 273                             Positive                          Positive
## 274    Not negative, not positive either                          Positive
## 275                             Positive                          Positive
## 276    Not negative, not positive either Not negative, not positive either
## 277                             Positive                          Positive
## 278                             Positive                          Positive
## 279                        Very Positive                          Negative
## 280    Not negative, not positive either Not negative, not positive either
## 281                             Positive                          Positive
## 282                             Positive Not negative, not positive either
## 283                             Negative                          Positive
## 284    Not negative, not positive either                          Positive
## 285                             Positive                          Positive
## 286                             Positive                          Positive
## 287                             Positive                          Positive
## 288                             Positive                          Positive
## 289                           Don't know                          Positive
## 290                             Positive                          Positive
## 291                             Positive                          Positive
## 292                           Don't know                          Negative
## 293                        Very Positive                          Positive
## 294                             Positive                          Positive
## 295                             Positive                          Positive
## 296                           Don't know                        Don't know
## 297                           Don't know                          Positive
## 298                                 <NA>                          Positive
## 299                             Positive                          Positive
## 300                             Positive                          Positive
## 302                        Very Negative                     Very Negative
## 303                             Positive                          Positive
## 304    Not negative, not positive either Not negative, not positive either
## 305    Not negative, not positive either                     Very Negative
## 306    Not negative, not positive either Not negative, not positive either
## 307                             Negative                              <NA>
## 308                             Negative                          Negative
## 309                             Positive                              <NA>
## 310                             Negative                          Negative
## 311    Not negative, not positive either                          Positive
## 312                             Positive                          Positive
## 313                             Negative                          Positive
## 314                           Don't know                        Don't know
## 315                             Positive Not negative, not positive either
## 316                             Positive                          Positive
## 317    Not negative, not positive either Not negative, not positive either
## 318                           Don't know Not negative, not positive either
## 319    Not negative, not positive either Not negative, not positive either
## 320                             Positive Not negative, not positive either
## 321                             Positive                          Positive
## 322                           Don't know                          Positive
## 323                           Don't know                          Positive
## 324    Not negative, not positive either Not negative, not positive either
## 325                             Positive                          Positive
## 326                             Positive Not negative, not positive either
## 327                             Positive Not negative, not positive either
## 328                             Positive                          Positive
## 329                        Very Negative Not negative, not positive either
## 330                           Don't know                        Don't know
## 331    Not negative, not positive either                     Very Negative
## 332    Not negative, not positive either                          Negative
## 333                             Positive Not negative, not positive either
## 334    Not negative, not positive either                     Very Negative
## 335    Not negative, not positive either                     Very Negative
## 336                             Positive                          Negative
## 337                        Very Positive                     Very Negative
## 338    Not negative, not positive either                     Very Negative
## 339    Not negative, not positive either Not negative, not positive either
## 340                             Negative Not negative, not positive either
## 341                             Negative                          Negative
## 342    Not negative, not positive either Not negative, not positive either
## 343                             Positive                          Positive
## 344                             Positive                          Positive
## 345                        Very Negative                          Negative
## 346                        Very Positive                     Very Positive
## 347    Not negative, not positive either                          Negative
## 348                           Don't know                          Negative
## 349                             Negative Not negative, not positive either
## 350                             Positive Not negative, not positive either
## 351                             Negative                     Very Negative
## 352                           Don't know                        Don't know
## 353    Not negative, not positive either Not negative, not positive either
## 354                           Don't know Not negative, not positive either
## 355    Not negative, not positive either                          Negative
## 356                           Don't know                          Negative
## 357    Not negative, not positive either                          Positive
## 358    Not negative, not positive either Not negative, not positive either
## 359    Not negative, not positive either Not negative, not positive either
## 360                             Positive                          Positive
## 361    Not negative, not positive either                          Negative
## 362    Not negative, not positive either Not negative, not positive either
## 363    Not negative, not positive either Not negative, not positive either
## 364                             Positive Not negative, not positive either
## 365    Not negative, not positive either                        Don't know
## 366    Not negative, not positive either Not negative, not positive either
## 367    Not negative, not positive either Not negative, not positive either
## 368    Not negative, not positive either Not negative, not positive either
## 369    Not negative, not positive either                          Negative
## 370    Not negative, not positive either Not negative, not positive either
## 371    Not negative, not positive either Not negative, not positive either
## 372                             Positive Not negative, not positive either
## 373    Not negative, not positive either Not negative, not positive either
## 374    Not negative, not positive either Not negative, not positive either
## 375    Not negative, not positive either Not negative, not positive either
## 376    Not negative, not positive either Not negative, not positive either
## 377    Not negative, not positive either Not negative, not positive either
## 378    Not negative, not positive either                          Positive
## 379    Not negative, not positive either                          Positive
## 380    Not negative, not positive either Not negative, not positive either
## 381                           Don't know                          Negative
## 382                           Don't know                          Negative
## 383    Not negative, not positive either                          Negative
## 384                           Don't know Not negative, not positive either
## 385                             Negative Not negative, not positive either
## 386    Not negative, not positive either Not negative, not positive either
## 387    Not negative, not positive either Not negative, not positive either
## 388    Not negative, not positive either Not negative, not positive either
## 389    Not negative, not positive either Not negative, not positive either
## 390    Not negative, not positive either                          Negative
## 391    Not negative, not positive either Not negative, not positive either
## 392    Not negative, not positive either Not negative, not positive either
## 393                             Positive                          Negative
## 394    Not negative, not positive either Not negative, not positive either
## 395    Not negative, not positive either Not negative, not positive either
## 396    Not negative, not positive either Not negative, not positive either
## 397    Not negative, not positive either Not negative, not positive either
## 398                           Don't know Not negative, not positive either
## 399    Not negative, not positive either Not negative, not positive either
## 400    Not negative, not positive either Not negative, not positive either
## 401    Not negative, not positive either Not negative, not positive either
## 402                             Positive Not negative, not positive either
## 403                             Positive                          Positive
## 404                             Positive                          Positive
## 405                             Positive Not negative, not positive either
## 406                             Positive Not negative, not positive either
## 407                           Don't know Not negative, not positive either
## 408                             Positive                          Positive
## 409    Not negative, not positive either Not negative, not positive either
## 410                                 <NA> Not negative, not positive either
## 411                             Positive                          Positive
## 412                             Positive                          Positive
## 413                             Positive                          Positive
## 414                                 <NA>                          Positive
## 415                           Don't know Not negative, not positive either
## 416                             Positive                          Positive
## 417                           Don't know                          Positive
## 418                           Don't know                          Positive
## 419                             Positive                          Positive
## 420                                 <NA> Not negative, not positive either
## 421                        Very Positive Not negative, not positive either
## 422                           Don't know                     Very Positive
## 423                        Very Positive Not negative, not positive either
## 424                             Positive Not negative, not positive either
## 425                             Positive                          Positive
## 426                        Very Positive Not negative, not positive either
## 427                             Positive                          Positive
## 428                           Don't know                        Don't know
## 429    Not negative, not positive either                     Very Positive
## 430                             Positive                          Positive
## 431                        Very Positive                     Very Positive
## 432                           Don't know                          Positive
## 433                             Positive Not negative, not positive either
## 434                             Positive Not negative, not positive either
## 435    Not negative, not positive either Not negative, not positive either
## 436                             Positive                          Positive
## 437                             Positive                          Positive
## 438                             Positive Not negative, not positive either
## 439                        Very Positive                     Very Positive
## 440                             Positive                          Positive
## 441                             Positive                          Positive
## 442    Not negative, not positive either Not negative, not positive either
## 443                        Very Positive                          Positive
## 444                             Positive                          Positive
## 445                        Very Positive                          Positive
## 446                        Very Positive                          Positive
## 447                        Very Positive                          Positive
## 448                        Very Positive                          Positive
## 449                             Positive                          Positive
## 450                             Positive                          Positive
## 451                             Positive                          Positive
## 452                             Positive                          Positive
## 453                                 <NA> Not negative, not positive either
## 454    Not negative, not positive either                          Negative
## 455                                 <NA> Not negative, not positive either
## 456                             Positive Not negative, not positive either
## 457    Not negative, not positive either Not negative, not positive either
## 458                        Very Positive Not negative, not positive either
## 459                             Positive                     Very Negative
## 460                             Negative                        Don't know
## 461                           Don't know                     Very Negative
## 462    Not negative, not positive either Not negative, not positive either
## 463                        Very Positive                          Positive
## 464                             Positive Not negative, not positive either
## 465                             Positive                     Very Positive
## 466    Not negative, not positive either                     Very Negative
## 467    Not negative, not positive either Not negative, not positive either
## 468                             Negative                          Negative
## 469                             Negative                          Negative
## 470                        Very Positive                          Positive
## 471    Not negative, not positive either                     Very Negative
## 472                             Positive Not negative, not positive either
## 473    Not negative, not positive either Not negative, not positive either
## 474    Not negative, not positive either Not negative, not positive either
## 475                             Negative Not negative, not positive either
## 476                           Don't know                          Positive
## 477                             Negative Not negative, not positive either
## 478                             Positive                          Positive
## 479                           Don't know                        Don't know
## 480                             Negative                          Negative
## 481                             Negative Not negative, not positive either
## 482    Not negative, not positive either Not negative, not positive either
## 483                             Positive Not negative, not positive either
## 484                             Positive                          Negative
## 485                             Positive Not negative, not positive either
## 486                             Positive                          Negative
## 487    Not negative, not positive either Not negative, not positive either
## 488                             Negative Not negative, not positive either
## 489                             Positive Not negative, not positive either
## 490                             Positive                          Negative
## 491                             Positive Not negative, not positive either
## 492                             Positive                          Positive
## 493                             Negative                     Very Negative
## 494    Not negative, not positive either Not negative, not positive either
## 495                        Very Positive                     Very Negative
## 496                             Positive Not negative, not positive either
##                 Image..School.teachers Image..College.University.Teachers
## 1                        Very Positive                      Very Positive
## 2    Not negative, not positive either  Not negative, not positive either
## 3                             Negative                           Negative
## 4                             Negative                           Negative
## 5                        Very Positive                      Very Positive
## 6                             Positive  Not negative, not positive either
## 7                             Positive                           Positive
## 8                             Positive                           Positive
## 9    Not negative, not positive either  Not negative, not positive either
## 10                            Positive                           Positive
## 11                            Positive                           Positive
## 12   Not negative, not positive either                           Positive
## 13                            Positive                           Positive
## 14   Not negative, not positive either                           Positive
## 15   Not negative, not positive either                           Positive
## 16                            Positive                           Positive
## 17                            Positive                           Positive
## 18                            Positive                           Positive
## 19   Not negative, not positive either                               <NA>
## 20                            Positive                           Positive
## 21                            Positive                           Positive
## 22                            Positive                           Positive
## 23                            Positive                      Very Positive
## 24                                <NA>  Not negative, not positive either
## 25   Not negative, not positive either                           Negative
## 26                          Don't know                         Don't know
## 27   Not negative, not positive either                           Negative
## 28   Not negative, not positive either  Not negative, not positive either
## 29                          Don't know                         Don't know
## 30   Not negative, not positive either  Not negative, not positive either
## 31                            Positive                               <NA>
## 32                          Don't know                         Don't know
## 33                       Very Positive  Not negative, not positive either
## 34                            Positive                           Positive
## 35                            Positive  Not negative, not positive either
## 36                            Negative  Not negative, not positive either
## 37   Not negative, not positive either  Not negative, not positive either
## 38   Not negative, not positive either  Not negative, not positive either
## 39   Not negative, not positive either  Not negative, not positive either
## 40   Not negative, not positive either                           Positive
## 41                            Negative  Not negative, not positive either
## 42   Not negative, not positive either  Not negative, not positive either
## 43   Not negative, not positive either  Not negative, not positive either
## 44                            Positive                           Positive
## 45                            Positive                           Positive
## 46   Not negative, not positive either  Not negative, not positive either
## 47                            Positive                           Positive
## 48                            Positive                           Positive
## 49                                <NA>                           Positive
## 50   Not negative, not positive either  Not negative, not positive either
## 51                            Positive                           Positive
## 52   Not negative, not positive either                           Positive
## 53   Not negative, not positive either  Not negative, not positive either
## 54                            Positive                           Positive
## 55                            Positive                           Positive
## 56                            Negative                         Don't know
## 57                            Positive                         Don't know
## 58                            Positive                           Positive
## 59                                <NA>                               <NA>
## 60                            Positive                           Positive
## 61                            Positive                           Positive
## 62   Not negative, not positive either  Not negative, not positive either
## 63                            Positive                           Positive
## 64   Not negative, not positive either                           Positive
## 65   Not negative, not positive either                           Positive
## 66                            Positive                           Positive
## 67                            Positive                           Positive
## 68                            Positive                           Positive
## 69                            Negative                           Negative
## 70                                <NA>                           Negative
## 71                            Positive                           Positive
## 72                            Positive                           Positive
## 73                            Positive                           Positive
## 74   Not negative, not positive either  Not negative, not positive either
## 75                            Positive                           Positive
## 76                            Positive                           Positive
## 77   Not negative, not positive either  Not negative, not positive either
## 78   Not negative, not positive either  Not negative, not positive either
## 79                            Negative  Not negative, not positive either
## 80                            Negative  Not negative, not positive either
## 81                            Negative  Not negative, not positive either
## 82                            Negative  Not negative, not positive either
## 83                            Positive                           Positive
## 84                            Positive                           Positive
## 85                       Very Negative  Not negative, not positive either
## 86   Not negative, not positive either  Not negative, not positive either
## 87   Not negative, not positive either                           Positive
## 88   Not negative, not positive either                               <NA>
## 89                            Positive                           Positive
## 90                            Positive                           Positive
## 91                            Positive                           Positive
## 92                            Positive                           Positive
## 93                            Positive                           Positive
## 94                            Positive                           Positive
## 95                            Positive                           Positive
## 96                            Positive                           Positive
## 97                            Positive                           Positive
## 98                            Positive                           Positive
## 99                            Positive                           Positive
## 100                           Positive                           Positive
## 101  Not negative, not positive either                         Don't know
## 102  Not negative, not positive either                           Positive
## 103                           Positive                           Positive
## 104                           Positive                           Positive
## 105                           Positive                           Positive
## 106                           Positive                           Positive
## 107                           Positive                           Positive
## 108                           Positive  Not negative, not positive either
## 109                           Positive                      Very Positive
## 110                           Positive                           Positive
## 111                           Positive                           Positive
## 112                           Positive                           Positive
## 113                           Positive  Not negative, not positive either
## 114  Not negative, not positive either  Not negative, not positive either
## 115                           Positive                         Don't know
## 116                           Positive                           Positive
## 117                           Positive                           Positive
## 118                      Very Positive                         Don't know
## 119                           Positive                           Positive
## 120  Not negative, not positive either                           Positive
## 121  Not negative, not positive either  Not negative, not positive either
## 122                           Positive  Not negative, not positive either
## 123                           Positive  Not negative, not positive either
## 124  Not negative, not positive either  Not negative, not positive either
## 125  Not negative, not positive either                           Positive
## 126                           Positive                           Positive
## 127                      Very Positive                           Positive
## 128                           Negative  Not negative, not positive either
## 129                               <NA>                           Negative
## 130                           Positive                           Positive
## 131                           Negative                           Positive
## 132                           Negative  Not negative, not positive either
## 133                           Positive                           Negative
## 134                           Negative  Not negative, not positive either
## 135                           Positive  Not negative, not positive either
## 136                         Don't know                         Don't know
## 137                           Positive  Not negative, not positive either
## 138                           Positive  Not negative, not positive either
## 139                           Positive  Not negative, not positive either
## 140                           Negative  Not negative, not positive either
## 141                           Positive  Not negative, not positive either
## 142                           Positive                           Positive
## 143  Not negative, not positive either                           Positive
## 144                           Positive                           Positive
## 145  Not negative, not positive either                           Positive
## 146  Not negative, not positive either  Not negative, not positive either
## 147                           Positive                           Positive
## 148                           Positive                           Positive
## 149  Not negative, not positive either  Not negative, not positive either
## 150                           Positive                         Don't know
## 151                           Negative                           Positive
## 152                           Positive                           Positive
## 153                           Positive                           Negative
## 154                           Positive                           Positive
## 155                           Positive                      Very Positive
## 156                           Negative                           Positive
## 157                           Positive                           Positive
## 158                      Very Positive                           Positive
## 159                      Very Positive                      Very Positive
## 160                      Very Positive                           Positive
## 161                      Very Positive                      Very Positive
## 162                           Positive                           Positive
## 163                           Positive                           Positive
## 164                           Positive                         Don't know
## 165                      Very Positive                           Positive
## 166                           Positive                           Positive
## 167                      Very Positive                           Positive
## 168                           Positive                           Positive
## 169                           Positive                           Positive
## 170                           Positive                           Positive
## 171                           Positive  Not negative, not positive either
## 172                           Positive                         Don't know
## 173                           Positive  Not negative, not positive either
## 174                           Positive                           Positive
## 175                           Positive                           Positive
## 176                           Positive                      Very Negative
## 177                           Positive  Not negative, not positive either
## 178                      Very Positive                           Positive
## 179                           Positive                           Positive
## 180                           Positive                           Positive
## 181                           Positive                           Positive
## 182                           Positive                      Very Positive
## 183                           Positive  Not negative, not positive either
## 184                           Positive                           Positive
## 185                           Positive                           Positive
## 186                           Positive                      Very Positive
## 187                           Positive                           Positive
## 188                           Positive                           Positive
## 189                           Positive                           Positive
## 190                      Very Positive                           Positive
## 191                      Very Positive                           Positive
## 192                           Positive                           Positive
## 193                           Positive                           Positive
## 194                           Positive  Not negative, not positive either
## 195                           Positive                           Positive
## 196                           Positive                      Very Positive
## 197                           Positive                           Positive
## 198                      Very Positive                           Positive
## 199                           Positive                      Very Positive
## 200                           Positive                           Positive
## 201                           Positive  Not negative, not positive either
## 202                           Positive                           Positive
## 203                           Positive                           Negative
## 204  Not negative, not positive either                           Positive
## 205                           Positive                           Negative
## 206                           Positive  Not negative, not positive either
## 207                           Positive  Not negative, not positive either
## 208  Not negative, not positive either                           Positive
## 209                           Positive  Not negative, not positive either
## 210                           Positive  Not negative, not positive either
## 211                           Positive                           Positive
## 212                           Positive                           Positive
## 213                           Positive                           Positive
## 214                           Positive                           Positive
## 215                           Positive                           Positive
## 216                           Positive                           Positive
## 217                           Positive                           Negative
## 218                           Negative                           Positive
## 219                           Positive  Not negative, not positive either
## 220                           Positive  Not negative, not positive either
## 221                           Positive                      Very Positive
## 222  Not negative, not positive either                           Positive
## 223  Not negative, not positive either                           Positive
## 224  Not negative, not positive either                           Negative
## 225  Not negative, not positive either                           Positive
## 226                           Positive                           Negative
## 227  Not negative, not positive either                           Positive
## 228                           Negative                           Positive
## 229                      Very Positive  Not negative, not positive either
## 230                           Negative  Not negative, not positive either
## 231                           Positive                           Positive
## 232  Not negative, not positive either                           Positive
## 233  Not negative, not positive either                           Positive
## 234                           Positive                           Positive
## 235                           Positive                           Positive
## 236                           Negative  Not negative, not positive either
## 237                           Positive                           Negative
## 238  Not negative, not positive either                           Negative
## 239                           Positive                           Positive
## 240                           Positive                           Positive
## 241                           Positive                           Positive
## 242                           Positive                           Positive
## 243                           Positive                           Positive
## 244                           Positive                           Positive
## 245                           Positive                      Very Positive
## 246  Not negative, not positive either                           Positive
## 247                           Positive  Not negative, not positive either
## 248                           Positive  Not negative, not positive either
## 249  Not negative, not positive either                           Positive
## 250                           Positive  Not negative, not positive either
## 251                           Positive                           Positive
## 252                           Positive                           Positive
## 253                           Positive                           Positive
## 254                           Positive                           Positive
## 255                           Positive                           Positive
## 256                           Positive                           Positive
## 257  Not negative, not positive either  Not negative, not positive either
## 258  Not negative, not positive either  Not negative, not positive either
## 259                           Positive                           Positive
## 260                           Positive                           Positive
## 261                           Positive                           Positive
## 262                      Very Positive                      Very Positive
## 263                      Very Positive                      Very Positive
## 264                           Positive                           Positive
## 265                           Positive                           Positive
## 266                           Positive  Not negative, not positive either
## 267                           Positive                           Positive
## 268                           Positive                           Positive
## 269                           Positive                           Positive
## 270                           Positive                           Positive
## 271                           Positive                           Positive
## 272                           Positive                           Positive
## 273                           Positive                           Positive
## 274  Not negative, not positive either  Not negative, not positive either
## 275                           Positive                           Positive
## 276  Not negative, not positive either                           Negative
## 277                           Positive                           Positive
## 278                           Positive                           Positive
## 279                           Positive                           Positive
## 280  Not negative, not positive either  Not negative, not positive either
## 281                           Positive                           Positive
## 282                           Positive                           Positive
## 283                           Positive                           Positive
## 284  Not negative, not positive either                           Positive
## 285                           Positive                           Positive
## 286                           Positive                           Positive
## 287                           Positive                           Positive
## 288                           Positive                           Positive
## 289                           Positive                           Positive
## 290                           Positive                           Positive
## 291                           Positive                           Positive
## 292  Not negative, not positive either  Not negative, not positive either
## 293                           Positive                           Positive
## 294                           Positive                           Positive
## 295                           Positive                           Positive
## 296                           Positive                         Don't know
## 297                           Positive                           Positive
## 298                           Positive                           Positive
## 299                           Positive                           Positive
## 300                           Positive                           Positive
## 302                           Positive                           Positive
## 303  Not negative, not positive either  Not negative, not positive either
## 304  Not negative, not positive either  Not negative, not positive either
## 305                           Positive                      Very Positive
## 306                      Very Positive                      Very Positive
## 307                               <NA>                               <NA>
## 308                           Negative                           Negative
## 309                           Negative                           Negative
## 310                      Very Positive                      Very Positive
## 311                           Positive                           Positive
## 312                           Positive                           Positive
## 313                           Positive                         Don't know
## 314                         Don't know                         Don't know
## 315                           Positive                           Positive
## 316                           Positive                           Positive
## 317  Not negative, not positive either  Not negative, not positive either
## 318                           Positive                           Positive
## 319                           Negative  Not negative, not positive either
## 320                      Very Positive                           Positive
## 321                           Positive                           Positive
## 322                           Positive                         Don't know
## 323                           Positive  Not negative, not positive either
## 324                           Positive                           Positive
## 325                           Positive                           Positive
## 326                           Positive                           Positive
## 327                           Positive                           Positive
## 328  Not negative, not positive either                         Don't know
## 329  Not negative, not positive either                           Negative
## 330                         Don't know                         Don't know
## 331                           Negative  Not negative, not positive either
## 332  Not negative, not positive either                           Positive
## 333                           Positive                      Very Positive
## 334                           Negative  Not negative, not positive either
## 335  Not negative, not positive either                      Very Negative
## 336                           Positive                           Positive
## 337                           Negative  Not negative, not positive either
## 338  Not negative, not positive either                           Negative
## 339                           Positive  Not negative, not positive either
## 340                           Negative  Not negative, not positive either
## 341                           Negative                           Negative
## 342  Not negative, not positive either  Not negative, not positive either
## 343                           Positive  Not negative, not positive either
## 344                           Positive  Not negative, not positive either
## 345                           Negative                      Very Positive
## 346                      Very Positive                      Very Positive
## 347  Not negative, not positive either                      Very Positive
## 348  Not negative, not positive either  Not negative, not positive either
## 349                           Positive                           Positive
## 350  Not negative, not positive either                           Negative
## 351                           Positive                           Positive
## 352                         Don't know                         Don't know
## 353                           Positive                           Positive
## 354                           Positive                           Positive
## 355  Not negative, not positive either  Not negative, not positive either
## 356  Not negative, not positive either  Not negative, not positive either
## 357                           Positive                           Positive
## 358                           Positive                           Positive
## 359                           Positive  Not negative, not positive either
## 360                           Positive                           Positive
## 361  Not negative, not positive either  Not negative, not positive either
## 362  Not negative, not positive either                           Positive
## 363  Not negative, not positive either  Not negative, not positive either
## 364  Not negative, not positive either  Not negative, not positive either
## 365                         Don't know                         Don't know
## 366  Not negative, not positive either                           Positive
## 367                           Positive                           Positive
## 368  Not negative, not positive either                           Positive
## 369  Not negative, not positive either  Not negative, not positive either
## 370                           Positive                           Positive
## 371                           Positive                           Positive
## 372                           Positive                           Positive
## 373  Not negative, not positive either  Not negative, not positive either
## 374                           Positive                           Positive
## 375                           Positive                           Positive
## 376                           Positive                           Positive
## 377                           Positive                           Positive
## 378  Not negative, not positive either                           Positive
## 379                           Positive                           Positive
## 380                           Positive                           Positive
## 381  Not negative, not positive either  Not negative, not positive either
## 382                           Positive                           Positive
## 383                           Positive                           Positive
## 384                           Positive                           Positive
## 385  Not negative, not positive either                           Positive
## 386                           Positive                           Positive
## 387                           Positive                           Positive
## 388                           Positive                           Positive
## 389                           Positive                           Positive
## 390                      Very Positive                           Positive
## 391  Not negative, not positive either  Not negative, not positive either
## 392  Not negative, not positive either                           Positive
## 393                           Positive                           Positive
## 394                           Positive                           Positive
## 395  Not negative, not positive either  Not negative, not positive either
## 396  Not negative, not positive either  Not negative, not positive either
## 397                           Positive  Not negative, not positive either
## 398  Not negative, not positive either  Not negative, not positive either
## 399  Not negative, not positive either  Not negative, not positive either
## 400                           Positive                           Positive
## 401                           Positive                           Positive
## 402                      Very Positive                      Very Positive
## 403                           Positive                           Positive
## 404                           Positive                           Positive
## 405                           Positive                           Positive
## 406                           Positive                           Positive
## 407                           Positive                           Positive
## 408                           Positive                      Very Positive
## 409  Not negative, not positive either  Not negative, not positive either
## 410                           Positive                           Positive
## 411                           Positive                           Positive
## 412                           Positive                           Positive
## 413                      Very Positive                      Very Positive
## 414                           Positive                           Positive
## 415                         Don't know                         Don't know
## 416                           Positive                           Positive
## 417                               <NA>                               <NA>
## 418                      Very Positive                      Very Positive
## 419                           Positive                           Positive
## 420                           Positive                           Positive
## 421                      Very Positive                      Very Positive
## 422                      Very Positive                      Very Positive
## 423                      Very Positive                      Very Positive
## 424                      Very Positive                      Very Positive
## 425                           Positive                           Positive
## 426                      Very Positive                      Very Positive
## 427                           Positive                           Positive
## 428                         Don't know                         Don't know
## 429                      Very Positive                      Very Positive
## 430                           Positive                           Positive
## 431                      Very Positive                      Very Positive
## 432                      Very Positive                      Very Positive
## 433                           Positive                           Positive
## 434                      Very Positive                      Very Positive
## 435  Not negative, not positive either  Not negative, not positive either
## 436                           Positive                           Positive
## 437                           Positive                           Positive
## 438  Not negative, not positive either  Not negative, not positive either
## 439                      Very Positive                      Very Positive
## 440                           Positive                           Positive
## 441                           Positive                           Positive
## 442                               <NA>                               <NA>
## 443                           Positive                           Positive
## 444                           Positive                           Positive
## 445                      Very Positive                      Very Positive
## 446                      Very Positive                      Very Positive
## 447                           Positive                           Positive
## 448                           Positive                           Positive
## 449                           Positive                           Positive
## 450                           Positive                               <NA>
## 451                           Positive                           Positive
## 452                      Very Positive                      Very Positive
## 453  Not negative, not positive either                               <NA>
## 454                           Positive                      Very Positive
## 455                           Positive                           Positive
## 456                           Positive                           Positive
## 457  Not negative, not positive either  Not negative, not positive either
## 458                           Positive                           Positive
## 459  Not negative, not positive either                           Positive
## 460                         Don't know                      Very Positive
## 461                      Very Negative                         Don't know
## 462                      Very Positive                      Very Positive
## 463                           Positive                           Positive
## 464                           Positive                      Very Positive
## 465                           Positive                      Very Positive
## 466  Not negative, not positive either  Not negative, not positive either
## 467                      Very Positive                      Very Positive
## 468                      Very Positive                      Very Positive
## 469                           Positive                           Positive
## 470                      Very Positive                      Very Positive
## 471                           Positive                           Positive
## 472                           Positive                           Positive
## 473  Not negative, not positive either  Not negative, not positive either
## 474                           Positive                           Positive
## 475                           Positive                           Positive
## 476                         Don't know                         Don't know
## 477                           Positive                           Positive
## 478                           Positive                           Positive
## 479                         Don't know                         Don't know
## 480                           Positive                           Positive
## 481  Not negative, not positive either                           Positive
## 482  Not negative, not positive either  Not negative, not positive either
## 483                           Positive                           Positive
## 484                           Positive                           Positive
## 485                           Positive                           Positive
## 486                      Very Positive                      Very Positive
## 487  Not negative, not positive either                           Positive
## 488  Not negative, not positive either  Not negative, not positive either
## 489                           Positive                           Positive
## 490  Not negative, not positive either                           Positive
## 491  Not negative, not positive either                           Positive
## 492                           Positive                           Positive
## 493                      Very Negative                      Very Negative
## 494                           Positive                           Positive
## 495  Not negative, not positive either                           Negative
## 496  Not negative, not positive either  Not negative, not positive either
##                Image..Environmentalist                Image..Journalists
## 1    Not negative, not positive either                          Positive
## 2                           Don't know Not negative, not positive either
## 3    Not negative, not positive either                          Positive
## 4    Not negative, not positive either Not negative, not positive either
## 5    Not negative, not positive either                     Very Positive
## 6    Not negative, not positive either                     Very Positive
## 7    Not negative, not positive either                     Very Positive
## 8    Not negative, not positive either                     Very Positive
## 9    Not negative, not positive either                     Very Positive
## 10   Not negative, not positive either Not negative, not positive either
## 11                            Positive                     Very Positive
## 12   Not negative, not positive either                     Very Positive
## 13   Not negative, not positive either                          Positive
## 14                            Positive                          Positive
## 15   Not negative, not positive either                          Positive
## 16                            Positive                          Positive
## 17                            Positive                          Positive
## 18   Not negative, not positive either                          Positive
## 19                            Negative Not negative, not positive either
## 20                            Positive                          Positive
## 21                            Negative Not negative, not positive either
## 22   Not negative, not positive either                          Positive
## 23                            Positive                          Positive
## 24                                <NA> Not negative, not positive either
## 25   Not negative, not positive either Not negative, not positive either
## 26                          Don't know                        Don't know
## 27   Not negative, not positive either Not negative, not positive either
## 28                          Don't know                          Positive
## 29                          Don't know                        Don't know
## 30   Not negative, not positive either                          Positive
## 31   Not negative, not positive either Not negative, not positive either
## 32                          Don't know                        Don't know
## 33                            Positive Not negative, not positive either
## 34                       Very Positive                          Positive
## 35                            Positive                     Very Positive
## 36   Not negative, not positive either                          Negative
## 37   Not negative, not positive either Not negative, not positive either
## 38   Not negative, not positive either Not negative, not positive either
## 39                                <NA>                          Positive
## 40   Not negative, not positive either                          Positive
## 41   Not negative, not positive either Not negative, not positive either
## 42   Not negative, not positive either                          Positive
## 43                          Don't know                          Positive
## 44   Not negative, not positive either                          Positive
## 45   Not negative, not positive either                          Positive
## 46   Not negative, not positive either                          Negative
## 47                            Positive                          Positive
## 48                            Positive                          Positive
## 49   Not negative, not positive either                          Positive
## 50   Not negative, not positive either                          Positive
## 51                          Don't know                        Don't know
## 52                            Positive                          Positive
## 53   Not negative, not positive either Not negative, not positive either
## 54                       Very Positive                          Positive
## 55   Not negative, not positive either                          Positive
## 56                          Don't know                          Positive
## 57                          Don't know                          Positive
## 58                          Don't know                          Positive
## 59                                <NA>                              <NA>
## 60                            Positive                          Positive
## 61                            Positive                          Positive
## 62   Not negative, not positive either                          Positive
## 63                            Positive                          Positive
## 64                            Positive                          Positive
## 65                            Positive                          Positive
## 66                            Positive                          Positive
## 67                            Positive                          Positive
## 68                            Positive                          Positive
## 69                            Negative                          Negative
## 70                            Negative Not negative, not positive either
## 71                            Positive                          Positive
## 72                            Positive                          Positive
## 73                            Positive                          Positive
## 74   Not negative, not positive either                          Positive
## 75                            Positive                          Positive
## 76                            Positive                          Positive
## 77   Not negative, not positive either                          Positive
## 78   Not negative, not positive either                          Positive
## 79   Not negative, not positive either                          Positive
## 80   Not negative, not positive either                          Positive
## 81   Not negative, not positive either                          Positive
## 82                            Positive                          Positive
## 83                            Positive                          Positive
## 84                            Positive                          Positive
## 85   Not negative, not positive either Not negative, not positive either
## 86                          Don't know Not negative, not positive either
## 87                            Positive                          Positive
## 88   Not negative, not positive either Not negative, not positive either
## 89   Not negative, not positive either Not negative, not positive either
## 90                            Positive                          Positive
## 91                            Positive                          Positive
## 92                            Positive                          Positive
## 93                            Positive                          Positive
## 94                            Positive                          Positive
## 95                            Positive                          Positive
## 96                            Positive                          Positive
## 97                            Positive                          Positive
## 98                            Positive                          Positive
## 99                            Positive                          Positive
## 100                           Positive                          Positive
## 101                         Don't know                          Positive
## 102                           Positive                        Don't know
## 103  Not negative, not positive either                          Positive
## 104  Not negative, not positive either Not negative, not positive either
## 105  Not negative, not positive either                          Positive
## 106  Not negative, not positive either                          Positive
## 107                           Negative                          Positive
## 108                           Positive                          Positive
## 109  Not negative, not positive either                          Positive
## 110                           Positive Not negative, not positive either
## 111  Not negative, not positive either                          Positive
## 112                           Negative                          Positive
## 113                           Positive Not negative, not positive either
## 114                           Negative Not negative, not positive either
## 115  Not negative, not positive either                          Positive
## 116  Not negative, not positive either                          Positive
## 117  Not negative, not positive either Not negative, not positive either
## 118                         Don't know                        Don't know
## 119  Not negative, not positive either                          Positive
## 120  Not negative, not positive either                          Negative
## 121                           Negative                     Very Negative
## 122  Not negative, not positive either Not negative, not positive either
## 123  Not negative, not positive either Not negative, not positive either
## 124                           Positive                          Positive
## 125  Not negative, not positive either                          Positive
## 126                           Negative Not negative, not positive either
## 127  Not negative, not positive either                          Positive
## 128  Not negative, not positive either                          Negative
## 129                           Negative Not negative, not positive either
## 130  Not negative, not positive either Not negative, not positive either
## 131  Not negative, not positive either                          Negative
## 132  Not negative, not positive either Not negative, not positive either
## 133  Not negative, not positive either                          Negative
## 134                           Positive Not negative, not positive either
## 135                           Positive Not negative, not positive either
## 136                         Don't know                        Don't know
## 137                           Positive                          Positive
## 138                           Positive Not negative, not positive either
## 139  Not negative, not positive either Not negative, not positive either
## 140                           Negative Not negative, not positive either
## 141                           Negative Not negative, not positive either
## 142  Not negative, not positive either Not negative, not positive either
## 143  Not negative, not positive either                          Positive
## 144                           Positive                          Positive
## 145  Not negative, not positive either                          Positive
## 146                           Negative Not negative, not positive either
## 147                           Negative                          Negative
## 148                           Negative                     Very Negative
## 149                           Negative Not negative, not positive either
## 150  Not negative, not positive either                          Negative
## 151                           Negative                          Positive
## 152                           Positive                          Positive
## 153                         Don't know                          Positive
## 154  Not negative, not positive either                          Positive
## 155                         Don't know                          Positive
## 156                           Negative                          Positive
## 157                           Positive Not negative, not positive either
## 158                           Positive                     Very Positive
## 159                         Don't know                          Positive
## 160  Not negative, not positive either                          Positive
## 161                           Positive                     Very Positive
## 162                         Don't know                          Positive
## 163                         Don't know                        Don't know
## 164                         Don't know                        Don't know
## 165                           Positive                     Very Positive
## 166                         Don't know                          Positive
## 167                           Positive                     Very Positive
## 168                         Don't know                          Positive
## 169                         Don't know                          Positive
## 170                         Don't know                          Positive
## 171                         Don't know                        Don't know
## 172                         Don't know                        Don't know
## 173                         Don't know Not negative, not positive either
## 174                           Positive                          Positive
## 175                           Negative Not negative, not positive either
## 176                      Very Negative                          Negative
## 177                         Don't know                        Don't know
## 178                         Don't know                     Very Positive
## 179                         Don't know                        Don't know
## 180                         Don't know                          Positive
## 181                           Positive                          Positive
## 182                         Don't know                          Positive
## 183                         Don't know                          Positive
## 184                         Don't know                          Positive
## 185                         Don't know                              <NA>
## 186                         Don't know                          Positive
## 187  Not negative, not positive either Not negative, not positive either
## 188  Not negative, not positive either                          Positive
## 189                         Don't know                          Positive
## 190                         Don't know                          Positive
## 191                         Don't know                          Positive
## 192                         Don't know                          Positive
## 193  Not negative, not positive either                          Positive
## 194                         Don't know                        Don't know
## 195                         Don't know                        Don't know
## 196                         Don't know                     Very Positive
## 197                         Don't know                          Positive
## 198                         Don't know                          Positive
## 199                         Don't know                          Positive
## 200                           Positive                          Positive
## 201                           Negative                          Positive
## 202  Not negative, not positive either                          Positive
## 203  Not negative, not positive either                          Negative
## 204                           Negative Not negative, not positive either
## 205                           Positive Not negative, not positive either
## 206                           Positive Not negative, not positive either
## 207  Not negative, not positive either                          Positive
## 208                           Negative Not negative, not positive either
## 209                           Positive                          Positive
## 210                           Positive Not negative, not positive either
## 211                      Very Positive Not negative, not positive either
## 212                           Positive                     Very Positive
## 213                           Positive                     Very Positive
## 214                           Positive                     Very Positive
## 215                           Positive                     Very Positive
## 216                           Positive                     Very Positive
## 217                           Negative                     Very Positive
## 218                           Positive                          Positive
## 219  Not negative, not positive either Not negative, not positive either
## 220                           Negative Not negative, not positive either
## 221                      Very Positive                          Positive
## 222  Not negative, not positive either                          Positive
## 223  Not negative, not positive either                          Positive
## 224                           Positive                     Very Positive
## 225                           Negative                          Negative
## 226                           Negative Not negative, not positive either
## 227                           Positive                          Negative
## 228  Not negative, not positive either                          Positive
## 229                      Very Positive Not negative, not positive either
## 230  Not negative, not positive either                          Positive
## 231                      Very Positive                     Very Positive
## 232  Not negative, not positive either                          Positive
## 233                           Positive                          Positive
## 234                           Positive                          Positive
## 235                           Positive                          Positive
## 236                           Positive Not negative, not positive either
## 237                           Positive Not negative, not positive either
## 238                           Negative Not negative, not positive either
## 239                           Positive                          Positive
## 240                           Positive                          Positive
## 241                           Positive Not negative, not positive either
## 242                           Positive Not negative, not positive either
## 243                           Positive                          Positive
## 244                           Positive                          Positive
## 245  Not negative, not positive either                          Positive
## 246  Not negative, not positive either                          Positive
## 247                           Positive Not negative, not positive either
## 248  Not negative, not positive either                          Positive
## 249  Not negative, not positive either                          Negative
## 250                           Negative Not negative, not positive either
## 251                           Positive                          Positive
## 252                           Positive                          Positive
## 253                           Positive                          Positive
## 254                           Positive                          Positive
## 255                           Positive                          Positive
## 256                           Positive                          Positive
## 257  Not negative, not positive either Not negative, not positive either
## 258  Not negative, not positive either Not negative, not positive either
## 259                           Positive                          Positive
## 260                           Positive                          Positive
## 261                           Positive                          Positive
## 262                      Very Positive                     Very Positive
## 263                      Very Positive                     Very Positive
## 264                           Positive                          Positive
## 265                           Positive                          Positive
## 266                           Positive                          Positive
## 267                           Positive                          Positive
## 268                           Positive                          Positive
## 269                           Positive                          Positive
## 270                           Positive                          Positive
## 271                           Positive Not negative, not positive either
## 272                           Positive                          Positive
## 273                           Positive                          Positive
## 274                           Positive Not negative, not positive either
## 275                           Positive                          Positive
## 276  Not negative, not positive either                          Negative
## 277                           Positive                          Positive
## 278                           Positive                          Positive
## 279                           Positive                          Positive
## 280  Not negative, not positive either Not negative, not positive either
## 281                           Positive                          Positive
## 282                           Positive                          Positive
## 283                           Positive                          Positive
## 284  Not negative, not positive either                          Positive
## 285                           Positive                          Positive
## 286                           Positive                          Positive
## 287                           Positive                          Positive
## 288                           Positive                          Positive
## 289                         Don't know                          Positive
## 290                           Positive                          Positive
## 291                           Positive                          Positive
## 292                         Don't know                        Don't know
## 293                           Positive                          Positive
## 294                           Positive                          Positive
## 295                           Positive                          Positive
## 296                         Don't know                        Don't know
## 297                           Positive                        Don't know
## 298                           Positive                          Positive
## 299                           Positive                          Positive
## 300                           Positive                          Positive
## 302                      Very Negative                          Negative
## 303                      Very Negative                          Positive
## 304  Not negative, not positive either Not negative, not positive either
## 305                           Negative Not negative, not positive either
## 306                           Negative                          Negative
## 307                               <NA>                              <NA>
## 308  Not negative, not positive either                          Negative
## 309                           Negative                          Positive
## 310  Not negative, not positive either                        Don't know
## 311                         Don't know Not negative, not positive either
## 312                           Positive                          Positive
## 313                         Don't know                          Negative
## 314                         Don't know                     Very Positive
## 315                         Don't know                        Don't know
## 316                           Positive                          Positive
## 317                           Negative                          Negative
## 318                         Don't know                        Don't know
## 319  Not negative, not positive either Not negative, not positive either
## 320  Not negative, not positive either Not negative, not positive either
## 321                           Positive                          Positive
## 322                         Don't know                        Don't know
## 323                         Don't know                        Don't know
## 324  Not negative, not positive either                          Positive
## 325                           Positive                          Positive
## 326  Not negative, not positive either Not negative, not positive either
## 327                           Positive                          Positive
## 328                         Don't know Not negative, not positive either
## 329                      Very Negative                          Negative
## 330                         Don't know                        Don't know
## 331                           Positive                     Very Positive
## 332                      Very Positive                        Don't know
## 333  Not negative, not positive either                          Positive
## 334                           Positive                     Very Positive
## 335                      Very Negative                          Positive
## 336                           Positive                          Negative
## 337                           Negative                          Positive
## 338  Not negative, not positive either                          Negative
## 339                           Positive                          Positive
## 340                           Negative                          Negative
## 341                           Negative                          Negative
## 342  Not negative, not positive either Not negative, not positive either
## 343                           Positive                          Positive
## 344                           Positive                          Positive
## 345                           Negative                          Negative
## 346                         Don't know                     Very Positive
## 347  Not negative, not positive either Not negative, not positive either
## 348                         Don't know                          Positive
## 349                           Negative Not negative, not positive either
## 350                           Positive Not negative, not positive either
## 351                      Very Negative                          Negative
## 352                         Don't know                        Don't know
## 353                           Positive                          Positive
## 354                         Don't know                        Don't know
## 355                           Negative Not negative, not positive either
## 356  Not negative, not positive either                          Positive
## 357                           Positive Not negative, not positive either
## 358                           Positive                          Positive
## 359  Not negative, not positive either                          Positive
## 360  Not negative, not positive either                          Negative
## 361  Not negative, not positive either Not negative, not positive either
## 362  Not negative, not positive either                          Positive
## 363  Not negative, not positive either                          Negative
## 364  Not negative, not positive either Not negative, not positive either
## 365  Not negative, not positive either Not negative, not positive either
## 366                           Positive Not negative, not positive either
## 367                           Positive                          Positive
## 368  Not negative, not positive either                        Don't know
## 369  Not negative, not positive either                        Don't know
## 370                           Positive                          Positive
## 371                           Positive Not negative, not positive either
## 372  Not negative, not positive either                          Positive
## 373                           Positive                          Positive
## 374                           Positive                          Positive
## 375                           Positive Not negative, not positive either
## 376                           Positive Not negative, not positive either
## 377  Not negative, not positive either                          Positive
## 378  Not negative, not positive either Not negative, not positive either
## 379  Not negative, not positive either                          Positive
## 380  Not negative, not positive either Not negative, not positive either
## 381                         Don't know                        Don't know
## 382                         Don't know                        Don't know
## 383  Not negative, not positive either Not negative, not positive either
## 384                         Don't know                          Positive
## 385  Not negative, not positive either Not negative, not positive either
## 386  Not negative, not positive either Not negative, not positive either
## 387  Not negative, not positive either Not negative, not positive either
## 388  Not negative, not positive either Not negative, not positive either
## 389  Not negative, not positive either Not negative, not positive either
## 390                           Positive                          Positive
## 391  Not negative, not positive either                          Positive
## 392  Not negative, not positive either Not negative, not positive either
## 393                         Don't know                        Don't know
## 394                         Don't know                        Don't know
## 395  Not negative, not positive either Not negative, not positive either
## 396  Not negative, not positive either Not negative, not positive either
## 397  Not negative, not positive either Not negative, not positive either
## 398  Not negative, not positive either Not negative, not positive either
## 399                           Positive Not negative, not positive either
## 400  Not negative, not positive either Not negative, not positive either
## 401  Not negative, not positive either Not negative, not positive either
## 402                           Positive                          Positive
## 403  Not negative, not positive either Not negative, not positive either
## 404  Not negative, not positive either                              <NA>
## 405                           Positive                          Positive
## 406  Not negative, not positive either Not negative, not positive either
## 407  Not negative, not positive either Not negative, not positive either
## 408                           Positive                     Very Positive
## 409                               <NA>                          Negative
## 410                           Positive                          Positive
## 411                           Positive                          Positive
## 412  Not negative, not positive either                          Positive
## 413                           Positive                          Positive
## 414                               <NA>                              <NA>
## 415                         Don't know                        Don't know
## 416  Not negative, not positive either                          Positive
## 417                               <NA>                              <NA>
## 418                           Positive                          Positive
## 419  Not negative, not positive either Not negative, not positive either
## 420                               <NA> Not negative, not positive either
## 421  Not negative, not positive either                     Very Positive
## 422                         Don't know                        Don't know
## 423                      Very Positive                     Very Positive
## 424  Not negative, not positive either Not negative, not positive either
## 425  Not negative, not positive either                          Positive
## 426                      Very Positive                     Very Positive
## 427                           Positive                          Positive
## 428                         Don't know                        Don't know
## 429                      Very Positive                     Very Positive
## 430                           Positive                          Positive
## 431                      Very Positive                     Very Positive
## 432                      Very Positive                     Very Positive
## 433                           Positive                          Positive
## 434                      Very Positive                     Very Positive
## 435  Not negative, not positive either Not negative, not positive either
## 436                           Positive                          Positive
## 437                           Positive                          Positive
## 438  Not negative, not positive either                              <NA>
## 439                      Very Positive                     Very Positive
## 440                           Positive                          Positive
## 441                           Positive                          Positive
## 442                               <NA>                              <NA>
## 443                           Positive                          Positive
## 444                           Positive                          Positive
## 445                      Very Positive                     Very Positive
## 446                      Very Positive                     Very Positive
## 447                           Positive                          Positive
## 448                           Positive                          Positive
## 449                           Positive                          Positive
## 450                               <NA>                              <NA>
## 451                           Positive                          Positive
## 452                      Very Positive                     Very Positive
## 453  Not negative, not positive either                              <NA>
## 454  Not negative, not positive either                     Very Negative
## 455                           Positive Not negative, not positive either
## 456                           Positive                          Negative
## 457  Not negative, not positive either Not negative, not positive either
## 458                           Positive                          Positive
## 459  Not negative, not positive either Not negative, not positive either
## 460                           Positive Not negative, not positive either
## 461                           Positive                              <NA>
## 462                           Positive                     Very Positive
## 463                           Positive                          Positive
## 464                           Positive                          Positive
## 465                      Very Positive                     Very Positive
## 466  Not negative, not positive either Not negative, not positive either
## 467                      Very Positive                     Very Positive
## 468                           Positive                          Positive
## 469  Not negative, not positive either                          Positive
## 470  Not negative, not positive either                     Very Positive
## 471                           Positive                          Positive
## 472  Not negative, not positive either                          Positive
## 473  Not negative, not positive either Not negative, not positive either
## 474  Not negative, not positive either Not negative, not positive either
## 475                           Negative                     Very Positive
## 476                         Don't know                        Don't know
## 477                           Negative                          Positive
## 478                           Positive                          Positive
## 479                         Don't know                        Don't know
## 480                           Positive                          Negative
## 481  Not negative, not positive either                          Negative
## 482  Not negative, not positive either Not negative, not positive either
## 483                           Positive Not negative, not positive either
## 484                           Positive Not negative, not positive either
## 485  Not negative, not positive either                          Positive
## 486                           Positive                          Positive
## 487                           Positive                          Positive
## 488  Not negative, not positive either Not negative, not positive either
## 489                           Positive Not negative, not positive either
## 490                      Very Positive Not negative, not positive either
## 491                           Positive                          Positive
## 492                           Positive                          Positive
## 493                      Very Negative                     Very Negative
## 494  Not negative, not positive either Not negative, not positive either
## 495  Not negative, not positive either                     Very Positive
## 496  Not negative, not positive either Not negative, not positive either
##                Image..Local.Volunteers              Image..If.any.others
## 1                             Positive                              <NA>
## 2                             Negative                              <NA>
## 3                             Positive                              <NA>
## 4                             Negative                        Don't know
## 5                             Positive                              <NA>
## 6                             Positive                              <NA>
## 7                             Positive                              <NA>
## 8                             Positive                              <NA>
## 9                             Positive                              <NA>
## 10                          Don't know                              <NA>
## 11                       Very Positive                              <NA>
## 12   Not negative, not positive either                              <NA>
## 13                            Positive                              <NA>
## 14                            Positive                              <NA>
## 15                            Positive                              <NA>
## 16                            Positive                              <NA>
## 17                            Positive                              <NA>
## 18                            Positive                              <NA>
## 19   Not negative, not positive either                              <NA>
## 20                       Very Positive                              <NA>
## 21                            Positive                        Don't know
## 22   Not negative, not positive either                              <NA>
## 23                            Positive                              <NA>
## 24                            Negative                          Positive
## 25   Not negative, not positive either                              <NA>
## 26                          Don't know                              <NA>
## 27   Not negative, not positive either                          Negative
## 28                          Don't know                              <NA>
## 29                          Don't know                              <NA>
## 30                            Negative                              <NA>
## 31   Not negative, not positive either                              <NA>
## 32                          Don't know                              <NA>
## 33                            Positive                              <NA>
## 34                            Positive                              <NA>
## 35                            Positive                              <NA>
## 36                            Negative                              <NA>
## 37                            Negative                              <NA>
## 38                            Negative                              <NA>
## 39   Not negative, not positive either                              <NA>
## 40   Not negative, not positive either                              <NA>
## 41   Not negative, not positive either                              <NA>
## 42                            Negative                              <NA>
## 43                            Positive                              <NA>
## 44   Not negative, not positive either                              <NA>
## 45   Not negative, not positive either                              <NA>
## 46                       Very Negative                              <NA>
## 47                            Positive                              <NA>
## 48                            Negative                              <NA>
## 49                            Positive                              <NA>
## 50                            Positive                              <NA>
## 51                            Positive                              <NA>
## 52                            Positive                              <NA>
## 53                            Positive                              <NA>
## 54                            Positive                              <NA>
## 55                            Positive                              <NA>
## 56                            Negative                              <NA>
## 57                            Positive                              <NA>
## 58                            Positive                              <NA>
## 59                                <NA>                              <NA>
## 60                            Positive                              <NA>
## 61                            Positive                          Positive
## 62                            Positive                              <NA>
## 63                            Positive                              <NA>
## 64                            Positive                              <NA>
## 65                            Positive                              <NA>
## 66                            Positive                              <NA>
## 67                            Positive                              <NA>
## 68                            Positive                              <NA>
## 69                            Negative                              <NA>
## 70   Not negative, not positive either                              <NA>
## 71                            Positive                              <NA>
## 72                            Positive                              <NA>
## 73                            Positive                              <NA>
## 74                            Positive                              <NA>
## 75                            Positive                              <NA>
## 76                            Positive                          Positive
## 77                            Positive                              <NA>
## 78                            Positive                              <NA>
## 79                            Positive                              <NA>
## 80                            Positive                              <NA>
## 81                            Positive                              <NA>
## 82                            Positive                              <NA>
## 83                            Positive                              <NA>
## 84                            Positive                              <NA>
## 85   Not negative, not positive either                              <NA>
## 86   Not negative, not positive either                              <NA>
## 87                            Positive                              <NA>
## 88   Not negative, not positive either                              <NA>
## 89   Not negative, not positive either                              <NA>
## 90                            Positive                              <NA>
## 91                            Positive                              <NA>
## 92                            Positive                              <NA>
## 93                            Positive                              <NA>
## 94                            Positive                              <NA>
## 95                            Positive                              <NA>
## 96                            Positive                              <NA>
## 97                            Positive                              <NA>
## 98                            Positive                              <NA>
## 99                            Positive                              <NA>
## 100                           Positive                              <NA>
## 101                           Positive                        Don't know
## 102                         Don't know                        Don't know
## 103                           Positive                        Don't know
## 104  Not negative, not positive either                        Don't know
## 105  Not negative, not positive either                        Don't know
## 106                           Positive                        Don't know
## 107                           Positive                        Don't know
## 108                           Positive                        Don't know
## 109                           Positive                        Don't know
## 110  Not negative, not positive either                        Don't know
## 111                           Negative                        Don't know
## 112                           Positive                        Don't know
## 113  Not negative, not positive either                        Don't know
## 114                           Positive                        Don't know
## 115                           Negative                        Don't know
## 116                           Positive                        Don't know
## 117                           Positive                        Don't know
## 118                         Don't know                        Don't know
## 119                           Positive                        Don't know
## 120  Not negative, not positive either                          Positive
## 121                           Negative                        Don't know
## 122                           Negative                              <NA>
## 123                           Positive                        Don't know
## 124                           Positive                        Don't know
## 125                           Positive                        Don't know
## 126                           Negative                        Don't know
## 127  Not negative, not positive either                        Don't know
## 128  Not negative, not positive either                        Don't know
## 129                           Negative                        Don't know
## 130  Not negative, not positive either                        Don't know
## 131  Not negative, not positive either                        Don't know
## 132                           Positive                        Don't know
## 133  Not negative, not positive either                        Don't know
## 134                           Positive                        Don't know
## 135                           Positive                        Don't know
## 136                         Don't know                        Don't know
## 137  Not negative, not positive either                        Don't know
## 138                           Positive                        Don't know
## 139                           Positive                        Don't know
## 140  Not negative, not positive either                        Don't know
## 141                           Negative                        Don't know
## 142                           Positive                        Don't know
## 143  Not negative, not positive either                        Don't know
## 144                           Positive                        Don't know
## 145                           Positive                        Don't know
## 146                           Negative Not negative, not positive either
## 147  Not negative, not positive either                        Don't know
## 148  Not negative, not positive either                        Don't know
## 149                           Positive                        Don't know
## 150                           Negative                        Don't know
## 151                           Positive                              <NA>
## 152                           Positive                              <NA>
## 153                         Don't know                              <NA>
## 154                           Positive                              <NA>
## 155  Not negative, not positive either                              <NA>
## 156                               <NA>                          Positive
## 157                           Positive                              <NA>
## 158                      Very Positive                              <NA>
## 159                           Positive                              <NA>
## 160                           Positive                              <NA>
## 161                      Very Positive                              <NA>
## 162                         Don't know                              <NA>
## 163                           Positive                              <NA>
## 164                         Don't know                              <NA>
## 165                      Very Positive                              <NA>
## 166                           Positive                              <NA>
## 167                      Very Positive                              <NA>
## 168                      Very Positive                              <NA>
## 169                           Positive                              <NA>
## 170                         Don't know                              <NA>
## 171                         Don't know                              <NA>
## 172                      Very Positive                              <NA>
## 173                         Don't know                              <NA>
## 174                           Positive                              <NA>
## 175  Not negative, not positive either                              <NA>
## 176                      Very Negative                              <NA>
## 177                         Don't know                              <NA>
## 178                         Don't know                              <NA>
## 179                         Don't know                              <NA>
## 180                         Don't know                              <NA>
## 181                           Positive                              <NA>
## 182                         Don't know                              <NA>
## 183  Not negative, not positive either                              <NA>
## 184                      Very Positive                              <NA>
## 185                         Don't know                              <NA>
## 186                      Very Positive                              <NA>
## 187  Not negative, not positive either                              <NA>
## 188                           Positive                              <NA>
## 189                           Positive                              <NA>
## 190                         Don't know                              <NA>
## 191                         Don't know                              <NA>
## 192                           Positive                              <NA>
## 193                           Positive                              <NA>
## 194                         Don't know                              <NA>
## 195                         Don't know                              <NA>
## 196                           Positive                              <NA>
## 197                         Don't know                              <NA>
## 198                         Don't know                              <NA>
## 199                           Positive                              <NA>
## 200                           Positive                              <NA>
## 201                      Very Positive                        Don't know
## 202                           Positive                        Don't know
## 203                           Negative                        Don't know
## 204                           Negative                        Don't know
## 205                      Very Positive                        Don't know
## 206                           Positive                        Don't know
## 207                           Positive                        Don't know
## 208                           Positive                        Don't know
## 209                           Positive                        Don't know
## 210                           Positive                        Don't know
## 211  Not negative, not positive either                        Don't know
## 212  Not negative, not positive either                        Don't know
## 213  Not negative, not positive either                        Don't know
## 214  Not negative, not positive either                        Don't know
## 215  Not negative, not positive either                        Don't know
## 216  Not negative, not positive either                        Don't know
## 217  Not negative, not positive either                        Don't know
## 218  Not negative, not positive either                        Don't know
## 219                           Positive                        Don't know
## 220                           Positive                        Don't know
## 221  Not negative, not positive either                        Don't know
## 222  Not negative, not positive either                        Don't know
## 223  Not negative, not positive either                        Don't know
## 224  Not negative, not positive either                        Don't know
## 225  Not negative, not positive either                        Don't know
## 226                           Positive                        Don't know
## 227                           Positive                        Don't know
## 228  Not negative, not positive either                        Don't know
## 229                           Positive                        Don't know
## 230  Not negative, not positive either                        Don't know
## 231  Not negative, not positive either                        Don't know
## 232  Not negative, not positive either                        Don't know
## 233  Not negative, not positive either                        Don't know
## 234  Not negative, not positive either                        Don't know
## 235                           Positive                        Don't know
## 236  Not negative, not positive either                        Don't know
## 237                           Positive                        Don't know
## 238                           Negative                        Don't know
## 239                           Positive                        Don't know
## 240  Not negative, not positive either                        Don't know
## 241                           Positive                        Don't know
## 242                           Positive                        Don't know
## 243  Not negative, not positive either                        Don't know
## 244                           Positive                        Don't know
## 245                           Negative                        Don't know
## 246                           Positive                        Don't know
## 247                           Positive                        Don't know
## 248  Not negative, not positive either                        Don't know
## 249  Not negative, not positive either                        Don't know
## 250                           Positive                        Don't know
## 251                           Positive                              <NA>
## 252                           Positive                          Positive
## 253                           Positive                              <NA>
## 254                           Positive                              <NA>
## 255                           Positive                              <NA>
## 256                           Positive                              <NA>
## 257  Not negative, not positive either                              <NA>
## 258  Not negative, not positive either                              <NA>
## 259                           Positive                              <NA>
## 260                           Positive                              <NA>
## 261                           Positive                              <NA>
## 262                      Very Positive                     Very Positive
## 263                      Very Positive                     Very Positive
## 264                           Positive                              <NA>
## 265                           Positive                          Positive
## 266                           Positive                              <NA>
## 267                           Positive                          Positive
## 268                           Positive                              <NA>
## 269                           Positive                          Positive
## 270                           Positive                              <NA>
## 271  Not negative, not positive either                              <NA>
## 272                           Positive                          Positive
## 273                           Positive                              <NA>
## 274                           Positive                              <NA>
## 275                           Positive                          Positive
## 276  Not negative, not positive either                          Negative
## 277                           Positive                              <NA>
## 278                           Positive                              <NA>
## 279                           Positive                              <NA>
## 280  Not negative, not positive either                              <NA>
## 281                           Positive                              <NA>
## 282                           Positive                              <NA>
## 283                           Positive                              <NA>
## 284  Not negative, not positive either                              <NA>
## 285                           Positive                              <NA>
## 286                           Positive                              <NA>
## 287                           Positive                              <NA>
## 288                           Positive                              <NA>
## 289                      Very Positive                              <NA>
## 290                           Positive                          Positive
## 291                           Positive                          Positive
## 292  Not negative, not positive either                              <NA>
## 293                           Positive                              <NA>
## 294                           Positive                          Positive
## 295                           Positive                              <NA>
## 296                      Very Positive                              <NA>
## 297                           Positive                              <NA>
## 298                           Positive                              <NA>
## 299                           Positive                          Positive
## 300                           Positive                              <NA>
## 302                           Negative                              <NA>
## 303                           Positive                              <NA>
## 304  Not negative, not positive either                              <NA>
## 305                           Negative                              <NA>
## 306                           Negative                          Positive
## 307                               <NA>                              <NA>
## 308  Not negative, not positive either                              <NA>
## 309                           Positive                              <NA>
## 310                         Don't know                              <NA>
## 311                           Positive                              <NA>
## 312                           Positive                              <NA>
## 313                           Positive                              <NA>
## 314                         Don't know                              <NA>
## 315                           Positive                              <NA>
## 316                           Positive                              <NA>
## 317  Not negative, not positive either                              <NA>
## 318                         Don't know                              <NA>
## 319  Not negative, not positive either                              <NA>
## 320                           Positive                              <NA>
## 321                           Positive                              <NA>
## 322                           Positive                              <NA>
## 323                         Don't know                              <NA>
## 324                           Positive                              <NA>
## 325                           Positive                              <NA>
## 326                           Positive                              <NA>
## 327                           Positive                              <NA>
## 328  Not negative, not positive either                              <NA>
## 329                           Negative                              <NA>
## 330                         Don't know                              <NA>
## 331                         Don't know                              <NA>
## 332                      Very Positive                              <NA>
## 333                      Very Positive                              <NA>
## 334                         Don't know                              <NA>
## 335  Not negative, not positive either                              <NA>
## 336                           Negative                              <NA>
## 337  Not negative, not positive either                              <NA>
## 338  Not negative, not positive either                              <NA>
## 339                           Positive                              <NA>
## 340                           Negative                              <NA>
## 341                           Negative                              <NA>
## 342  Not negative, not positive either                              <NA>
## 343                           Positive                              <NA>
## 344                           Positive                              <NA>
## 345                           Negative                              <NA>
## 346                         Don't know                              <NA>
## 347  Not negative, not positive either                              <NA>
## 348  Not negative, not positive either                              <NA>
## 349                           Positive                              <NA>
## 350                           Positive                              <NA>
## 351                      Very Negative                              <NA>
## 352                         Don't know                              <NA>
## 353                           Positive                              <NA>
## 354  Not negative, not positive either                              <NA>
## 355                           Positive                              <NA>
## 356                           Positive                              <NA>
## 357  Not negative, not positive either                              <NA>
## 358                           Positive                              <NA>
## 359  Not negative, not positive either                              <NA>
## 360                           Positive                              <NA>
## 361  Not negative, not positive either                              <NA>
## 362                           Positive                              <NA>
## 363  Not negative, not positive either                              <NA>
## 364                           Positive                              <NA>
## 365  Not negative, not positive either                              <NA>
## 366  Not negative, not positive either                              <NA>
## 367                           Positive                              <NA>
## 368  Not negative, not positive either                              <NA>
## 369                           Positive                              <NA>
## 370                           Positive                              <NA>
## 371                           Positive                              <NA>
## 372                           Positive                              <NA>
## 373                           Positive                              <NA>
## 374                           Positive                              <NA>
## 375                           Positive                              <NA>
## 376  Not negative, not positive either                              <NA>
## 377                           Positive                              <NA>
## 378                           Positive                              <NA>
## 379                           Positive                              <NA>
## 380  Not negative, not positive either                              <NA>
## 381                           Positive                              <NA>
## 382                           Positive                              <NA>
## 383                           Positive                              <NA>
## 384                           Positive                              <NA>
## 385                           Positive                              <NA>
## 386                           Positive                              <NA>
## 387                           Positive                              <NA>
## 388                           Positive                              <NA>
## 389                           Positive                              <NA>
## 390                      Very Positive                              <NA>
## 391  Not negative, not positive either                              <NA>
## 392                           Positive                              <NA>
## 393                           Positive                              <NA>
## 394                           Positive                              <NA>
## 395  Not negative, not positive either                              <NA>
## 396                           Positive                              <NA>
## 397                           Positive                              <NA>
## 398                           Positive                              <NA>
## 399                           Positive                              <NA>
## 400                           Positive                              <NA>
## 401                           Positive                              <NA>
## 402                           Positive                              <NA>
## 403                           Positive                              <NA>
## 404                           Positive                              <NA>
## 405                           Positive                              <NA>
## 406                           Positive                              <NA>
## 407  Not negative, not positive either                              <NA>
## 408                      Very Positive                              <NA>
## 409  Not negative, not positive either                              <NA>
## 410                           Positive                              <NA>
## 411                           Positive                              <NA>
## 412                           Positive                              <NA>
## 413                           Positive                              <NA>
## 414                      Very Positive                              <NA>
## 415                         Don't know                              <NA>
## 416                           Positive                              <NA>
## 417                               <NA>                              <NA>
## 418                      Very Positive                              <NA>
## 419                           Positive                              <NA>
## 420                           Positive                              <NA>
## 421                      Very Positive                              <NA>
## 422                      Very Positive                              <NA>
## 423                      Very Positive                              <NA>
## 424                      Very Positive                              <NA>
## 425                           Positive                              <NA>
## 426                      Very Positive                              <NA>
## 427                           Positive                              <NA>
## 428                         Don't know                        Don't know
## 429                      Very Positive                     Very Positive
## 430                           Positive                              <NA>
## 431                      Very Positive                     Very Positive
## 432                      Very Positive                              <NA>
## 433                           Positive                              <NA>
## 434                      Very Positive                     Very Positive
## 435  Not negative, not positive either Not negative, not positive either
## 436                           Positive                          Positive
## 437                           Positive                          Positive
## 438  Not negative, not positive either                              <NA>
## 439                      Very Positive                     Very Positive
## 440                           Positive                          Positive
## 441                           Positive                          Positive
## 442                               <NA>                              <NA>
## 443                           Positive                          Positive
## 444                           Positive                              <NA>
## 445                      Very Positive                     Very Positive
## 446                      Very Positive                              <NA>
## 447                           Positive                          Positive
## 448                           Positive                          Positive
## 449                           Positive                          Positive
## 450                               <NA>                              <NA>
## 451                           Positive                          Positive
## 452                      Very Positive                              <NA>
## 453  Not negative, not positive either                              <NA>
## 454                           Negative                              <NA>
## 455                               <NA>                              <NA>
## 456                           Negative                              <NA>
## 457  Not negative, not positive either                              <NA>
## 458                           Positive                              <NA>
## 459                           Negative                              <NA>
## 460                           Positive                     Very Positive
## 461                      Very Negative                              <NA>
## 462                           Positive                          Positive
## 463                           Positive Not negative, not positive either
## 464                           Positive                     Very Positive
## 465                      Very Positive                              <NA>
## 466  Not negative, not positive either                              <NA>
## 467                      Very Positive                              <NA>
## 468                           Positive                              <NA>
## 469  Not negative, not positive either                              <NA>
## 470                         Don't know                              <NA>
## 471                           Positive                              <NA>
## 472                               <NA>                              <NA>
## 473  Not negative, not positive either                              <NA>
## 474  Not negative, not positive either                              <NA>
## 475                           Positive                              <NA>
## 476                         Don't know                              <NA>
## 477                           Positive                              <NA>
## 478                           Positive                              <NA>
## 479                         Don't know                              <NA>
## 480                           Positive                              <NA>
## 481  Not negative, not positive either                              <NA>
## 482  Not negative, not positive either                              <NA>
## 483                           Positive                              <NA>
## 484  Not negative, not positive either                              <NA>
## 485                           Positive                              <NA>
## 486                           Positive                              <NA>
## 487  Not negative, not positive either                        Don't know
## 488  Not negative, not positive either                        Don't know
## 489                           Positive                              <NA>
## 490                      Very Positive                              <NA>
## 491                           Positive                              <NA>
## 492                           Positive                              <NA>
## 493                           Negative                              <NA>
## 494  Not negative, not positive either                              <NA>
## 495                           Positive                              <NA>
## 496  Not negative, not positive either Not negative, not positive either
##        Proud..Nepali Proud..Ethnic.Identity
## 1         Very proud             Very proud
## 2         Very proud         Not very proud
## 3         Very proud             Very proud
## 4         Very proud        Notat all proud
## 5        Quite proud         Not very proud
## 6         Very proud            Quite proud
## 7        Quite proud         Not very proud
## 8         Very proud            Quite proud
## 9         Very proud            Quite proud
## 10       Quite proud            Quite proud
## 11       Quite proud            Quite proud
## 12        Very proud             Very proud
## 13        Very proud            Quite proud
## 14        Very proud            Quite proud
## 15        Very proud            Quite proud
## 16       Quite proud            Quite proud
## 17       Quite proud            Quite proud
## 18        Very proud            Quite proud
## 19        Very proud         Not very proud
## 20    Not very proud         Not very proud
## 21        Very proud             Very proud
## 22       Quite proud            Quite proud
## 23        Very proud            Quite proud
## 24       Quite proud            Quite proud
## 25       Quite proud            Quite proud
## 26       Quite proud            Quite proud
## 27       Quite proud            Quite proud
## 28       Quite proud            Quite proud
## 29       Quite proud            Quite proud
## 30        Very proud             Very proud
## 31       Quite proud            Quite proud
## 32       Quite proud        Notat all proud
## 33       Quite proud            Quite proud
## 34       Quite proud             Very proud
## 35       Quite proud            Quite proud
## 36       Quite proud            Quite proud
## 37        Very proud             Very proud
## 38        Very proud             Very proud
## 39       Quite proud            Quite proud
## 40       Quite proud             Very proud
## 41       Quite proud            Quite proud
## 42       Quite proud            Quite proud
## 43        Very proud            Quite proud
## 44    Not very proud            Quite proud
## 45        Very proud            Quite proud
## 46        Very proud        Notat all proud
## 47        Very proud             Very proud
## 48        Very proud             Very proud
## 49    Not very proud            Quite proud
## 50        Very proud             Very proud
## 51       Quite proud        Notat all proud
## 52       Quite proud        Notat all proud
## 53        Very proud         Not very proud
## 54        Very proud        Notat all proud
## 55        Very proud         Not very proud
## 56        Very proud        Notat all proud
## 57        Very proud        Notat all proud
## 58        Very proud        Notat all proud
## 59       Quite proud            Quite proud
## 60        Very proud        Notat all proud
## 61       Quite proud         Not very proud
## 62       Quite proud         Not very proud
## 63    Not very proud         Not very proud
## 64        Very proud         Not very proud
## 65        Very proud        Notat all proud
## 66       Quite proud         Not very proud
## 67       Quite proud         Not very proud
## 68       Quite proud         Not very proud
## 69    Not very proud         Not very proud
## 70       Quite proud         Not very proud
## 71       Quite proud            Quite proud
## 72       Quite proud         Not very proud
## 73       Quite proud         Not very proud
## 74       Quite proud         Not very proud
## 75       Quite proud         Not very proud
## 76       Quite proud         Not very proud
## 77       Quite proud        Notat all proud
## 78       Quite proud        Notat all proud
## 79       Quite proud         Not very proud
## 80    Not very proud         Not very proud
## 81    Not very proud        Notat all proud
## 82    Not very proud        Notat all proud
## 83       Quite proud            Quite proud
## 84       Quite proud         Not very proud
## 85       Quite proud            Quite proud
## 86       Quite proud        Notat all proud
## 87        Very proud        Notat all proud
## 88        Very proud         Not very proud
## 89       Quite proud             Very proud
## 90        Very proud            Quite proud
## 91        Very proud            Quite proud
## 92        Very proud            Quite proud
## 93        Very proud            Quite proud
## 94        Very proud            Quite proud
## 95        Very proud        Notat all proud
## 96        Very proud        Notat all proud
## 97        Very proud        Notat all proud
## 98       Quite proud         Not very proud
## 99        Very proud         Not very proud
## 100       Very proud        Notat all proud
## 101       Very proud             Very proud
## 102       Very proud             Very proud
## 103       Very proud             Very proud
## 104       Very proud             Very proud
## 105       Very proud             Very proud
## 106       Very proud            Quite proud
## 107       Very proud             Very proud
## 108      Quite proud                   <NA>
## 109       Very proud             Very proud
## 110      Quite proud            Quite proud
## 111       Very proud             Very proud
## 112       Very proud             Very proud
## 113      Quite proud             Very proud
## 114       Very proud         Not very proud
## 115      Quite proud         Not very proud
## 116      Quite proud         Not very proud
## 117       Very proud             Very proud
## 118      Quite proud             Very proud
## 119      Quite proud             Very proud
## 120      Quite proud         Not very proud
## 121       Very proud         Not very proud
## 122      Quite proud             Very proud
## 123       Very proud             Very proud
## 124       Very proud         Not very proud
## 125       Very proud            Quite proud
## 126      Quite proud             Very proud
## 127      Quite proud             Very proud
## 128       Very proud             Very proud
## 129       Very proud             Very proud
## 130      Quite proud            Quite proud
## 131      Quite proud             Very proud
## 132       Very proud        Notat all proud
## 133       Very proud         Not very proud
## 134      Quite proud             Very proud
## 135      Quite proud             Very proud
## 136       Very proud        Notat all proud
## 137      Quite proud             Very proud
## 138       Very proud            Quite proud
## 139      Quite proud             Very proud
## 140       Very proud             Very proud
## 141      Quite proud            Quite proud
## 142       Very proud            Quite proud
## 143       Very proud             Very proud
## 144      Quite proud             Very proud
## 145      Quite proud            Quite proud
## 146      Quite proud        Notat all proud
## 147       Very proud             Very proud
## 148       Very proud             Very proud
## 149       Very proud         Not very proud
## 150       Very proud         Not very proud
## 151       Very proud             Very proud
## 152       Very proud            Quite proud
## 153       Very proud            Quite proud
## 154       Very proud             Very proud
## 155       Very proud            Quite proud
## 156       Very proud             Very proud
## 157       Very proud            Quite proud
## 158       Very proud        Notat all proud
## 159      Quite proud         Not very proud
## 160       Very proud         Not very proud
## 161       Very proud         Not very proud
## 162       Very proud            Quite proud
## 163       Very proud             Don't Know
## 164       Very proud            Quite proud
## 165       Very proud        Notat all proud
## 166       Very proud        Notat all proud
## 167       Very proud        Notat all proud
## 168       Very proud         Not very proud
## 169       Very proud             Don't Know
## 170       Very proud         Not very proud
## 171       Very proud             Don't Know
## 172       Very proud             Don't Know
## 173       Very proud             Don't Know
## 174       Very proud            Quite proud
## 175       Very proud             Don't Know
## 176       Very proud            Quite proud
## 177       Very proud             Don't Know
## 178       Very proud             Don't Know
## 179       Very proud             Don't Know
## 180       Very proud             Don't Know
## 181       Very proud             Don't Know
## 182       Very proud         Not very proud
## 183       Very proud             Don't Know
## 184       Very proud             Don't Know
## 185       Very proud             Don't Know
## 186       Very proud             Don't Know
## 187       Very proud         Not very proud
## 188       Very proud             Don't Know
## 189       Very proud             Don't Know
## 190       Very proud             Don't Know
## 191       Very proud             Don't Know
## 192       Very proud             Don't Know
## 193       Very proud             Don't Know
## 194       Very proud             Don't Know
## 195       Very proud                   <NA>
## 196       Very proud                   <NA>
## 197       Very proud             Don't Know
## 198       Very proud             Don't Know
## 199       Very proud             Don't Know
## 200       Very proud             Don't Know
## 201       Very proud        Notat all proud
## 202      Quite proud         Not very proud
## 203      Quite proud         Not very proud
## 204      Quite proud         Not very proud
## 205      Quite proud         Not very proud
## 206       Very proud             Very proud
## 207      Quite proud         Not very proud
## 208       Very proud            Quite proud
## 209      Quite proud         Not very proud
## 210       Very proud             Very proud
## 211       Very proud         Not very proud
## 212       Very proud         Not very proud
## 213       Very proud         Not very proud
## 214       Very proud         Not very proud
## 215       Very proud            Quite proud
## 216       Very proud            Quite proud
## 217   Not very proud            Quite proud
## 218       Very proud            Quite proud
## 219       Very proud            Quite proud
## 220      Quite proud            Quite proud
## 221       Very proud            Quite proud
## 222      Quite proud         Not very proud
## 223       Very proud            Quite proud
## 224   Not very proud            Quite proud
## 225      Quite proud        Notat all proud
## 226      Quite proud         Not very proud
## 227       Very proud         Not very proud
## 228   Not very proud            Quite proud
## 229      Quite proud         Not very proud
## 230   Not very proud         Not very proud
## 231       Very proud             Very proud
## 232      Quite proud         Not very proud
## 233       Very proud             Very proud
## 234       Very proud            Quite proud
## 235       Very proud         Not very proud
## 236       Very proud            Quite proud
## 237      Quite proud             Very proud
## 238       Very proud             Very proud
## 239       Very proud         Not very proud
## 240       Very proud            Quite proud
## 241       Very proud            Quite proud
## 242       Very proud         Not very proud
## 243       Very proud            Quite proud
## 244       Very proud         Not very proud
## 245      Quite proud             Very proud
## 246      Quite proud         Not very proud
## 247   Not very proud            Quite proud
## 248   Not very proud             Very proud
## 249       Very proud         Not very proud
## 250       Very proud            Quite proud
## 251      Quite proud             Very proud
## 252       Very proud                   <NA>
## 253      Quite proud                   <NA>
## 254      Quite proud        Notat all proud
## 255      Quite proud                   <NA>
## 256      Quite proud                   <NA>
## 257      Quite proud                   <NA>
## 258      Quite proud             Very proud
## 259       Very proud                   <NA>
## 260       Very proud                   <NA>
## 261      Quite proud            Quite proud
## 262      Quite proud            Quite proud
## 263       Very proud            Quite proud
## 264      Quite proud            Quite proud
## 265       Very proud                   <NA>
## 266      Quite proud                   <NA>
## 267      Quite proud                   <NA>
## 268      Quite proud                   <NA>
## 269      Quite proud                   <NA>
## 270      Quite proud         Not very proud
## 271       Very proud                   <NA>
## 272       Very proud             Very proud
## 273      Quite proud             Very proud
## 274   Not very proud                   <NA>
## 275      Quite proud                   <NA>
## 276       Very proud            Quite proud
## 277       Don't Know             Don't Know
## 278      Quite proud            Quite proud
## 279      Quite proud            Quite proud
## 280      Quite proud                   <NA>
## 281      Quite proud            Quite proud
## 282      Quite proud            Quite proud
## 283      Quite proud            Quite proud
## 284      Quite proud                   <NA>
## 285      Quite proud            Quite proud
## 286      Quite proud                   <NA>
## 287      Quite proud                   <NA>
## 288      Quite proud            Quite proud
## 289      Quite proud             Very proud
## 290      Quite proud                   <NA>
## 291   Not very proud                   <NA>
## 292      Quite proud            Quite proud
## 293       Very proud                   <NA>
## 294             <NA>            Quite proud
## 295       Very proud                   <NA>
## 296      Quite proud            Quite proud
## 297       Very proud            Quite proud
## 298       Very proud                   <NA>
## 299      Quite proud                   <NA>
## 300       Very proud            Quite proud
## 302       Very proud         Not very proud
## 303       Very proud         Not very proud
## 304       Very proud         Not very proud
## 305       Very proud             Very proud
## 306       Very proud             Very proud
## 307      Quite proud            Quite proud
## 308       Very proud            Quite proud
## 309       Very proud             Very proud
## 310       Very proud             Very proud
## 311       Very proud             Very proud
## 312       Very proud             Very proud
## 313       Very proud             Very proud
## 314       Very proud             Very proud
## 315       Very proud             Very proud
## 316       Very proud                   <NA>
## 317       Very proud             Very proud
## 318       Very proud             Very proud
## 319       Very proud             Very proud
## 320       Very proud            Quite proud
## 321      Quite proud            Quite proud
## 322       Very proud             Don't Know
## 323       Very proud             Very proud
## 324       Very proud            Quite proud
## 325       Very proud             Very proud
## 326       Very proud             Very proud
## 327       Very proud             Very proud
## 328       Very proud             Very proud
## 329       Very proud             Very proud
## 330       Very proud             Very proud
## 331      Quite proud            Quite proud
## 332      Quite proud             Very proud
## 333       Very proud             Very proud
## 334       Very proud            Quite proud
## 335       Very proud             Very proud
## 336       Very proud             Very proud
## 337       Very proud             Very proud
## 338       Very proud             Very proud
## 339      Quite proud         Not very proud
## 340       Very proud             Very proud
## 341      Quite proud         Not very proud
## 342       Very proud            Quite proud
## 343   Not very proud         Not very proud
## 344       Very proud             Very proud
## 345       Very proud             Very proud
## 346       Very proud             Very proud
## 347       Very proud             Very proud
## 348       Very proud             Very proud
## 349       Very proud             Very proud
## 350       Very proud        Notat all proud
## 351       Very proud             Very proud
## 352      Quite proud            Quite proud
## 353      Quite proud            Quite proud
## 354       Very proud            Quite proud
## 355      Quite proud            Quite proud
## 356       Very proud             Very proud
## 357       Very proud            Quite proud
## 358       Very proud            Quite proud
## 359      Quite proud            Quite proud
## 360       Very proud             Very proud
## 361       Very proud            Quite proud
## 362       Very proud             Very proud
## 363       Very proud            Quite proud
## 364   Not very proud         Not very proud
## 365      Quite proud            Quite proud
## 366       Very proud            Quite proud
## 367       Very proud            Quite proud
## 368      Quite proud         Not very proud
## 369       Very proud            Quite proud
## 370       Very proud            Quite proud
## 371      Quite proud            Quite proud
## 372      Quite proud            Quite proud
## 373      Quite proud            Quite proud
## 374      Quite proud            Quite proud
## 375      Quite proud            Quite proud
## 376      Quite proud            Quite proud
## 377       Very proud             Very proud
## 378       Very proud            Quite proud
## 379      Quite proud            Quite proud
## 380      Quite proud            Quite proud
## 381      Quite proud            Quite proud
## 382       Very proud            Quite proud
## 383       Very proud            Quite proud
## 384       Very proud            Quite proud
## 385       Very proud            Quite proud
## 386       Very proud            Quite proud
## 387       Very proud            Quite proud
## 388       Very proud            Quite proud
## 389       Very proud            Quite proud
## 390      Quite proud            Quite proud
## 391      Quite proud            Quite proud
## 392       Very proud            Quite proud
## 393      Quite proud            Quite proud
## 394       Very proud            Quite proud
## 395       Very proud             Very proud
## 396      Quite proud            Quite proud
## 397       Very proud            Quite proud
## 398       Very proud            Quite proud
## 399       Very proud            Quite proud
## 400       Very proud            Quite proud
## 401       Very proud            Quite proud
## 402       Very proud            Quite proud
## 403       Very proud            Quite proud
## 404       Very proud             Don't Know
## 405      Quite proud         Not very proud
## 406       Very proud            Quite proud
## 407       Very proud            Quite proud
## 408       Very proud            Quite proud
## 409      Quite proud            Quite proud
## 410       Very proud            Quite proud
## 411       Very proud            Quite proud
## 412       Very proud            Quite proud
## 413       Very proud            Quite proud
## 414      Quite proud             Very proud
## 415       Very proud            Quite proud
## 416       Very proud            Quite proud
## 417      Quite proud            Quite proud
## 418       Very proud            Quite proud
## 419       Very proud            Quite proud
## 420      Quite proud            Quite proud
## 421       Very proud            Quite proud
## 422       Don't Know             Don't Know
## 423       Very proud            Quite proud
## 424       Very proud            Quite proud
## 425       Very proud            Quite proud
## 426       Very proud            Quite proud
## 427       Very proud             Very proud
## 428       Very proud             Very proud
## 429       Very proud             Very proud
## 430       Very proud             Very proud
## 431       Very proud             Very proud
## 432       Very proud             Very proud
## 433       Very proud             Very proud
## 434       Very proud             Very proud
## 435       Very proud             Very proud
## 436       Very proud             Very proud
## 437       Very proud             Very proud
## 438      Quite proud            Quite proud
## 439       Very proud             Very proud
## 440       Very proud             Very proud
## 441       Very proud             Very proud
## 442      Quite proud            Quite proud
## 443       Very proud             Very proud
## 444       Very proud             Very proud
## 445       Very proud             Very proud
## 446       Very proud            Quite proud
## 447       Very proud             Very proud
## 448       Very proud             Very proud
## 449       Very proud             Very proud
## 450      Quite proud            Quite proud
## 451       Very proud             Very proud
## 452       Very proud             Very proud
## 453      Quite proud            Quite proud
## 454      Quite proud        Notat all proud
## 455       Very proud             Very proud
## 456       Very proud         Not very proud
## 457      Quite proud             Don't Know
## 458  Notat all proud        Notat all proud
## 459       Very proud         Not very proud
## 460  Notat all proud             Very proud
## 461      Quite proud            Quite proud
## 462       Very proud            Quite proud
## 463       Very proud             Very proud
## 464       Very proud            Quite proud
## 465       Very proud             Very proud
## 466       Very proud         Not very proud
## 467       Very proud             Very proud
## 468             <NA>            Quite proud
## 469       Very proud             Very proud
## 470       Very proud             Don't Know
## 471      Quite proud             Very proud
## 472       Very proud            Quite proud
## 473       Very proud        Notat all proud
## 474       Very proud             Don't Know
## 475       Very proud         Not very proud
## 476       Very proud             Don't Know
## 477       Very proud         Not very proud
## 478      Quite proud        Notat all proud
## 479       Very proud             Don't Know
## 480       Very proud             Don't Know
## 481      Quite proud         Not very proud
## 482       Very proud        Notat all proud
## 483       Very proud                   <NA>
## 484   Not very proud                   <NA>
## 485       Very proud                   <NA>
## 486       Very proud            Quite proud
## 487      Quite proud                   <NA>
## 488      Quite proud             Don't Know
## 489       Very proud            Quite proud
## 490       Very proud             Very proud
## 491      Quite proud         Not very proud
## 492       Very proud            Quite proud
## 493       Very proud        Notat all proud
## 494       Very proud                   <NA>
## 495      Quite proud        Notat all proud
## 496      Quite proud            Quite proud
##      Civil.Servants..Prompt.and.Efficient Civil.Servants..Corrupt
## 1                          Quite Disagree            Partly Agree
## 2                          Quite Disagree          Strongly Agree
## 3                          Quite Disagree            Partly Agree
## 4                            Partly Agree          Strongly Agree
## 5                          Quite Disagree            Partly Agree
## 6                          Quite Disagree          Strongly Agree
## 7                          Quite Disagree          Strongly Agree
## 8                       Strongly Disagree          Strongly Agree
## 9                          Quite Disagree            Partly Agree
## 10                             Don't Know            Partly Agree
## 11                      Strongly Disagree            Partly Agree
## 12                      Strongly Disagree            Partly Agree
## 13                         Quite Disagree            Partly Agree
## 14                         Quite Disagree          Strongly Agree
## 15                         Quite Disagree          Strongly Agree
## 16                         Quite Disagree          Quite Disagree
## 17                           Partly Agree          Quite Disagree
## 18                                   <NA>          Quite Disagree
## 19                         Quite Disagree            Partly Agree
## 20                         Quite Disagree          Quite Disagree
## 21                           Partly Agree          Quite Disagree
## 22                         Quite Disagree            Partly Agree
## 23                         Quite Disagree          Strongly Agree
## 24                         Quite Disagree          Strongly Agree
## 25                         Quite Disagree            Partly Agree
## 26                           Partly Agree          Strongly Agree
## 27                         Quite Disagree            Partly Agree
## 28                         Quite Disagree            Partly Agree
## 29                             Don't Know          Strongly Agree
## 30                         Quite Disagree            Partly Agree
## 31                           Partly Agree          Quite Disagree
## 32                             Don't Know            Partly Agree
## 33                         Quite Disagree          Quite Disagree
## 34                         Quite Disagree            Partly Agree
## 35                         Strongly Agree            Partly Agree
## 36                         Quite Disagree            Partly Agree
## 37                         Quite Disagree          Strongly Agree
## 38                         Quite Disagree            Partly Agree
## 39                           Partly Agree          Strongly Agree
## 40                         Quite Disagree            Partly Agree
## 41                         Quite Disagree            Partly Agree
## 42                         Quite Disagree          Strongly Agree
## 43                         Quite Disagree            Partly Agree
## 44                             Don't Know            Partly Agree
## 45                         Quite Disagree            Partly Agree
## 46                      Strongly Disagree            Partly Agree
## 47                         Quite Disagree            Partly Agree
## 48                         Quite Disagree          Quite Disagree
## 49                         Quite Disagree            Partly Agree
## 50                           Partly Agree          Quite Disagree
## 51                           Partly Agree            Partly Agree
## 52                         Quite Disagree            Partly Agree
## 53                         Quite Disagree            Partly Agree
## 54                           Partly Agree            Partly Agree
## 55                           Partly Agree            Partly Agree
## 56                         Quite Disagree            Partly Agree
## 57                             Don't Know              Don't Know
## 58                         Quite Disagree            Partly Agree
## 59                           Partly Agree            Partly Agree
## 60                      Strongly Disagree            Partly Agree
## 61                           Partly Agree          Quite Disagree
## 62                         Quite Disagree            Partly Agree
## 63                           Partly Agree            Partly Agree
## 64                         Quite Disagree            Partly Agree
## 65                         Quite Disagree            Partly Agree
## 66                         Quite Disagree            Partly Agree
## 67                           Partly Agree            Partly Agree
## 68                         Quite Disagree            Partly Agree
## 69                         Quite Disagree            Partly Agree
## 70                         Quite Disagree            Partly Agree
## 71                         Quite Disagree          Quite Disagree
## 72                           Partly Agree            Partly Agree
## 73                           Partly Agree            Partly Agree
## 74                         Quite Disagree            Partly Agree
## 75                           Partly Agree            Partly Agree
## 76                           Partly Agree          Strongly Agree
## 77                           Partly Agree          Strongly Agree
## 78                           Partly Agree          Strongly Agree
## 79                           Partly Agree            Partly Agree
## 80                         Quite Disagree            Partly Agree
## 81                         Quite Disagree            Partly Agree
## 82                         Quite Disagree            Partly Agree
## 83                           Partly Agree            Partly Agree
## 84                           Partly Agree          Strongly Agree
## 85                         Quite Disagree          Quite Disagree
## 86                         Quite Disagree          Quite Disagree
## 87                         Quite Disagree            Partly Agree
## 88                         Quite Disagree            Partly Agree
## 89                           Partly Agree            Partly Agree
## 90                           Partly Agree            Partly Agree
## 91                         Quite Disagree                    <NA>
## 92                           Partly Agree            Partly Agree
## 93                           Partly Agree            Partly Agree
## 94                           Partly Agree          Strongly Agree
## 95                           Partly Agree            Partly Agree
## 96                           Partly Agree            Partly Agree
## 97                           Partly Agree            Partly Agree
## 98                           Partly Agree            Partly Agree
## 99                           Partly Agree            Partly Agree
## 100                          Partly Agree            Partly Agree
## 101                          Partly Agree          Strongly Agree
## 102                        Strongly Agree          Strongly Agree
## 103                        Strongly Agree            Partly Agree
## 104                          Partly Agree            Partly Agree
## 105                        Quite Disagree       Strongly Disagree
## 106                        Quite Disagree            Partly Agree
## 107                        Quite Disagree            Partly Agree
## 108                        Quite Disagree          Quite Disagree
## 109                          Partly Agree              Don't Know
## 110                          Partly Agree          Quite Disagree
## 111                          Partly Agree       Strongly Disagree
## 112                          Partly Agree          Quite Disagree
## 113                          Partly Agree       Strongly Disagree
## 114                          Partly Agree          Strongly Agree
## 115                        Strongly Agree       Strongly Disagree
## 116                          Partly Agree       Strongly Disagree
## 117                        Quite Disagree          Quite Disagree
## 118                          Partly Agree            Partly Agree
## 119                        Quite Disagree            Partly Agree
## 120                          Partly Agree       Strongly Disagree
## 121                        Quite Disagree       Strongly Disagree
## 122                        Strongly Agree       Strongly Disagree
## 123                          Partly Agree       Strongly Disagree
## 124                     Strongly Disagree       Strongly Disagree
## 125                     Strongly Disagree       Strongly Disagree
## 126                          Partly Agree          Quite Disagree
## 127                        Quite Disagree       Strongly Disagree
## 128                          Partly Agree          Quite Disagree
## 129                        Strongly Agree       Strongly Disagree
## 130                        Quite Disagree            Partly Agree
## 131                          Partly Agree          Quite Disagree
## 132                        Quite Disagree       Strongly Disagree
## 133                        Quite Disagree       Strongly Disagree
## 134                        Quite Disagree       Strongly Disagree
## 135                        Quite Disagree       Strongly Disagree
## 136                            Don't Know              Don't Know
## 137                        Quite Disagree       Strongly Disagree
## 138                          Partly Agree       Strongly Disagree
## 139                          Partly Agree       Strongly Disagree
## 140                        Quite Disagree       Strongly Disagree
## 141                          Partly Agree          Quite Disagree
## 142                     Strongly Disagree          Quite Disagree
## 143                          Partly Agree       Strongly Disagree
## 144                        Quite Disagree       Strongly Disagree
## 145                     Strongly Disagree       Strongly Disagree
## 146                            Don't Know              Don't Know
## 147                          Partly Agree          Quite Disagree
## 148                          Partly Agree       Strongly Disagree
## 149                          Partly Agree          Strongly Agree
## 150                        Strongly Agree       Strongly Disagree
## 151                          Partly Agree            Partly Agree
## 152                          Partly Agree          Strongly Agree
## 153                            Don't Know          Strongly Agree
## 154                     Strongly Disagree            Partly Agree
## 155                          Partly Agree            Partly Agree
## 156                          Partly Agree            Partly Agree
## 157                            Don't Know            Partly Agree
## 158                          Partly Agree            Partly Agree
## 159                          Partly Agree            Partly Agree
## 160                          Partly Agree          Strongly Agree
## 161                          Partly Agree          Strongly Agree
## 162                          Partly Agree          Strongly Agree
## 163                          Partly Agree          Quite Disagree
## 164                            Don't Know              Don't Know
## 165                          Partly Agree            Partly Agree
## 166                            Don't Know            Partly Agree
## 167                          Partly Agree            Partly Agree
## 168                        Quite Disagree          Quite Disagree
## 169                          Partly Agree          Strongly Agree
## 170                            Don't Know          Strongly Agree
## 171                            Don't Know          Strongly Agree
## 172                        Quite Disagree              Don't Know
## 173                          Partly Agree          Strongly Agree
## 174                        Strongly Agree          Strongly Agree
## 175                          Partly Agree          Strongly Agree
## 176                        Strongly Agree            Partly Agree
## 177                            Don't Know          Strongly Agree
## 178                          Partly Agree            Partly Agree
## 179                        Strongly Agree          Strongly Agree
## 180                          Partly Agree          Strongly Agree
## 181                          Partly Agree            Partly Agree
## 182                          Partly Agree          Strongly Agree
## 183                            Don't Know            Partly Agree
## 184                          Partly Agree            Partly Agree
## 185                          Partly Agree          Strongly Agree
## 186                          Partly Agree          Strongly Agree
## 187                          Partly Agree            Partly Agree
## 188                          Partly Agree            Partly Agree
## 189                          Partly Agree          Strongly Agree
## 190                          Partly Agree          Strongly Agree
## 191                          Partly Agree          Strongly Agree
## 192                          Partly Agree          Strongly Agree
## 193                          Partly Agree          Strongly Agree
## 194                          Partly Agree          Strongly Agree
## 195                          Partly Agree          Strongly Agree
## 196                          Partly Agree            Partly Agree
## 197                          Partly Agree            Partly Agree
## 198                          Partly Agree          Strongly Agree
## 199                          Partly Agree            Partly Agree
## 200                          Partly Agree          Strongly Agree
## 201                          Partly Agree          Quite Disagree
## 202                        Quite Disagree            Partly Agree
## 203                     Strongly Disagree          Quite Disagree
## 204                        Quite Disagree            Partly Agree
## 205                          Partly Agree          Quite Disagree
## 206                        Quite Disagree            Partly Agree
## 207                        Quite Disagree            Partly Agree
## 208                        Quite Disagree            Partly Agree
## 209                     Strongly Disagree            Partly Agree
## 210                        Quite Disagree            Partly Agree
## 211                     Strongly Disagree       Strongly Disagree
## 212                     Strongly Disagree          Quite Disagree
## 213                     Strongly Disagree       Strongly Disagree
## 214                     Strongly Disagree          Quite Disagree
## 215                     Strongly Disagree       Strongly Disagree
## 216                     Strongly Disagree       Strongly Disagree
## 217                        Strongly Agree          Strongly Agree
## 218                        Quite Disagree            Partly Agree
## 219                        Strongly Agree          Strongly Agree
## 220                          Partly Agree          Quite Disagree
## 221                        Strongly Agree          Strongly Agree
## 222                        Quite Disagree            Partly Agree
## 223                        Quite Disagree            Partly Agree
## 224                        Quite Disagree            Partly Agree
## 225                          Partly Agree          Quite Disagree
## 226                          Partly Agree          Quite Disagree
## 227                        Quite Disagree            Partly Agree
## 228                          Partly Agree          Quite Disagree
## 229                          Partly Agree          Quite Disagree
## 230                        Quite Disagree            Partly Agree
## 231                     Strongly Disagree            Partly Agree
## 232                        Quite Disagree          Strongly Agree
## 233                        Quite Disagree          Strongly Agree
## 234                        Quite Disagree          Strongly Agree
## 235                        Quite Disagree          Strongly Agree
## 236                        Quite Disagree            Partly Agree
## 237                          Partly Agree            Partly Agree
## 238                          Partly Agree            Partly Agree
## 239                        Quite Disagree            Partly Agree
## 240                        Quite Disagree          Strongly Agree
## 241                        Quite Disagree          Strongly Agree
## 242                        Quite Disagree          Strongly Agree
## 243                        Quite Disagree          Strongly Agree
## 244                        Quite Disagree          Strongly Agree
## 245                          Partly Agree            Partly Agree
## 246                     Strongly Disagree          Strongly Agree
## 247                        Quite Disagree            Partly Agree
## 248                          Partly Agree          Quite Disagree
## 249                        Quite Disagree            Partly Agree
## 250                          Partly Agree            Partly Agree
## 251                          Partly Agree            Partly Agree
## 252                          Partly Agree          Quite Disagree
## 253                          Partly Agree              Don't Know
## 254                        Quite Disagree          Quite Disagree
## 255                          Partly Agree          Quite Disagree
## 256                        Quite Disagree       Strongly Disagree
## 257                            Don't Know              Don't Know
## 258                          Partly Agree              Don't Know
## 259                          Partly Agree              Don't Know
## 260                          Partly Agree          Quite Disagree
## 261                            Don't Know              Don't Know
## 262                          Partly Agree          Quite Disagree
## 263                          Partly Agree              Don't Know
## 264                        Quite Disagree          Quite Disagree
## 265                            Don't Know              Don't Know
## 266                          Partly Agree          Quite Disagree
## 267                          Partly Agree          Quite Disagree
## 268                          Partly Agree       Strongly Disagree
## 269                          Partly Agree              Don't Know
## 270                          Partly Agree          Quite Disagree
## 271                          Partly Agree          Quite Disagree
## 272                          Partly Agree          Quite Disagree
## 273                          Partly Agree          Quite Disagree
## 274                          Partly Agree          Quite Disagree
## 275                          Partly Agree          Quite Disagree
## 276                        Quite Disagree          Quite Disagree
## 277                          Partly Agree              Don't Know
## 278                          Partly Agree          Quite Disagree
## 279                          Partly Agree              Don't Know
## 280                        Quite Disagree          Quite Disagree
## 281                          Partly Agree          Quite Disagree
## 282                        Quite Disagree          Quite Disagree
## 283                          Partly Agree          Quite Disagree
## 284                          Partly Agree            Partly Agree
## 285                          Partly Agree          Quite Disagree
## 286                          Partly Agree          Quite Disagree
## 287                          Partly Agree          Quite Disagree
## 288                            Don't Know              Don't Know
## 289                          Partly Agree              Don't Know
## 290                          Partly Agree          Quite Disagree
## 291                        Quite Disagree          Quite Disagree
## 292                          Partly Agree              Don't Know
## 293                          Partly Agree          Quite Disagree
## 294                        Quite Disagree          Quite Disagree
## 295                          Partly Agree            Partly Agree
## 296                          Partly Agree          Quite Disagree
## 297                          Partly Agree          Quite Disagree
## 298                          Partly Agree          Quite Disagree
## 299                            Don't Know          Quite Disagree
## 300                        Quite Disagree          Quite Disagree
## 302                        Quite Disagree          Quite Disagree
## 303                        Quite Disagree       Strongly Disagree
## 304                        Quite Disagree            Partly Agree
## 305                     Strongly Disagree            Partly Agree
## 306                          Partly Agree            Partly Agree
## 307                     Strongly Disagree            Partly Agree
## 308                        Quite Disagree            Partly Agree
## 309                        Quite Disagree            Partly Agree
## 310                        Quite Disagree            Partly Agree
## 311                          Partly Agree          Quite Disagree
## 312                        Quite Disagree          Quite Disagree
## 313                        Quite Disagree          Quite Disagree
## 314                          Partly Agree            Partly Agree
## 315                        Quite Disagree          Quite Disagree
## 316                          Partly Agree          Quite Disagree
## 317                        Strongly Agree          Strongly Agree
## 318                        Quite Disagree          Strongly Agree
## 319                        Quite Disagree          Quite Disagree
## 320                          Partly Agree          Quite Disagree
## 321                        Quite Disagree          Quite Disagree
## 322                          Partly Agree              Don't Know
## 323                          Partly Agree          Quite Disagree
## 324                          Partly Agree          Quite Disagree
## 325                        Quite Disagree          Quite Disagree
## 326                        Quite Disagree          Quite Disagree
## 327                        Quite Disagree          Quite Disagree
## 328                     Strongly Disagree            Partly Agree
## 329                        Quite Disagree          Strongly Agree
## 330                        Quite Disagree       Strongly Disagree
## 331                     Strongly Disagree          Quite Disagree
## 332                     Strongly Disagree          Quite Disagree
## 333                     Strongly Disagree          Quite Disagree
## 334                          Partly Agree          Quite Disagree
## 335                     Strongly Disagree            Partly Agree
## 336                        Quite Disagree          Strongly Agree
## 337                     Strongly Disagree            Partly Agree
## 338                          Partly Agree          Quite Disagree
## 339                        Strongly Agree          Quite Disagree
## 340                          Partly Agree          Strongly Agree
## 341                        Quite Disagree            Partly Agree
## 342                        Quite Disagree            Partly Agree
## 343                        Quite Disagree          Quite Disagree
## 344                        Quite Disagree          Quite Disagree
## 345                            Don't Know          Strongly Agree
## 346                          Partly Agree          Quite Disagree
## 347                        Quite Disagree            Partly Agree
## 348                          Partly Agree          Quite Disagree
## 349                        Quite Disagree            Partly Agree
## 350                     Strongly Disagree            Partly Agree
## 351                        Quite Disagree            Partly Agree
## 352                            Don't Know            Partly Agree
## 353                          Partly Agree            Partly Agree
## 354                            Don't Know            Partly Agree
## 355                        Quite Disagree          Quite Disagree
## 356                        Quite Disagree            Partly Agree
## 357                          Partly Agree            Partly Agree
## 358                          Partly Agree            Partly Agree
## 359                          Partly Agree            Partly Agree
## 360                        Quite Disagree            Partly Agree
## 361                          Partly Agree          Strongly Agree
## 362                          Partly Agree            Partly Agree
## 363                        Quite Disagree            Partly Agree
## 364                          Partly Agree            Partly Agree
## 365                          Partly Agree              Don't Know
## 366                        Quite Disagree            Partly Agree
## 367                          Partly Agree          Quite Disagree
## 368                        Quite Disagree            Partly Agree
## 369                          Partly Agree            Partly Agree
## 370                          Partly Agree          Quite Disagree
## 371                        Quite Disagree            Partly Agree
## 372                        Quite Disagree          Quite Disagree
## 373                          Partly Agree          Quite Disagree
## 374                          Partly Agree          Strongly Agree
## 375                          Partly Agree            Partly Agree
## 376                          Partly Agree            Partly Agree
## 377                          Partly Agree          Quite Disagree
## 378                          Partly Agree          Quite Disagree
## 379                          Partly Agree            Partly Agree
## 380                        Quite Disagree            Partly Agree
## 381                            Don't Know            Partly Agree
## 382                            Don't Know            Partly Agree
## 383                          Partly Agree            Partly Agree
## 384                          Partly Agree            Partly Agree
## 385                          Partly Agree            Partly Agree
## 386                          Partly Agree            Partly Agree
## 387                          Partly Agree            Partly Agree
## 388                            Don't Know          Strongly Agree
## 389                        Quite Disagree            Partly Agree
## 390                        Strongly Agree            Partly Agree
## 391                        Quite Disagree            Partly Agree
## 392                        Quite Disagree            Partly Agree
## 393                            Don't Know            Partly Agree
## 394                            Don't Know            Partly Agree
## 395                          Partly Agree          Quite Disagree
## 396                          Partly Agree          Strongly Agree
## 397                        Quite Disagree            Partly Agree
## 398                          Partly Agree            Partly Agree
## 399                            Don't Know            Partly Agree
## 400                          Partly Agree          Strongly Agree
## 401                          Partly Agree            Partly Agree
## 402                            Don't Know              Don't Know
## 403                          Partly Agree            Partly Agree
## 404                        Quite Disagree          Quite Disagree
## 405                        Quite Disagree            Partly Agree
## 406                        Quite Disagree          Quite Disagree
## 407                        Quite Disagree          Quite Disagree
## 408                          Partly Agree          Quite Disagree
## 409                          Partly Agree          Quite Disagree
## 410                        Quite Disagree            Partly Agree
## 411                        Quite Disagree          Quite Disagree
## 412                          Partly Agree          Quite Disagree
## 413                        Strongly Agree          Quite Disagree
## 414                          Partly Agree          Quite Disagree
## 415                            Don't Know              Don't Know
## 416                          Partly Agree          Quite Disagree
## 417                            Don't Know              Don't Know
## 418                            Don't Know              Don't Know
## 419                          Partly Agree            Partly Agree
## 420                          Partly Agree          Quite Disagree
## 421                        Strongly Agree          Quite Disagree
## 422                            Don't Know              Don't Know
## 423                        Strongly Agree          Quite Disagree
## 424                          Partly Agree          Quite Disagree
## 425                          Partly Agree          Quite Disagree
## 426                        Strongly Agree          Quite Disagree
## 427                          Partly Agree       Strongly Disagree
## 428                            Don't Know              Don't Know
## 429                          Partly Agree          Quite Disagree
## 430                        Strongly Agree            Partly Agree
## 431                        Strongly Agree          Quite Disagree
## 432                            Don't Know              Don't Know
## 433                          Partly Agree          Quite Disagree
## 434                          Partly Agree          Quite Disagree
## 435                            Don't Know              Don't Know
## 436                          Partly Agree          Quite Disagree
## 437                          Partly Agree          Quite Disagree
## 438                          Partly Agree          Quite Disagree
## 439                        Strongly Agree          Quite Disagree
## 440                        Strongly Agree          Quite Disagree
## 441                        Strongly Agree          Quite Disagree
## 442                          Partly Agree          Quite Disagree
## 443                        Strongly Agree          Quite Disagree
## 444                          Partly Agree          Quite Disagree
## 445                        Strongly Agree            Partly Agree
## 446                        Strongly Agree          Quite Disagree
## 447                        Strongly Agree          Quite Disagree
## 448                          Partly Agree                    <NA>
## 449                          Partly Agree          Quite Disagree
## 450                          Partly Agree          Quite Disagree
## 451                          Partly Agree          Quite Disagree
## 452                        Strongly Agree          Quite Disagree
## 453                          Partly Agree          Quite Disagree
## 454                     Strongly Disagree          Quite Disagree
## 455                        Quite Disagree            Partly Agree
## 456                     Strongly Disagree            Partly Agree
## 457                        Quite Disagree              Don't Know
## 458                     Strongly Disagree          Strongly Agree
## 459                     Strongly Disagree          Strongly Agree
## 460                        Quite Disagree       Strongly Disagree
## 461                            Don't Know            Partly Agree
## 462                          Partly Agree            Partly Agree
## 463                          Partly Agree       Strongly Disagree
## 464                        Quite Disagree          Strongly Agree
## 465                        Quite Disagree       Strongly Disagree
## 466                        Quite Disagree       Strongly Disagree
## 467                          Partly Agree          Strongly Agree
## 468                          Partly Agree          Strongly Agree
## 469                        Quite Disagree          Strongly Agree
## 470                        Quite Disagree            Partly Agree
## 471                        Quite Disagree          Strongly Agree
## 472                          Partly Agree            Partly Agree
## 473                        Quite Disagree            Partly Agree
## 474                     Strongly Disagree          Strongly Agree
## 475                        Quite Disagree          Strongly Agree
## 476                     Strongly Disagree          Strongly Agree
## 477                        Quite Disagree          Strongly Agree
## 478                     Strongly Disagree          Strongly Agree
## 479                            Don't Know          Strongly Agree
## 480                     Strongly Disagree          Strongly Agree
## 481                     Strongly Disagree            Partly Agree
## 482                        Quite Disagree            Partly Agree
## 483                     Strongly Disagree            Partly Agree
## 484                     Strongly Disagree            Partly Agree
## 485                          Partly Agree          Quite Disagree
## 486                          Partly Agree          Quite Disagree
## 487                          Partly Agree          Quite Disagree
## 488                        Quite Disagree            Partly Agree
## 489                          Partly Agree          Quite Disagree
## 490                        Quite Disagree          Quite Disagree
## 491                        Quite Disagree                    <NA>
## 492                          Partly Agree          Quite Disagree
## 493                     Strongly Disagree          Strongly Agree
## 494                          Partly Agree          Strongly Agree
## 495                          Partly Agree          Strongly Agree
## 496                          Partly Agree          Quite Disagree
##      Civil.Servants..Serve.their.personal.interests.instead.of.that.of.the.citizens
## 1                                                                      Partly Agree
## 2                                                                    Strongly Agree
## 3                                                                      Partly Agree
## 4                                                                    Strongly Agree
## 5                                                                    Strongly Agree
## 6                                                                      Partly Agree
## 7                                                                      Partly Agree
## 8                                                                      Partly Agree
## 9                                                                      Partly Agree
## 10                                                                   Strongly Agree
## 11                                                                     Partly Agree
## 12                                                                   Strongly Agree
## 13                                                                     Partly Agree
## 14                                                                   Strongly Agree
## 15                                                                   Strongly Agree
## 16                                                                     Partly Agree
## 17                                                                   Quite Disagree
## 18                                                                Strongly Disagree
## 19                                                                     Partly Agree
## 20                                                                   Quite Disagree
## 21                                                                   Quite Disagree
## 22                                                                   Strongly Agree
## 23                                                                   Strongly Agree
## 24                                                                     Partly Agree
## 25                                                                     Partly Agree
## 26                                                                     Partly Agree
## 27                                                                   Quite Disagree
## 28                                                                   Quite Disagree
## 29                                                                   Strongly Agree
## 30                                                                     Partly Agree
## 31                                                                   Quite Disagree
## 32                                                                       Don't Know
## 33                                                                   Quite Disagree
## 34                                                                   Strongly Agree
## 35                                                                   Strongly Agree
## 36                                                                     Partly Agree
## 37                                                                   Quite Disagree
## 38                                                                     Partly Agree
## 39                                                                   Quite Disagree
## 40                                                                     Partly Agree
## 41                                                                     Partly Agree
## 42                                                                     Partly Agree
## 43                                                                     Partly Agree
## 44                                                                     Partly Agree
## 45                                                                     Partly Agree
## 46                                                                Strongly Disagree
## 47                                                                     Partly Agree
## 48                                                                   Quite Disagree
## 49                                                                   Quite Disagree
## 50                                                                     Partly Agree
## 51                                                                     Partly Agree
## 52                                                                     Partly Agree
## 53                                                                   Quite Disagree
## 54                                                                     Partly Agree
## 55                                                                   Strongly Agree
## 56                                                                     Partly Agree
## 57                                                                   Quite Disagree
## 58                                                                     Partly Agree
## 59                                                                     Partly Agree
## 60                                                                   Strongly Agree
## 61                                                                     Partly Agree
## 62                                                                     Partly Agree
## 63                                                                     Partly Agree
## 64                                                                     Partly Agree
## 65                                                                     Partly Agree
## 66                                                                     Partly Agree
## 67                                                                     Partly Agree
## 68                                                                     Partly Agree
## 69                                                                     Partly Agree
## 70                                                                   Strongly Agree
## 71                                                                     Partly Agree
## 72                                                                     Partly Agree
## 73                                                                     Partly Agree
## 74                                                                     Partly Agree
## 75                                                                     Partly Agree
## 76                                                                   Strongly Agree
## 77                                                                   Strongly Agree
## 78                                                                   Strongly Agree
## 79                                                                   Strongly Agree
## 80                                                                     Partly Agree
## 81                                                                   Strongly Agree
## 82                                                                   Strongly Agree
## 83                                                                   Strongly Agree
## 84                                                                   Strongly Agree
## 85                                                                     Partly Agree
## 86                                                                     Partly Agree
## 87                                                                     Partly Agree
## 88                                                                     Partly Agree
## 89                                                                     Partly Agree
## 90                                                                   Quite Disagree
## 91                                                                     Partly Agree
## 92                                                                     Partly Agree
## 93                                                                     Partly Agree
## 94                                                                   Strongly Agree
## 95                                                                     Partly Agree
## 96                                                                     Partly Agree
## 97                                                                     Partly Agree
## 98                                                                     Partly Agree
## 99                                                                     Partly Agree
## 100                                                                    Partly Agree
## 101                                                                  Strongly Agree
## 102                                                                    Partly Agree
## 103                                                                  Strongly Agree
## 104                                                                  Strongly Agree
## 105                                                               Strongly Disagree
## 106                                                                    Partly Agree
## 107                                                                    Partly Agree
## 108                                                                  Quite Disagree
## 109                                                                    Partly Agree
## 110                                                                  Strongly Agree
## 111                                                                  Quite Disagree
## 112                                                                  Quite Disagree
## 113                                                                    Partly Agree
## 114                                                                  Quite Disagree
## 115                                                               Strongly Disagree
## 116                                                               Strongly Disagree
## 117                                                                  Quite Disagree
## 118                                                                    Partly Agree
## 119                                                               Strongly Disagree
## 120                                                               Strongly Disagree
## 121                                                               Strongly Disagree
## 122                                                               Strongly Disagree
## 123                                                               Strongly Disagree
## 124                                                               Strongly Disagree
## 125                                                                  Quite Disagree
## 126                                                                  Quite Disagree
## 127                                                                    Partly Agree
## 128                                                               Strongly Disagree
## 129                                                                  Quite Disagree
## 130                                                                  Strongly Agree
## 131                                                               Strongly Disagree
## 132                                                               Strongly Disagree
## 133                                                                  Quite Disagree
## 134                                                                  Quite Disagree
## 135                                                                  Quite Disagree
## 136                                                                      Don't Know
## 137                                                                  Quite Disagree
## 138                                                                  Quite Disagree
## 139                                                               Strongly Disagree
## 140                                                                  Quite Disagree
## 141                                                               Strongly Disagree
## 142                                                                  Quite Disagree
## 143                                                                  Quite Disagree
## 144                                                               Strongly Disagree
## 145                                                                  Quite Disagree
## 146                                                                      Don't Know
## 147                                                                  Quite Disagree
## 148                                                                    Partly Agree
## 149                                                                  Quite Disagree
## 150                                                               Strongly Disagree
## 151                                                                  Strongly Agree
## 152                                                                    Partly Agree
## 153                                                                  Strongly Agree
## 154                                                                  Strongly Agree
## 155                                                                  Strongly Agree
## 156                                                                  Strongly Agree
## 157                                                                    Partly Agree
## 158                                                                  Strongly Agree
## 159                                                                  Strongly Agree
## 160                                                                  Strongly Agree
## 161                                                                  Strongly Agree
## 162                                                                  Strongly Agree
## 163                                                                    Partly Agree
## 164                                                                      Don't Know
## 165                                                                  Strongly Agree
## 166                                                                    Partly Agree
## 167                                                                  Strongly Agree
## 168                                                                    Partly Agree
## 169                                                                    Partly Agree
## 170                                                                    Partly Agree
## 171                                                                    Partly Agree
## 172                                                                  Strongly Agree
## 173                                                                  Strongly Agree
## 174                                                                  Strongly Agree
## 175                                                                    Partly Agree
## 176                                                                  Strongly Agree
## 177                                                                  Strongly Agree
## 178                                                                    Partly Agree
## 179                                                                  Strongly Agree
## 180                                                                  Strongly Agree
## 181                                                                    Partly Agree
## 182                                                                  Strongly Agree
## 183                                                                  Strongly Agree
## 184                                                                  Strongly Agree
## 185                                                                  Strongly Agree
## 186                                                                  Strongly Agree
## 187                                                                  Strongly Agree
## 188                                                                    Partly Agree
## 189                                                                  Strongly Agree
## 190                                                                  Strongly Agree
## 191                                                                  Strongly Agree
## 192                                                                  Strongly Agree
## 193                                                                  Strongly Agree
## 194                                                                  Strongly Agree
## 195                                                                  Strongly Agree
## 196                                                                  Strongly Agree
## 197                                                                  Strongly Agree
## 198                                                                  Strongly Agree
## 199                                                                  Strongly Agree
## 200                                                                    Partly Agree
## 201                                                                    Partly Agree
## 202                                                                  Strongly Agree
## 203                                                                  Quite Disagree
## 204                                                               Strongly Disagree
## 205                                                                  Quite Disagree
## 206                                                                    Partly Agree
## 207                                                                  Quite Disagree
## 208                                                                  Quite Disagree
## 209                                                                    Partly Agree
## 210                                                                  Strongly Agree
## 211                                                               Strongly Disagree
## 212                                                               Strongly Disagree
## 213                                                               Strongly Disagree
## 214                                                               Strongly Disagree
## 215                                                                  Quite Disagree
## 216                                                                  Quite Disagree
## 217                                                                    Partly Agree
## 218                                                                  Strongly Agree
## 219                                                                    Partly Agree
## 220                                                                  Strongly Agree
## 221                                                                    Partly Agree
## 222                                                                    Partly Agree
## 223                                                                  Quite Disagree
## 224                                                               Strongly Disagree
## 225                                                                    Partly Agree
## 226                                                                  Strongly Agree
## 227                                                                    Partly Agree
## 228                                                                    Partly Agree
## 229                                                                    Partly Agree
## 230                                                                  Quite Disagree
## 231                                                                  Strongly Agree
## 232                                                                    Partly Agree
## 233                                                                    Partly Agree
## 234                                                                    Partly Agree
## 235                                                                    Partly Agree
## 236                                                                  Quite Disagree
## 237                                                                  Strongly Agree
## 238                                                                  Quite Disagree
## 239                                                                  Strongly Agree
## 240                                                                    Partly Agree
## 241                                                                    Partly Agree
## 242                                                                    Partly Agree
## 243                                                                    Partly Agree
## 244                                                                    Partly Agree
## 245                                                                    Partly Agree
## 246                                                                  Quite Disagree
## 247                                                                  Quite Disagree
## 248                                                                  Strongly Agree
## 249                                                                    Partly Agree
## 250                                                                  Quite Disagree
## 251                                                                  Quite Disagree
## 252                                                                    Partly Agree
## 253                                                                      Don't Know
## 254                                                                  Strongly Agree
## 255                                                                    Partly Agree
## 256                                                                  Quite Disagree
## 257                                                                      Don't Know
## 258                                                                    Partly Agree
## 259                                                                  Quite Disagree
## 260                                                                    Partly Agree
## 261                                                                  Strongly Agree
## 262                                                                  Quite Disagree
## 263                                                                      Don't Know
## 264                                                                  Quite Disagree
## 265                                                                      Don't Know
## 266                                                                    Partly Agree
## 267                                                                    Partly Agree
## 268                                                                  Quite Disagree
## 269                                                                      Don't Know
## 270                                                                    Partly Agree
## 271                                                                    Partly Agree
## 272                                                                    Partly Agree
## 273                                                                    Partly Agree
## 274                                                                    Partly Agree
## 275                                                                  Quite Disagree
## 276                                                                    Partly Agree
## 277                                                                      Don't Know
## 278                                                                    Partly Agree
## 279                                                                    Partly Agree
## 280                                                                  Quite Disagree
## 281                                                                    Partly Agree
## 282                                                                    Partly Agree
## 283                                                                    Partly Agree
## 284                                                                  Quite Disagree
## 285                                                                  Quite Disagree
## 286                                                                  Quite Disagree
## 287                                                                    Partly Agree
## 288                                                                    Partly Agree
## 289                                                                      Don't Know
## 290                                                                  Quite Disagree
## 291                                                                  Quite Disagree
## 292                                                                      Don't Know
## 293                                                                  Quite Disagree
## 294                                                                    Partly Agree
## 295                                                                    Partly Agree
## 296                                                                      Don't Know
## 297                                                                  Quite Disagree
## 298                                                                  Quite Disagree
## 299                                                                  Quite Disagree
## 300                                                                  Quite Disagree
## 302                                                                  Quite Disagree
## 303                                                               Strongly Disagree
## 304                                                                  Strongly Agree
## 305                                                                  Quite Disagree
## 306                                                                  Strongly Agree
## 307                                                                    Partly Agree
## 308                                                                    Partly Agree
## 309                                                                    Partly Agree
## 310                                                                    Partly Agree
## 311                                                                  Quite Disagree
## 312                                                                    Partly Agree
## 313                                                                    Partly Agree
## 314                                                                    Partly Agree
## 315                                                                  Quite Disagree
## 316                                                                  Quite Disagree
## 317                                                                  Strongly Agree
## 318                                                                    Partly Agree
## 319                                                                  Quite Disagree
## 320                                                                  Quite Disagree
## 321                                                                    Partly Agree
## 322                                                                      Don't Know
## 323                                                                  Quite Disagree
## 324                                                                  Quite Disagree
## 325                                                                  Quite Disagree
## 326                                                                  Quite Disagree
## 327                                                                    Partly Agree
## 328                                                                    Partly Agree
## 329                                                                    Partly Agree
## 330                                                                    Partly Agree
## 331                                                                    Partly Agree
## 332                                                                    Partly Agree
## 333                                                                    Partly Agree
## 334                                                                    Partly Agree
## 335                                                               Strongly Disagree
## 336                                                                  Strongly Agree
## 337                                                                  Quite Disagree
## 338                                                                    Partly Agree
## 339                                                               Strongly Disagree
## 340                                                                  Quite Disagree
## 341                                                                    Partly Agree
## 342                                                                    Partly Agree
## 343                                                                  Quite Disagree
## 344                                                                    Partly Agree
## 345                                                                    Partly Agree
## 346                                                                  Quite Disagree
## 347                                                                  Strongly Agree
## 348                                                                    Partly Agree
## 349                                                                    Partly Agree
## 350                                                                  Strongly Agree
## 351                                                                  Strongly Agree
## 352                                                                    Partly Agree
## 353                                                                    Partly Agree
## 354                                                                    Partly Agree
## 355                                                                  Quite Disagree
## 356                                                                    Partly Agree
## 357                                                                  Quite Disagree
## 358                                                                    Partly Agree
## 359                                                                    Partly Agree
## 360                                                                    Partly Agree
## 361                                                                  Strongly Agree
## 362                                                                    Partly Agree
## 363                                                                    Partly Agree
## 364                                                                    Partly Agree
## 365                                                                    Partly Agree
## 366                                                                    Partly Agree
## 367                                                                    Partly Agree
## 368                                                                    Partly Agree
## 369                                                                    Partly Agree
## 370                                                                  Quite Disagree
## 371                                                                    Partly Agree
## 372                                                                    Partly Agree
## 373                                                                  Quite Disagree
## 374                                                                    Partly Agree
## 375                                                                    Partly Agree
## 376                                                                    Partly Agree
## 377                                                                    Partly Agree
## 378                                                                    Partly Agree
## 379                                                                    Partly Agree
## 380                                                                    Partly Agree
## 381                                                                    Partly Agree
## 382                                                                    Partly Agree
## 383                                                                    Partly Agree
## 384                                                                    Partly Agree
## 385                                                                    Partly Agree
## 386                                                                    Partly Agree
## 387                                                                    Partly Agree
## 388                                                                    Partly Agree
## 389                                                                  Quite Disagree
## 390                                                                  Strongly Agree
## 391                                                                    Partly Agree
## 392                                                                    Partly Agree
## 393                                                                    Partly Agree
## 394                                                                    Partly Agree
## 395                                                                    Partly Agree
## 396                                                                    Partly Agree
## 397                                                                    Partly Agree
## 398                                                                    Partly Agree
## 399                                                                    Partly Agree
## 400                                                                    Partly Agree
## 401                                                                    Partly Agree
## 402                                                                      Don't Know
## 403                                                                  Quite Disagree
## 404                                                                  Quite Disagree
## 405                                                                    Partly Agree
## 406                                                                    Partly Agree
## 407                                                                      Don't Know
## 408                                                                  Quite Disagree
## 409                                                                    Partly Agree
## 410                                                                  Quite Disagree
## 411                                                                    Partly Agree
## 412                                                                    Partly Agree
## 413                                                                  Quite Disagree
## 414                                                                    Partly Agree
## 415                                                                      Don't Know
## 416                                                                  Quite Disagree
## 417                                                                      Don't Know
## 418                                                                      Don't Know
## 419                                                                    Partly Agree
## 420                                                                    Partly Agree
## 421                                                                  Quite Disagree
## 422                                                                      Don't Know
## 423                                                                  Quite Disagree
## 424                                                                    Partly Agree
## 425                                                                    Partly Agree
## 426                                                                  Quite Disagree
## 427                                                                    Partly Agree
## 428                                                                      Don't Know
## 429                                                                    Partly Agree
## 430                                                                  Strongly Agree
## 431                                                                  Quite Disagree
## 432                                                                      Don't Know
## 433                                                                  Quite Disagree
## 434                                                                  Quite Disagree
## 435                                                                      Don't Know
## 436                                                                    Partly Agree
## 437                                                                    Partly Agree
## 438                                                                    Partly Agree
## 439                                                                    Partly Agree
## 440                                                                  Quite Disagree
## 441                                                                  Quite Disagree
## 442                                                                    Partly Agree
## 443                                                                  Quite Disagree
## 444                                                                  Quite Disagree
## 445                                                                  Quite Disagree
## 446                                                                  Quite Disagree
## 447                                                                  Quite Disagree
## 448                                                                  Quite Disagree
## 449                                                                  Quite Disagree
## 450                                                                            <NA>
## 451                                                                  Quite Disagree
## 452                                                                  Quite Disagree
## 453                                                                    Partly Agree
## 454                                                                  Strongly Agree
## 455                                                                  Strongly Agree
## 456                                                                    Partly Agree
## 457                                                                    Partly Agree
## 458                                                                    Partly Agree
## 459                                                                  Strongly Agree
## 460                                                                    Partly Agree
## 461                                                                  Strongly Agree
## 462                                                                    Partly Agree
## 463                                                                  Strongly Agree
## 464                                                                  Strongly Agree
## 465                                                               Strongly Disagree
## 466                                                                  Strongly Agree
## 467                                                                  Strongly Agree
## 468                                                                    Partly Agree
## 469                                                                  Strongly Agree
## 470                                                                    Partly Agree
## 471                                                                    Partly Agree
## 472                                                                  Strongly Agree
## 473                                                                    Partly Agree
## 474                                                                  Strongly Agree
## 475                                                                  Strongly Agree
## 476                                                                  Strongly Agree
## 477                                                                  Strongly Agree
## 478                                                               Strongly Disagree
## 479                                                                  Strongly Agree
## 480                                                                  Strongly Agree
## 481                                                                    Partly Agree
## 482                                                                  Strongly Agree
## 483                                                                  Strongly Agree
## 484                                                                    Partly Agree
## 485                                                                  Quite Disagree
## 486                                                                  Strongly Agree
## 487                                                                  Quite Disagree
## 488                                                                    Partly Agree
## 489                                                                  Quite Disagree
## 490                                                                    Partly Agree
## 491                                                                  Strongly Agree
## 492                                                                  Quite Disagree
## 493                                                                  Strongly Agree
## 494                                                                  Strongly Agree
## 495                                                                  Quite Disagree
## 496                                                                  Quite Disagree
##      Civil.Servants..Helpful.and.Responsive
## 1                            Quite Disagree
## 2                            Quite Disagree
## 3                            Quite Disagree
## 4                            Quite Disagree
## 5                            Quite Disagree
## 6                                      <NA>
## 7                            Quite Disagree
## 8                         Strongly Disagree
## 9                         Strongly Disagree
## 10                             Partly Agree
## 11                           Quite Disagree
## 12                           Quite Disagree
## 13                           Quite Disagree
## 14                             Partly Agree
## 15                           Quite Disagree
## 16                             Partly Agree
## 17                             Partly Agree
## 18                           Quite Disagree
## 19                             Partly Agree
## 20                             Partly Agree
## 21                             Partly Agree
## 22                           Quite Disagree
## 23                             Partly Agree
## 24                           Quite Disagree
## 25                             Partly Agree
## 26                             Partly Agree
## 27                           Quite Disagree
## 28                             Partly Agree
## 29                                     <NA>
## 30                           Quite Disagree
## 31                             Partly Agree
## 32                               Don't Know
## 33                             Partly Agree
## 34                           Quite Disagree
## 35                             Partly Agree
## 36                             Partly Agree
## 37                           Quite Disagree
## 38                           Quite Disagree
## 39                             Partly Agree
## 40                           Quite Disagree
## 41                           Quite Disagree
## 42                           Quite Disagree
## 43                           Quite Disagree
## 44                           Quite Disagree
## 45                           Quite Disagree
## 46                        Strongly Disagree
## 47                           Quite Disagree
## 48                           Quite Disagree
## 49                             Partly Agree
## 50                             Partly Agree
## 51                             Partly Agree
## 52                               Don't Know
## 53                           Quite Disagree
## 54                           Quite Disagree
## 55                           Quite Disagree
## 56                           Quite Disagree
## 57                           Quite Disagree
## 58                           Quite Disagree
## 59                             Partly Agree
## 60                             Partly Agree
## 61                             Partly Agree
## 62                           Quite Disagree
## 63                           Quite Disagree
## 64                           Quite Disagree
## 65                           Quite Disagree
## 66                           Quite Disagree
## 67                           Quite Disagree
## 68                           Quite Disagree
## 69                           Quite Disagree
## 70                           Quite Disagree
## 71                             Partly Agree
## 72                             Partly Agree
## 73                             Partly Agree
## 74                           Quite Disagree
## 75                           Quite Disagree
## 76                           Quite Disagree
## 77                           Quite Disagree
## 78                           Quite Disagree
## 79                           Quite Disagree
## 80                           Quite Disagree
## 81                           Quite Disagree
## 82                           Quite Disagree
## 83                           Quite Disagree
## 84                           Quite Disagree
## 85                             Partly Agree
## 86                           Quite Disagree
## 87                           Quite Disagree
## 88                           Quite Disagree
## 89                           Quite Disagree
## 90                             Partly Agree
## 91                             Partly Agree
## 92                             Partly Agree
## 93                             Partly Agree
## 94                             Partly Agree
## 95                           Quite Disagree
## 96                           Quite Disagree
## 97                           Quite Disagree
## 98                           Quite Disagree
## 99                           Quite Disagree
## 100                          Quite Disagree
## 101                          Quite Disagree
## 102                          Strongly Agree
## 103                            Partly Agree
## 104                          Quite Disagree
## 105                            Partly Agree
## 106                          Quite Disagree
## 107                            Partly Agree
## 108                            Partly Agree
## 109                            Partly Agree
## 110                            Partly Agree
## 111                            Partly Agree
## 112                            Partly Agree
## 113                          Quite Disagree
## 114                       Strongly Disagree
## 115                          Strongly Agree
## 116                       Strongly Disagree
## 117                            Partly Agree
## 118                            Partly Agree
## 119                       Strongly Disagree
## 120                       Strongly Disagree
## 121                       Strongly Disagree
## 122                            Partly Agree
## 123                            Partly Agree
## 124                            Partly Agree
## 125                            Partly Agree
## 126                            Partly Agree
## 127                          Strongly Agree
## 128                          Quite Disagree
## 129                       Strongly Disagree
## 130                          Strongly Agree
## 131                            Partly Agree
## 132                          Quite Disagree
## 133                       Strongly Disagree
## 134                       Strongly Disagree
## 135                       Strongly Disagree
## 136                              Don't Know
## 137                       Strongly Disagree
## 138                          Quite Disagree
## 139                          Quite Disagree
## 140                       Strongly Disagree
## 141                          Quite Disagree
## 142                            Partly Agree
## 143                       Strongly Disagree
## 144                       Strongly Disagree
## 145                       Strongly Disagree
## 146                              Don't Know
## 147                            Partly Agree
## 148                          Quite Disagree
## 149                       Strongly Disagree
## 150                          Strongly Agree
## 151                          Strongly Agree
## 152                          Quite Disagree
## 153                            Partly Agree
## 154                            Partly Agree
## 155                            Partly Agree
## 156                          Strongly Agree
## 157                              Don't Know
## 158                          Quite Disagree
## 159                          Quite Disagree
## 160                            Partly Agree
## 161                            Partly Agree
## 162                          Strongly Agree
## 163                            Partly Agree
## 164                              Don't Know
## 165                          Quite Disagree
## 166                          Quite Disagree
## 167                          Quite Disagree
## 168                          Strongly Agree
## 169                              Don't Know
## 170                          Strongly Agree
## 171                          Strongly Agree
## 172                            Partly Agree
## 173                            Partly Agree
## 174                            Partly Agree
## 175                          Strongly Agree
## 176                          Strongly Agree
## 177                            Partly Agree
## 178                            Partly Agree
## 179                          Strongly Agree
## 180                          Strongly Agree
## 181                          Strongly Agree
## 182                            Partly Agree
## 183                            Partly Agree
## 184                            Partly Agree
## 185                            Partly Agree
## 186                          Strongly Agree
## 187                            Partly Agree
## 188                            Partly Agree
## 189                            Partly Agree
## 190                          Quite Disagree
## 191                            Partly Agree
## 192                            Partly Agree
## 193                          Quite Disagree
## 194                          Strongly Agree
## 195                          Quite Disagree
## 196                          Quite Disagree
## 197                          Strongly Agree
## 198                          Quite Disagree
## 199                          Quite Disagree
## 200                          Quite Disagree
## 201                            Partly Agree
## 202                          Strongly Agree
## 203                          Quite Disagree
## 204                            Partly Agree
## 205                            Partly Agree
## 206                          Quite Disagree
## 207                          Quite Disagree
## 208                          Strongly Agree
## 209                       Strongly Disagree
## 210                          Quite Disagree
## 211                          Quite Disagree
## 212                          Quite Disagree
## 213                          Quite Disagree
## 214                          Quite Disagree
## 215                       Strongly Disagree
## 216                          Quite Disagree
## 217                          Quite Disagree
## 218                       Strongly Disagree
## 219                            Partly Agree
## 220                          Strongly Agree
## 221                          Strongly Agree
## 222                          Strongly Agree
## 223                          Strongly Agree
## 224                          Quite Disagree
## 225                          Strongly Agree
## 226                            Partly Agree
## 227                          Strongly Agree
## 228                          Strongly Agree
## 229                          Strongly Agree
## 230                            Partly Agree
## 231                          Quite Disagree
## 232                          Quite Disagree
## 233                          Quite Disagree
## 234                          Quite Disagree
## 235                          Quite Disagree
## 236                            Partly Agree
## 237                            Partly Agree
## 238                       Strongly Disagree
## 239                          Quite Disagree
## 240                          Quite Disagree
## 241                          Quite Disagree
## 242                          Quite Disagree
## 243                          Quite Disagree
## 244                          Quite Disagree
## 245                          Strongly Agree
## 246                          Quite Disagree
## 247                          Quite Disagree
## 248                          Strongly Agree
## 249                          Strongly Agree
## 250                          Quite Disagree
## 251                            Partly Agree
## 252                            Partly Agree
## 253                            Partly Agree
## 254                          Quite Disagree
## 255                          Quite Disagree
## 256                            Partly Agree
## 257                              Don't Know
## 258                          Strongly Agree
## 259                            Partly Agree
## 260                          Quite Disagree
## 261                              Don't Know
## 262                          Quite Disagree
## 263                            Partly Agree
## 264                          Quite Disagree
## 265                              Don't Know
## 266                            Partly Agree
## 267                          Quite Disagree
## 268                            Partly Agree
## 269                       Strongly Disagree
## 270                          Quite Disagree
## 271                          Quite Disagree
## 272                          Quite Disagree
## 273                          Quite Disagree
## 274                          Quite Disagree
## 275                            Partly Agree
## 276                          Quite Disagree
## 277                              Don't Know
## 278                            Partly Agree
## 279                          Quite Disagree
## 280                          Quite Disagree
## 281                          Quite Disagree
## 282                            Partly Agree
## 283                            Partly Agree
## 284                            Partly Agree
## 285                            Partly Agree
## 286                            Partly Agree
## 287                          Quite Disagree
## 288                            Partly Agree
## 289                            Partly Agree
## 290                            Partly Agree
## 291                            Partly Agree
## 292                            Partly Agree
## 293                            Partly Agree
## 294                          Quite Disagree
## 295                            Partly Agree
## 296                            Partly Agree
## 297                            Partly Agree
## 298                            Partly Agree
## 299                          Quite Disagree
## 300                          Quite Disagree
## 302                          Quite Disagree
## 303                          Quite Disagree
## 304                          Quite Disagree
## 305                            Partly Agree
## 306                            Partly Agree
## 307                          Quite Disagree
## 308                          Quite Disagree
## 309                          Quite Disagree
## 310                            Partly Agree
## 311                            Partly Agree
## 312                          Quite Disagree
## 313                          Quite Disagree
## 314                            Partly Agree
## 315                            Partly Agree
## 316                            Partly Agree
## 317                          Quite Disagree
## 318                          Quite Disagree
## 319                          Quite Disagree
## 320                            Partly Agree
## 321                            Partly Agree
## 322                            Partly Agree
## 323                          Quite Disagree
## 324                          Quite Disagree
## 325                          Quite Disagree
## 326                          Quite Disagree
## 327                          Quite Disagree
## 328                          Quite Disagree
## 329                          Strongly Agree
## 330                       Strongly Disagree
## 331                          Strongly Agree
## 332                          Strongly Agree
## 333                          Strongly Agree
## 334                          Strongly Agree
## 335                          Strongly Agree
## 336                          Quite Disagree
## 337                          Strongly Agree
## 338                              Don't Know
## 339                            Partly Agree
## 340                          Quite Disagree
## 341                       Strongly Disagree
## 342                          Quite Disagree
## 343                            Partly Agree
## 344                          Quite Disagree
## 345                          Quite Disagree
## 346                            Partly Agree
## 347                              Don't Know
## 348                            Partly Agree
## 349                          Quite Disagree
## 350                          Quite Disagree
## 351                            Partly Agree
## 352                              Don't Know
## 353                          Quite Disagree
## 354                              Don't Know
## 355                          Quite Disagree
## 356                          Quite Disagree
## 357                            Partly Agree
## 358                          Quite Disagree
## 359                          Quite Disagree
## 360                            Partly Agree
## 361                          Quite Disagree
## 362                          Quite Disagree
## 363                          Quite Disagree
## 364                          Quite Disagree
## 365                          Quite Disagree
## 366                          Quite Disagree
## 367                            Partly Agree
## 368                          Quite Disagree
## 369                          Quite Disagree
## 370                          Quite Disagree
## 371                          Quite Disagree
## 372                          Quite Disagree
## 373                            Partly Agree
## 374                            Partly Agree
## 375                          Quite Disagree
## 376                            Partly Agree
## 377                          Quite Disagree
## 378                            Partly Agree
## 379                            Partly Agree
## 380                          Quite Disagree
## 381                              Don't Know
## 382                              Don't Know
## 383                              Don't Know
## 384                              Don't Know
## 385                          Quite Disagree
## 386                          Quite Disagree
## 387                          Quite Disagree
## 388                              Don't Know
## 389                            Partly Agree
## 390                          Quite Disagree
## 391                          Quite Disagree
## 392                          Quite Disagree
## 393                              Don't Know
## 394                              Don't Know
## 395                            Partly Agree
## 396                          Quite Disagree
## 397                          Quite Disagree
## 398                          Quite Disagree
## 399                              Don't Know
## 400                              Don't Know
## 401                              Don't Know
## 402                              Don't Know
## 403                          Quite Disagree
## 404                          Quite Disagree
## 405                          Quite Disagree
## 406                            Partly Agree
## 407                              Don't Know
## 408                            Partly Agree
## 409                          Quite Disagree
## 410                          Quite Disagree
## 411                          Quite Disagree
## 412                            Partly Agree
## 413                          Quite Disagree
## 414                            Partly Agree
## 415                              Don't Know
## 416                            Partly Agree
## 417                              Don't Know
## 418                              Don't Know
## 419                          Quite Disagree
## 420                            Partly Agree
## 421                          Strongly Agree
## 422                              Don't Know
## 423                          Strongly Agree
## 424                            Partly Agree
## 425                            Partly Agree
## 426                          Strongly Agree
## 427                            Partly Agree
## 428                              Don't Know
## 429                            Partly Agree
## 430                          Strongly Agree
## 431                          Strongly Agree
## 432                              Don't Know
## 433                            Partly Agree
## 434                            Partly Agree
## 435                              Don't Know
## 436                          Quite Disagree
## 437                            Partly Agree
## 438                            Partly Agree
## 439                            Partly Agree
## 440                          Strongly Agree
## 441                          Strongly Agree
## 442                            Partly Agree
## 443                          Strongly Agree
## 444                            Partly Agree
## 445                          Strongly Agree
## 446                          Strongly Agree
## 447                          Strongly Agree
## 448                            Partly Agree
## 449                            Partly Agree
## 450                                    <NA>
## 451                            Partly Agree
## 452                            Partly Agree
## 453                            Partly Agree
## 454                          Quite Disagree
## 455                          Quite Disagree
## 456                       Strongly Disagree
## 457                          Quite Disagree
## 458                          Quite Disagree
## 459                          Quite Disagree
## 460                          Quite Disagree
## 461                          Quite Disagree
## 462                          Strongly Agree
## 463                          Quite Disagree
## 464                            Partly Agree
## 465                                    <NA>
## 466                          Quite Disagree
## 467                          Strongly Agree
## 468                          Quite Disagree
## 469                          Strongly Agree
## 470                          Quite Disagree
## 471                          Quite Disagree
## 472                            Partly Agree
## 473                       Strongly Disagree
## 474                       Strongly Disagree
## 475                          Quite Disagree
## 476                       Strongly Disagree
## 477                          Quite Disagree
## 478                          Strongly Agree
## 479                              Don't Know
## 480                       Strongly Disagree
## 481                       Strongly Disagree
## 482                          Quite Disagree
## 483                       Strongly Disagree
## 484                       Strongly Disagree
## 485                            Partly Agree
## 486                          Quite Disagree
## 487                            Partly Agree
## 488                          Quite Disagree
## 489                            Partly Agree
## 490                          Quite Disagree
## 491                          Quite Disagree
## 492                            Partly Agree
## 493                       Strongly Disagree
## 494                            Partly Agree
## 495                                    <NA>
## 496                          Quite Disagree
##      Civil.Servants..Not.responsive.to.Citizens Civil.Servants..Friendly
## 1                             Strongly Disagree             Partly Agree
## 2                                  Partly Agree        Strongly Disagree
## 3                                  Partly Agree           Quite Disagree
## 4                                Quite Disagree           Quite Disagree
## 5                                  Partly Agree           Quite Disagree
## 6                                Quite Disagree        Strongly Disagree
## 7                                Quite Disagree        Strongly Disagree
## 8                                Quite Disagree           Quite Disagree
## 9                                Quite Disagree        Strongly Disagree
## 10                                 Partly Agree           Quite Disagree
## 11                                 Partly Agree           Quite Disagree
## 12                               Quite Disagree                     <NA>
## 13                               Quite Disagree           Quite Disagree
## 14                               Quite Disagree           Quite Disagree
## 15                            Strongly Disagree             Partly Agree
## 16                                   Don't Know               Don't Know
## 17                               Quite Disagree             Partly Agree
## 18                               Quite Disagree        Strongly Disagree
## 19                                 Partly Agree           Strongly Agree
## 20                               Quite Disagree           Quite Disagree
## 21                               Quite Disagree             Partly Agree
## 22                               Strongly Agree           Quite Disagree
## 23                               Quite Disagree           Quite Disagree
## 24                               Strongly Agree             Partly Agree
## 25                               Quite Disagree           Quite Disagree
## 26                               Strongly Agree           Strongly Agree
## 27                               Quite Disagree           Quite Disagree
## 28                                 Partly Agree             Partly Agree
## 29                               Quite Disagree           Strongly Agree
## 30                               Quite Disagree           Quite Disagree
## 31                               Quite Disagree           Quite Disagree
## 32                                   Don't Know               Don't Know
## 33                               Quite Disagree             Partly Agree
## 34                               Quite Disagree           Strongly Agree
## 35                               Strongly Agree             Partly Agree
## 36                               Quite Disagree           Quite Disagree
## 37                               Quite Disagree             Partly Agree
## 38                               Quite Disagree             Partly Agree
## 39                               Quite Disagree           Quite Disagree
## 40                               Quite Disagree           Quite Disagree
## 41                                 Partly Agree           Quite Disagree
## 42                               Quite Disagree           Quite Disagree
## 43                               Quite Disagree                     <NA>
## 44                                 Partly Agree           Quite Disagree
## 45                               Quite Disagree           Quite Disagree
## 46                               Strongly Agree        Strongly Disagree
## 47                                 Partly Agree           Quite Disagree
## 48                               Quite Disagree             Partly Agree
## 49                                 Partly Agree           Quite Disagree
## 50                               Quite Disagree             Partly Agree
## 51                                   Don't Know               Don't Know
## 52                                   Don't Know               Don't Know
## 53                                 Partly Agree             Partly Agree
## 54                                 Partly Agree           Quite Disagree
## 55                                 Partly Agree             Partly Agree
## 56                                 Partly Agree             Partly Agree
## 57                               Quite Disagree             Partly Agree
## 58                               Quite Disagree           Quite Disagree
## 59                               Quite Disagree                     <NA>
## 60                               Quite Disagree             Partly Agree
## 61                               Quite Disagree             Partly Agree
## 62                                 Partly Agree           Quite Disagree
## 63                                 Partly Agree           Quite Disagree
## 64                                 Partly Agree           Quite Disagree
## 65                                 Partly Agree           Quite Disagree
## 66                                 Partly Agree           Quite Disagree
## 67                                 Partly Agree           Quite Disagree
## 68                                 Partly Agree           Quite Disagree
## 69                                 Partly Agree           Quite Disagree
## 70                                 Partly Agree           Quite Disagree
## 71                               Quite Disagree             Partly Agree
## 72                               Quite Disagree             Partly Agree
## 73                               Quite Disagree             Partly Agree
## 74                                 Partly Agree             Partly Agree
## 75                                 Partly Agree           Quite Disagree
## 76                                 Partly Agree           Quite Disagree
## 77                               Strongly Agree           Quite Disagree
## 78                               Strongly Agree           Quite Disagree
## 79                                 Partly Agree           Quite Disagree
## 80                                 Partly Agree           Quite Disagree
## 81                                 Partly Agree             Partly Agree
## 82                                 Partly Agree           Quite Disagree
## 83                                 Partly Agree           Quite Disagree
## 84                                 Partly Agree           Quite Disagree
## 85                                 Partly Agree             Partly Agree
## 86                                 Partly Agree           Quite Disagree
## 87                                 Partly Agree           Quite Disagree
## 88                                 Partly Agree           Quite Disagree
## 89                                 Partly Agree           Quite Disagree
## 90                               Quite Disagree           Quite Disagree
## 91                               Quite Disagree             Partly Agree
## 92                               Quite Disagree             Partly Agree
## 93                                 Partly Agree             Partly Agree
## 94                                 Partly Agree             Partly Agree
## 95                               Quite Disagree           Quite Disagree
## 96                                 Partly Agree           Quite Disagree
## 97                                 Partly Agree           Quite Disagree
## 98                                 Partly Agree           Quite Disagree
## 99                                 Partly Agree           Quite Disagree
## 100                                Partly Agree           Quite Disagree
## 101                                Partly Agree             Partly Agree
## 102                              Strongly Agree           Strongly Agree
## 103                              Strongly Agree             Partly Agree
## 104                              Strongly Agree           Quite Disagree
## 105                                Partly Agree           Strongly Agree
## 106                           Strongly Disagree        Strongly Disagree
## 107                              Quite Disagree             Partly Agree
## 108                              Strongly Agree           Quite Disagree
## 109                                Partly Agree           Strongly Agree
## 110                              Quite Disagree             Partly Agree
## 111                              Quite Disagree        Strongly Disagree
## 112                              Quite Disagree             Partly Agree
## 113                           Strongly Disagree             Partly Agree
## 114                           Strongly Disagree           Strongly Agree
## 115                              Quite Disagree           Quite Disagree
## 116                                Partly Agree           Strongly Agree
## 117                                Partly Agree             Partly Agree
## 118                              Quite Disagree             Partly Agree
## 119                           Strongly Disagree             Partly Agree
## 120                           Strongly Disagree             Partly Agree
## 121                              Quite Disagree             Partly Agree
## 122                              Strongly Agree             Partly Agree
## 123                              Quite Disagree           Quite Disagree
## 124                                Partly Agree             Partly Agree
## 125                           Strongly Disagree             Partly Agree
## 126                              Quite Disagree             Partly Agree
## 127                                Partly Agree           Quite Disagree
## 128                           Strongly Disagree           Quite Disagree
## 129                              Quite Disagree             Partly Agree
## 130                              Strongly Agree             Partly Agree
## 131                           Strongly Disagree             Partly Agree
## 132                                Partly Agree             Partly Agree
## 133                              Quite Disagree             Partly Agree
## 134                                Partly Agree             Partly Agree
## 135                              Quite Disagree        Strongly Disagree
## 136                                  Don't Know               Don't Know
## 137                              Quite Disagree             Partly Agree
## 138                                Partly Agree           Quite Disagree
## 139                                Partly Agree           Quite Disagree
## 140                              Quite Disagree        Strongly Disagree
## 141                                Partly Agree           Quite Disagree
## 142                              Quite Disagree             Partly Agree
## 143                                Partly Agree             Partly Agree
## 144                           Strongly Disagree        Strongly Disagree
## 145                                Partly Agree           Strongly Agree
## 146                                  Don't Know               Don't Know
## 147                              Quite Disagree             Partly Agree
## 148                           Strongly Disagree             Partly Agree
## 149                           Strongly Disagree           Strongly Agree
## 150                              Quite Disagree           Quite Disagree
## 151                              Strongly Agree             Partly Agree
## 152                                Partly Agree           Strongly Agree
## 153                              Strongly Agree             Partly Agree
## 154                              Quite Disagree           Strongly Agree
## 155                              Strongly Agree             Partly Agree
## 156                              Strongly Agree             Partly Agree
## 157                                        <NA>           Quite Disagree
## 158                              Strongly Agree             Partly Agree
## 159                                Partly Agree           Quite Disagree
## 160                              Strongly Agree             Partly Agree
## 161                              Strongly Agree             Partly Agree
## 162                              Quite Disagree             Partly Agree
## 163                                Partly Agree             Partly Agree
## 164                                  Don't Know               Don't Know
## 165                              Strongly Agree             Partly Agree
## 166                              Strongly Agree             Partly Agree
## 167                              Strongly Agree             Partly Agree
## 168                                Partly Agree             Partly Agree
## 169                                  Don't Know             Partly Agree
## 170                              Strongly Agree             Partly Agree
## 171                                  Don't Know             Partly Agree
## 172                              Strongly Agree           Quite Disagree
## 173                              Quite Disagree               Don't Know
## 174                              Strongly Agree           Strongly Agree
## 175                              Quite Disagree             Partly Agree
## 176                                Partly Agree             Partly Agree
## 177                                Partly Agree             Partly Agree
## 178                                Partly Agree             Partly Agree
## 179                              Strongly Agree           Strongly Agree
## 180                                Partly Agree           Strongly Agree
## 181                              Strongly Agree             Partly Agree
## 182                              Strongly Agree             Partly Agree
## 183                                  Don't Know               Don't Know
## 184                              Strongly Agree             Partly Agree
## 185                              Strongly Agree             Partly Agree
## 186                                Partly Agree             Partly Agree
## 187                              Strongly Agree           Strongly Agree
## 188                                Partly Agree             Partly Agree
## 189                                Partly Agree           Strongly Agree
## 190                              Strongly Agree             Partly Agree
## 191                              Strongly Agree           Strongly Agree
## 192                              Strongly Agree             Partly Agree
## 193                                Partly Agree           Quite Disagree
## 194                                Partly Agree               Don't Know
## 195                              Quite Disagree           Strongly Agree
## 196                              Strongly Agree             Partly Agree
## 197                              Strongly Agree             Partly Agree
## 198                              Quite Disagree           Quite Disagree
## 199                                Partly Agree           Quite Disagree
## 200                                Partly Agree           Strongly Agree
## 201                              Quite Disagree             Partly Agree
## 202                              Quite Disagree        Strongly Disagree
## 203                                Partly Agree           Strongly Agree
## 204                                Partly Agree           Quite Disagree
## 205                              Strongly Agree           Quite Disagree
## 206                                Partly Agree           Quite Disagree
## 207                              Strongly Agree             Partly Agree
## 208                                Partly Agree           Quite Disagree
## 209                                Partly Agree        Strongly Disagree
## 210                              Strongly Agree             Partly Agree
## 211                                Partly Agree        Strongly Disagree
## 212                                Partly Agree        Strongly Disagree
## 213                                Partly Agree        Strongly Disagree
## 214                                Partly Agree        Strongly Disagree
## 215                                Partly Agree        Strongly Disagree
## 216                                Partly Agree        Strongly Disagree
## 217                                Partly Agree           Quite Disagree
## 218                              Quite Disagree           Quite Disagree
## 219                              Quite Disagree           Quite Disagree
## 220                                Partly Agree           Strongly Agree
## 221                                Partly Agree           Quite Disagree
## 222                                Partly Agree           Strongly Agree
## 223                                Partly Agree           Quite Disagree
## 224                           Strongly Disagree             Partly Agree
## 225                              Quite Disagree           Strongly Agree
## 226                                Partly Agree           Strongly Agree
## 227                              Quite Disagree             Partly Agree
## 228                                Partly Agree           Quite Disagree
## 229                                Partly Agree           Quite Disagree
## 230                              Quite Disagree             Partly Agree
## 231                                Partly Agree             Partly Agree
## 232                              Quite Disagree             Partly Agree
## 233                                Partly Agree           Quite Disagree
## 234                                Partly Agree           Quite Disagree
## 235                                Partly Agree           Quite Disagree
## 236                                Partly Agree           Quite Disagree
## 237                              Quite Disagree        Strongly Disagree
## 238                                Partly Agree           Quite Disagree
## 239                                Partly Agree           Quite Disagree
## 240                                Partly Agree           Quite Disagree
## 241                                Partly Agree           Quite Disagree
## 242                                Partly Agree           Quite Disagree
## 243                                Partly Agree           Quite Disagree
## 244                                Partly Agree           Quite Disagree
## 245                                Partly Agree           Quite Disagree
## 246                                Partly Agree           Quite Disagree
## 247                                Partly Agree             Partly Agree
## 248                                Partly Agree             Partly Agree
## 249                                Partly Agree           Quite Disagree
## 250                                Partly Agree             Partly Agree
## 251                                Partly Agree             Partly Agree
## 252                              Quite Disagree             Partly Agree
## 253                                Partly Agree             Partly Agree
## 254                              Quite Disagree             Partly Agree
## 255                              Quite Disagree           Quite Disagree
## 256                                Partly Agree           Quite Disagree
## 257                                  Don't Know               Don't Know
## 258                                Partly Agree           Strongly Agree
## 259                                Partly Agree             Partly Agree
## 260                                Partly Agree           Quite Disagree
## 261                              Strongly Agree               Don't Know
## 262                                Partly Agree             Partly Agree
## 263                                Partly Agree             Partly Agree
## 264                              Quite Disagree           Quite Disagree
## 265                                  Don't Know               Don't Know
## 266                                Partly Agree             Partly Agree
## 267                                Partly Agree           Quite Disagree
## 268                           Strongly Disagree             Partly Agree
## 269                                Partly Agree             Partly Agree
## 270                                Partly Agree           Quite Disagree
## 271                                Partly Agree           Quite Disagree
## 272                                Partly Agree           Quite Disagree
## 273                                Partly Agree             Partly Agree
## 274                              Strongly Agree           Quite Disagree
## 275                              Quite Disagree             Partly Agree
## 276                                Partly Agree           Quite Disagree
## 277                                Partly Agree             Partly Agree
## 278                              Quite Disagree           Quite Disagree
## 279                                Partly Agree           Quite Disagree
## 280                              Quite Disagree           Quite Disagree
## 281                                Partly Agree             Partly Agree
## 282                                Partly Agree             Partly Agree
## 283                              Quite Disagree             Partly Agree
## 284                              Quite Disagree             Partly Agree
## 285                                Partly Agree           Quite Disagree
## 286                                Partly Agree             Partly Agree
## 287                                Partly Agree           Quite Disagree
## 288                                Partly Agree             Partly Agree
## 289                              Quite Disagree           Quite Disagree
## 290                              Quite Disagree                     <NA>
## 291                                Partly Agree             Partly Agree
## 292                                  Don't Know             Partly Agree
## 293                              Quite Disagree           Quite Disagree
## 294                                Partly Agree           Quite Disagree
## 295                                Partly Agree             Partly Agree
## 296                              Quite Disagree           Quite Disagree
## 297                              Quite Disagree             Partly Agree
## 298                              Quite Disagree           Quite Disagree
## 299                              Quite Disagree           Quite Disagree
## 300                                Partly Agree             Partly Agree
## 302                              Quite Disagree        Strongly Disagree
## 303                              Quite Disagree        Strongly Disagree
## 304                              Strongly Agree           Quite Disagree
## 305                                Partly Agree             Partly Agree
## 306                                Partly Agree        Strongly Disagree
## 307                                Partly Agree           Quite Disagree
## 308                              Quite Disagree           Quite Disagree
## 309                                Partly Agree           Quite Disagree
## 310                              Quite Disagree           Quite Disagree
## 311                                Partly Agree             Partly Agree
## 312                              Quite Disagree             Partly Agree
## 313                                Partly Agree           Quite Disagree
## 314                                Partly Agree             Partly Agree
## 315                              Quite Disagree           Quite Disagree
## 316                                Partly Agree           Quite Disagree
## 317                           Strongly Disagree        Strongly Disagree
## 318                                Partly Agree           Strongly Agree
## 319                                Partly Agree           Quite Disagree
## 320                              Quite Disagree             Partly Agree
## 321                              Quite Disagree             Partly Agree
## 322                              Quite Disagree           Quite Disagree
## 323                              Quite Disagree           Quite Disagree
## 324                              Quite Disagree           Quite Disagree
## 325                              Quite Disagree           Quite Disagree
## 326                              Quite Disagree           Quite Disagree
## 327                              Quite Disagree           Quite Disagree
## 328                              Strongly Agree           Quite Disagree
## 329                                Partly Agree           Strongly Agree
## 330                                Partly Agree           Quite Disagree
## 331                                  Don't Know           Strongly Agree
## 332                                  Don't Know           Strongly Agree
## 333                                  Don't Know           Strongly Agree
## 334                                  Don't Know           Strongly Agree
## 335                              Quite Disagree        Strongly Disagree
## 336                              Strongly Agree             Partly Agree
## 337                              Quite Disagree             Partly Agree
## 338                                Partly Agree           Strongly Agree
## 339                              Quite Disagree             Partly Agree
## 340                                Partly Agree           Quite Disagree
## 341                              Quite Disagree           Quite Disagree
## 342                              Quite Disagree           Quite Disagree
## 343                              Quite Disagree           Quite Disagree
## 344                                Partly Agree           Quite Disagree
## 345                              Quite Disagree             Partly Agree
## 346                              Quite Disagree             Partly Agree
## 347                                Partly Agree           Quite Disagree
## 348                              Quite Disagree             Partly Agree
## 349                                Partly Agree           Quite Disagree
## 350                                Partly Agree           Quite Disagree
## 351                              Quite Disagree           Quite Disagree
## 352                                  Don't Know               Don't Know
## 353                                Partly Agree           Quite Disagree
## 354                                  Don't Know           Quite Disagree
## 355                                Partly Agree           Quite Disagree
## 356                                Partly Agree           Quite Disagree
## 357                              Quite Disagree           Quite Disagree
## 358                                Partly Agree             Partly Agree
## 359                                Partly Agree           Quite Disagree
## 360                              Quite Disagree           Quite Disagree
## 361                                Partly Agree           Quite Disagree
## 362                                Partly Agree           Quite Disagree
## 363                                Partly Agree           Quite Disagree
## 364                                Partly Agree           Quite Disagree
## 365                                Partly Agree           Quite Disagree
## 366                                Partly Agree           Quite Disagree
## 367                                Partly Agree           Quite Disagree
## 368                                Partly Agree           Quite Disagree
## 369                                Partly Agree           Quite Disagree
## 370                              Quite Disagree             Partly Agree
## 371                                Partly Agree           Quite Disagree
## 372                                Partly Agree           Quite Disagree
## 373                              Quite Disagree             Partly Agree
## 374                              Quite Disagree           Quite Disagree
## 375                                Partly Agree           Quite Disagree
## 376                                Partly Agree             Partly Agree
## 377                              Quite Disagree             Partly Agree
## 378                              Quite Disagree             Partly Agree
## 379                              Quite Disagree             Partly Agree
## 380                                Partly Agree           Quite Disagree
## 381                                  Don't Know               Don't Know
## 382                                  Don't Know           Quite Disagree
## 383                                Partly Agree           Quite Disagree
## 384                                  Don't Know           Quite Disagree
## 385                                Partly Agree           Quite Disagree
## 386                                Partly Agree           Quite Disagree
## 387                                Partly Agree           Quite Disagree
## 388                                  Don't Know           Quite Disagree
## 389                              Quite Disagree             Partly Agree
## 390                              Quite Disagree           Quite Disagree
## 391                                Partly Agree           Quite Disagree
## 392                                Partly Agree           Quite Disagree
## 393                                  Don't Know           Quite Disagree
## 394                                  Don't Know           Quite Disagree
## 395                              Quite Disagree           Quite Disagree
## 396                                Partly Agree           Quite Disagree
## 397                                Partly Agree           Quite Disagree
## 398                                Partly Agree           Quite Disagree
## 399                                  Don't Know             Partly Agree
## 400                                Partly Agree           Quite Disagree
## 401                                Partly Agree           Quite Disagree
## 402                                  Don't Know               Don't Know
## 403                              Quite Disagree             Partly Agree
## 404                              Quite Disagree             Partly Agree
## 405                                Partly Agree           Quite Disagree
## 406                              Quite Disagree             Partly Agree
## 407                                  Don't Know               Don't Know
## 408                              Quite Disagree             Partly Agree
## 409                                Partly Agree             Partly Agree
## 410                              Quite Disagree           Quite Disagree
## 411                                Partly Agree           Quite Disagree
## 412                                Partly Agree           Quite Disagree
## 413                              Strongly Agree           Quite Disagree
## 414                                Partly Agree             Partly Agree
## 415                                  Don't Know               Don't Know
## 416                                Partly Agree             Partly Agree
## 417                                  Don't Know               Don't Know
## 418                                  Don't Know               Don't Know
## 419                                Partly Agree           Quite Disagree
## 420                                Partly Agree             Partly Agree
## 421                              Strongly Agree           Strongly Agree
## 422                                  Don't Know               Don't Know
## 423                              Strongly Agree           Strongly Agree
## 424                                Partly Agree             Partly Agree
## 425                              Quite Disagree             Partly Agree
## 426                              Strongly Agree           Strongly Agree
## 427                                Partly Agree             Partly Agree
## 428                                  Don't Know               Don't Know
## 429                                Partly Agree             Partly Agree
## 430                              Strongly Agree                     <NA>
## 431                              Strongly Agree           Strongly Agree
## 432                                  Don't Know               Don't Know
## 433                                Partly Agree             Partly Agree
## 434                                Partly Agree             Partly Agree
## 435                                  Don't Know               Don't Know
## 436                                Partly Agree           Quite Disagree
## 437                                Partly Agree             Partly Agree
## 438                                Partly Agree             Partly Agree
## 439                                Partly Agree             Partly Agree
## 440                              Strongly Agree           Strongly Agree
## 441                              Strongly Agree           Strongly Agree
## 442                                Partly Agree             Partly Agree
## 443                              Strongly Agree           Strongly Agree
## 444                                Partly Agree             Partly Agree
## 445                              Strongly Agree           Strongly Agree
## 446                              Strongly Agree           Strongly Agree
## 447                              Strongly Agree           Strongly Agree
## 448                              Quite Disagree             Partly Agree
## 449                                Partly Agree             Partly Agree
## 450                                        <NA>                     <NA>
## 451                              Strongly Agree           Strongly Agree
## 452                                Partly Agree             Partly Agree
## 453                                Partly Agree             Partly Agree
## 454                                        <NA>           Quite Disagree
## 455                                        <NA>             Partly Agree
## 456                                        <NA>        Strongly Disagree
## 457                                        <NA>           Quite Disagree
## 458                                        <NA>        Strongly Disagree
## 459                                        <NA>           Quite Disagree
## 460                                        <NA>             Partly Agree
## 461                                        <NA>               Don't Know
## 462                                        <NA>             Partly Agree
## 463                                        <NA>           Strongly Agree
## 464                                        <NA>                     <NA>
## 465                                        <NA>                     <NA>
## 466                                        <NA>        Strongly Disagree
## 467                                        <NA>           Strongly Agree
## 468                                        <NA>           Quite Disagree
## 469                                        <NA>           Strongly Agree
## 470                                        <NA>               Don't Know
## 471                                        <NA>        Strongly Disagree
## 472                                        <NA>           Quite Disagree
## 473                                        <NA>        Strongly Disagree
## 474                                        <NA>           Strongly Agree
## 475                                        <NA>           Quite Disagree
## 476                                        <NA>        Strongly Disagree
## 477                                        <NA>           Quite Disagree
## 478                                        <NA>        Strongly Disagree
## 479                                        <NA>               Don't Know
## 480                                        <NA>        Strongly Disagree
## 481                                        <NA>        Strongly Disagree
## 482                                        <NA>           Quite Disagree
## 483                                        <NA>           Quite Disagree
## 484                                        <NA>           Quite Disagree
## 485                                        <NA>             Partly Agree
## 486                                        <NA>             Partly Agree
## 487                                        <NA>             Partly Agree
## 488                                        <NA>             Partly Agree
## 489                                        <NA>             Partly Agree
## 490                                        <NA>        Strongly Disagree
## 491                                        <NA>        Strongly Disagree
## 492                                        <NA>             Partly Agree
## 493                                        <NA>        Strongly Disagree
## 494                                        <NA>             Partly Agree
## 495                                        <NA>           Quite Disagree
## 496                                        <NA>           Quite Disagree
##      Civil.Servants..Difficult.to.get.access.to
## 1                                Quite Disagree
## 2                                Quite Disagree
## 3                                  Partly Agree
## 4                                  Partly Agree
## 5                                Strongly Agree
## 6                                Strongly Agree
## 7                                Strongly Agree
## 8                                Strongly Agree
## 9                                Strongly Agree
## 10                                 Partly Agree
## 11                                 Partly Agree
## 12                               Strongly Agree
## 13                                 Partly Agree
## 14                                 Partly Agree
## 15                               Strongly Agree
## 16                                 Partly Agree
## 17                               Quite Disagree
## 18                               Quite Disagree
## 19                                 Partly Agree
## 20                               Quite Disagree
## 21                               Quite Disagree
## 22                               Strongly Agree
## 23                            Strongly Disagree
## 24                                         <NA>
## 25                               Quite Disagree
## 26                               Quite Disagree
## 27                                 Partly Agree
## 28                               Strongly Agree
## 29                               Quite Disagree
## 30                                 Partly Agree
## 31                               Strongly Agree
## 32                               Strongly Agree
## 33                               Strongly Agree
## 34                               Quite Disagree
## 35                               Strongly Agree
## 36                                 Partly Agree
## 37                               Quite Disagree
## 38                                 Partly Agree
## 39                                 Partly Agree
## 40                                 Partly Agree
## 41                                 Partly Agree
## 42                               Strongly Agree
## 43                               Strongly Agree
## 44                                 Partly Agree
## 45                                 Partly Agree
## 46                               Strongly Agree
## 47                               Strongly Agree
## 48                            Strongly Disagree
## 49                               Quite Disagree
## 50                                         <NA>
## 51                               Quite Disagree
## 52                               Quite Disagree
## 53                               Quite Disagree
## 54                               Quite Disagree
## 55                               Strongly Agree
## 56                               Quite Disagree
## 57                               Quite Disagree
## 58                               Quite Disagree
## 59                                 Partly Agree
## 60                                 Partly Agree
## 61                               Quite Disagree
## 62                                 Partly Agree
## 63                                 Partly Agree
## 64                                 Partly Agree
## 65                                 Partly Agree
## 66                                 Partly Agree
## 67                                 Partly Agree
## 68                                 Partly Agree
## 69                                 Partly Agree
## 70                                 Partly Agree
## 71                               Quite Disagree
## 72                                 Partly Agree
## 73                               Quite Disagree
## 74                               Quite Disagree
## 75                                 Partly Agree
## 76                                 Partly Agree
## 77                                 Partly Agree
## 78                                 Partly Agree
## 79                                 Partly Agree
## 80                                 Partly Agree
## 81                                 Partly Agree
## 82                                 Partly Agree
## 83                                 Partly Agree
## 84                                 Partly Agree
## 85                                 Partly Agree
## 86                               Quite Disagree
## 87                                 Partly Agree
## 88                                 Partly Agree
## 89                                 Partly Agree
## 90                               Quite Disagree
## 91                               Quite Disagree
## 92                               Quite Disagree
## 93                                 Partly Agree
## 94                                 Partly Agree
## 95                                 Partly Agree
## 96                                 Partly Agree
## 97                                 Partly Agree
## 98                                 Partly Agree
## 99                                 Partly Agree
## 100                                Partly Agree
## 101                                        <NA>
## 102                              Strongly Agree
## 103                                Partly Agree
## 104                           Strongly Disagree
## 105                              Strongly Agree
## 106                                Partly Agree
## 107                                Partly Agree
## 108                              Strongly Agree
## 109                                Partly Agree
## 110                              Strongly Agree
## 111                              Quite Disagree
## 112                                Partly Agree
## 113                              Strongly Agree
## 114                              Strongly Agree
## 115                              Strongly Agree
## 116                              Strongly Agree
## 117                                Partly Agree
## 118                                Partly Agree
## 119                                Partly Agree
## 120                                Partly Agree
## 121                                Partly Agree
## 122                                Partly Agree
## 123                                Partly Agree
## 124                              Strongly Agree
## 125                                Partly Agree
## 126                              Quite Disagree
## 127                              Strongly Agree
## 128                                Partly Agree
## 129                              Strongly Agree
## 130                                Partly Agree
## 131                                Partly Agree
## 132                                Partly Agree
## 133                              Strongly Agree
## 134                              Quite Disagree
## 135                              Quite Disagree
## 136                                  Don't Know
## 137                                Partly Agree
## 138                                Partly Agree
## 139                              Quite Disagree
## 140                              Quite Disagree
## 141                                Partly Agree
## 142                                Partly Agree
## 143                              Quite Disagree
## 144                                Partly Agree
## 145                                Partly Agree
## 146                                  Don't Know
## 147                                Partly Agree
## 148                              Strongly Agree
## 149                              Strongly Agree
## 150                              Strongly Agree
## 151                                Partly Agree
## 152                                Partly Agree
## 153                              Strongly Agree
## 154                              Strongly Agree
## 155                              Strongly Agree
## 156                                Partly Agree
## 157                                Partly Agree
## 158                              Quite Disagree
## 159                              Quite Disagree
## 160                              Strongly Agree
## 161                              Strongly Agree
## 162                                Partly Agree
## 163                              Strongly Agree
## 164                              Strongly Agree
## 165                              Quite Disagree
## 166                              Quite Disagree
## 167                              Quite Disagree
## 168                                Partly Agree
## 169                              Quite Disagree
## 170                              Strongly Agree
## 171                              Strongly Agree
## 172                              Strongly Agree
## 173                              Strongly Agree
## 174                              Strongly Agree
## 175                              Strongly Agree
## 176                                Partly Agree
## 177                              Strongly Agree
## 178                                Partly Agree
## 179                              Strongly Agree
## 180                              Strongly Agree
## 181                              Strongly Agree
## 182                              Strongly Agree
## 183                              Strongly Agree
## 184                              Strongly Agree
## 185                                Partly Agree
## 186                              Strongly Agree
## 187                              Strongly Agree
## 188                              Strongly Agree
## 189                                Partly Agree
## 190                              Strongly Agree
## 191                              Strongly Agree
## 192                                Partly Agree
## 193                                Partly Agree
## 194                                Partly Agree
## 195                              Strongly Agree
## 196                              Quite Disagree
## 197                                Partly Agree
## 198                                Partly Agree
## 199                                Partly Agree
## 200                                Partly Agree
## 201                              Quite Disagree
## 202                              Quite Disagree
## 203                              Strongly Agree
## 204                                Partly Agree
## 205                              Quite Disagree
## 206                              Strongly Agree
## 207                              Quite Disagree
## 208                              Quite Disagree
## 209                                Partly Agree
## 210                              Quite Disagree
## 211                              Quite Disagree
## 212                              Quite Disagree
## 213                              Quite Disagree
## 214                              Quite Disagree
## 215                              Quite Disagree
## 216                              Quite Disagree
## 217                              Strongly Agree
## 218                                Partly Agree
## 219                              Strongly Agree
## 220                              Quite Disagree
## 221                                Partly Agree
## 222                              Quite Disagree
## 223                              Quite Disagree
## 224                           Strongly Disagree
## 225                              Strongly Agree
## 226                              Quite Disagree
## 227                              Strongly Agree
## 228                                Partly Agree
## 229                                Partly Agree
## 230                              Quite Disagree
## 231                                Partly Agree
## 232                                Partly Agree
## 233                                Partly Agree
## 234                                Partly Agree
## 235                                Partly Agree
## 236                              Strongly Agree
## 237                              Quite Disagree
## 238                                Partly Agree
## 239                                Partly Agree
## 240                                Partly Agree
## 241                                Partly Agree
## 242                                Partly Agree
## 243                                Partly Agree
## 244                                Partly Agree
## 245                              Quite Disagree
## 246                                Partly Agree
## 247                              Quite Disagree
## 248                              Quite Disagree
## 249                           Strongly Disagree
## 250                              Strongly Agree
## 251                                Partly Agree
## 252                                Partly Agree
## 253                                Partly Agree
## 254                                Partly Agree
## 255                                Partly Agree
## 256                              Quite Disagree
## 257                              Strongly Agree
## 258                                Partly Agree
## 259                                Partly Agree
## 260                                Partly Agree
## 261                              Strongly Agree
## 262                                Partly Agree
## 263                              Strongly Agree
## 264                                Partly Agree
## 265                                  Don't Know
## 266                                Partly Agree
## 267                                Partly Agree
## 268                                Partly Agree
## 269                              Quite Disagree
## 270                                Partly Agree
## 271                                Partly Agree
## 272                                Partly Agree
## 273                              Quite Disagree
## 274                                Partly Agree
## 275                              Quite Disagree
## 276                                Partly Agree
## 277                                  Don't Know
## 278                              Quite Disagree
## 279                                Partly Agree
## 280                              Quite Disagree
## 281                                Partly Agree
## 282                                Partly Agree
## 283                              Quite Disagree
## 284                              Quite Disagree
## 285                                Partly Agree
## 286                              Quite Disagree
## 287                                Partly Agree
## 288                              Quite Disagree
## 289                                Partly Agree
## 290                              Quite Disagree
## 291                                Partly Agree
## 292                              Strongly Agree
## 293                                        <NA>
## 294                                Partly Agree
## 295                                Partly Agree
## 296                                Partly Agree
## 297                              Quite Disagree
## 298                                        <NA>
## 299                                Partly Agree
## 300                                Partly Agree
## 302                              Quite Disagree
## 303                           Strongly Disagree
## 304                                Partly Agree
## 305                              Strongly Agree
## 306                           Strongly Disagree
## 307                                Partly Agree
## 308                              Quite Disagree
## 309                                Partly Agree
## 310                              Strongly Agree
## 311                                Partly Agree
## 312                              Quite Disagree
## 313                                Partly Agree
## 314                                Partly Agree
## 315                              Quite Disagree
## 316                              Quite Disagree
## 317                              Strongly Agree
## 318                              Strongly Agree
## 319                              Quite Disagree
## 320                              Quite Disagree
## 321                              Quite Disagree
## 322                              Quite Disagree
## 323                              Quite Disagree
## 324                              Quite Disagree
## 325                              Quite Disagree
## 326                              Quite Disagree
## 327                              Quite Disagree
## 328                              Strongly Agree
## 329                              Quite Disagree
## 330                                Partly Agree
## 331                                Partly Agree
## 332                                Partly Agree
## 333                                Partly Agree
## 334                              Quite Disagree
## 335                                Partly Agree
## 336                                Partly Agree
## 337                              Quite Disagree
## 338                              Quite Disagree
## 339                              Quite Disagree
## 340                                Partly Agree
## 341                                Partly Agree
## 342                                Partly Agree
## 343                                Partly Agree
## 344                              Quite Disagree
## 345                                Partly Agree
## 346                                Partly Agree
## 347                                Partly Agree
## 348                              Quite Disagree
## 349                                Partly Agree
## 350                                Partly Agree
## 351                              Strongly Agree
## 352                                Partly Agree
## 353                                Partly Agree
## 354                                Partly Agree
## 355                              Quite Disagree
## 356                                Partly Agree
## 357                              Quite Disagree
## 358                                Partly Agree
## 359                                Partly Agree
## 360                                Partly Agree
## 361                                Partly Agree
## 362                                Partly Agree
## 363                                Partly Agree
## 364                                Partly Agree
## 365                                Partly Agree
## 366                                Partly Agree
## 367                                Partly Agree
## 368                                Partly Agree
## 369                                Partly Agree
## 370                                Partly Agree
## 371                                Partly Agree
## 372                              Quite Disagree
## 373                              Quite Disagree
## 374                                Partly Agree
## 375                                Partly Agree
## 376                                Partly Agree
## 377                                Partly Agree
## 378                                Partly Agree
## 379                                Partly Agree
## 380                                Partly Agree
## 381                                Partly Agree
## 382                                Partly Agree
## 383                                Partly Agree
## 384                                Partly Agree
## 385                                Partly Agree
## 386                                Partly Agree
## 387                                Partly Agree
## 388                                Partly Agree
## 389                                  Don't Know
## 390                                Partly Agree
## 391                                Partly Agree
## 392                                Partly Agree
## 393                                  Don't Know
## 394                                Partly Agree
## 395                              Quite Disagree
## 396                                Partly Agree
## 397                                Partly Agree
## 398                                Partly Agree
## 399                                Partly Agree
## 400                                Partly Agree
## 401                                Partly Agree
## 402                                  Don't Know
## 403                                Partly Agree
## 404                                Partly Agree
## 405                              Quite Disagree
## 406                                Partly Agree
## 407                                  Don't Know
## 408                              Quite Disagree
## 409                              Strongly Agree
## 410                              Quite Disagree
## 411                              Quite Disagree
## 412                              Quite Disagree
## 413                              Quite Disagree
## 414                              Strongly Agree
## 415                                  Don't Know
## 416                              Quite Disagree
## 417                                  Don't Know
## 418                                  Don't Know
## 419                                Partly Agree
## 420                              Strongly Agree
## 421                              Quite Disagree
## 422                                  Don't Know
## 423                              Strongly Agree
## 424                              Quite Disagree
## 425                              Quite Disagree
## 426                              Quite Disagree
## 427                              Quite Disagree
## 428                                  Don't Know
## 429                                Partly Agree
## 430                              Strongly Agree
## 431                              Quite Disagree
## 432                                  Don't Know
## 433                              Quite Disagree
## 434                              Quite Disagree
## 435                                  Don't Know
## 436                                Partly Agree
## 437                              Quite Disagree
## 438                                Partly Agree
## 439                              Quite Disagree
## 440                              Quite Disagree
## 441                              Quite Disagree
## 442                                Partly Agree
## 443                              Quite Disagree
## 444                                Partly Agree
## 445                              Quite Disagree
## 446                              Quite Disagree
## 447                              Quite Disagree
## 448                              Quite Disagree
## 449                              Quite Disagree
## 450                                        <NA>
## 451                              Strongly Agree
## 452                              Quite Disagree
## 453                                Partly Agree
## 454                              Strongly Agree
## 455                                Partly Agree
## 456                              Strongly Agree
## 457                                  Don't Know
## 458                              Strongly Agree
## 459                              Strongly Agree
## 460                              Quite Disagree
## 461                              Quite Disagree
## 462                              Quite Disagree
## 463                              Strongly Agree
## 464                              Strongly Agree
## 465                           Strongly Disagree
## 466                              Strongly Agree
## 467                              Strongly Agree
## 468                              Quite Disagree
## 469                              Quite Disagree
## 470                                Partly Agree
## 471                              Quite Disagree
## 472                                Partly Agree
## 473                                Partly Agree
## 474                           Strongly Disagree
## 475                              Strongly Agree
## 476                              Strongly Agree
## 477                              Strongly Agree
## 478                              Strongly Agree
## 479                                  Don't Know
## 480                              Strongly Agree
## 481                                Partly Agree
## 482                              Strongly Agree
## 483                                Partly Agree
## 484                                Partly Agree
## 485                              Quite Disagree
## 486                                Partly Agree
## 487                              Quite Disagree
## 488                                Partly Agree
## 489                              Quite Disagree
## 490                              Strongly Agree
## 491                              Strongly Agree
## 492                              Quite Disagree
## 493                              Quite Disagree
## 494                                Partly Agree
## 495                                  Don't Know
## 496                                  Don't Know
##      Civil.Servants..Reliable.Trustworthy
## 1                            Partly Agree
## 2                       Strongly Disagree
## 3                          Quite Disagree
## 4                          Quite Disagree
## 5                          Quite Disagree
## 6                       Strongly Disagree
## 7                       Strongly Disagree
## 8                          Quite Disagree
## 9                          Quite Disagree
## 10                           Partly Agree
## 11                           Partly Agree
## 12                         Quite Disagree
## 13                         Quite Disagree
## 14                         Quite Disagree
## 15                         Quite Disagree
## 16                         Quite Disagree
## 17                      Strongly Disagree
## 18                         Quite Disagree
## 19                         Quite Disagree
## 20                           Partly Agree
## 21                         Quite Disagree
## 22                      Strongly Disagree
## 23                           Partly Agree
## 24                         Quite Disagree
## 25                         Quite Disagree
## 26                           Partly Agree
## 27                                   <NA>
## 28                      Strongly Disagree
## 29                           Partly Agree
## 30                         Quite Disagree
## 31                         Quite Disagree
## 32                           Partly Agree
## 33                           Partly Agree
## 34                      Strongly Disagree
## 35                           Partly Agree
## 36                         Quite Disagree
## 37                         Quite Disagree
## 38                         Quite Disagree
## 39                         Quite Disagree
## 40                         Quite Disagree
## 41                         Quite Disagree
## 42                         Quite Disagree
## 43                         Quite Disagree
## 44                         Quite Disagree
## 45                         Quite Disagree
## 46                         Quite Disagree
## 47                           Partly Agree
## 48                         Quite Disagree
## 49                           Partly Agree
## 50                           Partly Agree
## 51                           Partly Agree
## 52                             Don't Know
## 53                           Partly Agree
## 54                         Quite Disagree
## 55                         Quite Disagree
## 56                         Quite Disagree
## 57                         Quite Disagree
## 58                         Quite Disagree
## 59                         Quite Disagree
## 60                           Partly Agree
## 61                           Partly Agree
## 62                         Quite Disagree
## 63                         Quite Disagree
## 64                         Quite Disagree
## 65                         Quite Disagree
## 66                         Quite Disagree
## 67                         Quite Disagree
## 68                         Quite Disagree
## 69                         Quite Disagree
## 70                         Quite Disagree
## 71                           Partly Agree
## 72                         Quite Disagree
## 73                           Partly Agree
## 74                         Quite Disagree
## 75                         Quite Disagree
## 76                         Quite Disagree
## 77                         Quite Disagree
## 78                         Quite Disagree
## 79                         Quite Disagree
## 80                         Quite Disagree
## 81                         Quite Disagree
## 82                         Quite Disagree
## 83                         Quite Disagree
## 84                         Quite Disagree
## 85                           Partly Agree
## 86                         Quite Disagree
## 87                         Quite Disagree
## 88                         Quite Disagree
## 89                         Quite Disagree
## 90                         Quite Disagree
## 91                           Partly Agree
## 92                           Partly Agree
## 93                           Partly Agree
## 94                           Partly Agree
## 95                         Quite Disagree
## 96                         Quite Disagree
## 97                         Quite Disagree
## 98                         Quite Disagree
## 99                         Quite Disagree
## 100                        Quite Disagree
## 101                        Quite Disagree
## 102                        Quite Disagree
## 103                          Partly Agree
## 104                        Quite Disagree
## 105                     Strongly Disagree
## 106                          Partly Agree
## 107                        Quite Disagree
## 108                          Partly Agree
## 109                          Partly Agree
## 110                        Strongly Agree
## 111                        Strongly Agree
## 112                        Strongly Agree
## 113                          Partly Agree
## 114                        Strongly Agree
## 115                        Strongly Agree
## 116                        Strongly Agree
## 117                        Quite Disagree
## 118                          Partly Agree
## 119                            Don't Know
## 120                          Partly Agree
## 121                          Partly Agree
## 122                        Strongly Agree
## 123                          Partly Agree
## 124                        Strongly Agree
## 125                          Partly Agree
## 126                          Partly Agree
## 127                          Partly Agree
## 128                          Partly Agree
## 129                        Strongly Agree
## 130                          Partly Agree
## 131                        Strongly Agree
## 132                        Quite Disagree
## 133                          Partly Agree
## 134                          Partly Agree
## 135                     Strongly Disagree
## 136                            Don't Know
## 137                          Partly Agree
## 138                        Quite Disagree
## 139                        Quite Disagree
## 140                     Strongly Disagree
## 141                          Partly Agree
## 142                          Partly Agree
## 143                          Partly Agree
## 144                          Partly Agree
## 145                        Strongly Agree
## 146                            Don't Know
## 147                        Strongly Agree
## 148                          Partly Agree
## 149                        Strongly Agree
## 150                        Strongly Agree
## 151                        Strongly Agree
## 152                        Strongly Agree
## 153                            Don't Know
## 154                          Partly Agree
## 155                          Partly Agree
## 156                        Strongly Agree
## 157                          Partly Agree
## 158                          Partly Agree
## 159                        Quite Disagree
## 160                            Don't Know
## 161                          Partly Agree
## 162                        Quite Disagree
## 163                        Strongly Agree
## 164                            Don't Know
## 165                          Partly Agree
## 166                          Partly Agree
## 167                          Partly Agree
## 168                          Partly Agree
## 169                        Quite Disagree
## 170                          Partly Agree
## 171                          Partly Agree
## 172                          Partly Agree
## 173                          Partly Agree
## 174                        Strongly Agree
## 175                          Partly Agree
## 176                          Partly Agree
## 177                          Partly Agree
## 178                          Partly Agree
## 179                          Partly Agree
## 180                          Partly Agree
## 181                        Quite Disagree
## 182                        Strongly Agree
## 183                            Don't Know
## 184                            Don't Know
## 185                            Don't Know
## 186                            Don't Know
## 187                          Partly Agree
## 188                        Strongly Agree
## 189                        Strongly Agree
## 190                          Partly Agree
## 191                        Strongly Agree
## 192                        Quite Disagree
## 193                        Strongly Agree
## 194                        Strongly Agree
## 195                        Strongly Agree
## 196                          Partly Agree
## 197                        Quite Disagree
## 198                        Strongly Agree
## 199                        Quite Disagree
## 200                        Strongly Agree
## 201                          Partly Agree
## 202                        Quite Disagree
## 203                        Quite Disagree
## 204                     Strongly Disagree
## 205                        Strongly Agree
## 206                          Partly Agree
## 207                          Partly Agree
## 208                          Partly Agree
## 209                     Strongly Disagree
## 210                        Quite Disagree
## 211                     Strongly Disagree
## 212                     Strongly Disagree
## 213                     Strongly Disagree
## 214                     Strongly Disagree
## 215                     Strongly Disagree
## 216                     Strongly Disagree
## 217                          Partly Agree
## 218                        Quite Disagree
## 219                          Partly Agree
## 220                          Partly Agree
## 221                          Partly Agree
## 222                          Partly Agree
## 223                          Partly Agree
## 224                        Quite Disagree
## 225                          Partly Agree
## 226                        Strongly Agree
## 227                          Partly Agree
## 228                        Strongly Agree
## 229                        Quite Disagree
## 230                     Strongly Disagree
## 231                        Quite Disagree
## 232                     Strongly Disagree
## 233                     Strongly Disagree
## 234                     Strongly Disagree
## 235                     Strongly Disagree
## 236                        Strongly Agree
## 237                        Quite Disagree
## 238                        Strongly Agree
## 239                     Strongly Disagree
## 240                     Strongly Disagree
## 241                     Strongly Disagree
## 242                        Quite Disagree
## 243                     Strongly Disagree
## 244                     Strongly Disagree
## 245                     Strongly Disagree
## 246                        Quite Disagree
## 247                          Partly Agree
## 248                          Partly Agree
## 249                     Strongly Disagree
## 250                          Partly Agree
## 251                                  <NA>
## 252                                  <NA>
## 253                                  <NA>
## 254                                  <NA>
## 255                                  <NA>
## 256                                  <NA>
## 257                                  <NA>
## 258                                  <NA>
## 259                                  <NA>
## 260                                  <NA>
## 261                                  <NA>
## 262                                  <NA>
## 263                                  <NA>
## 264                                  <NA>
## 265                                  <NA>
## 266                                  <NA>
## 267                                  <NA>
## 268                                  <NA>
## 269                                  <NA>
## 270                                  <NA>
## 271                                  <NA>
## 272                                  <NA>
## 273                                  <NA>
## 274                                  <NA>
## 275                                  <NA>
## 276                                  <NA>
## 277                                  <NA>
## 278                                  <NA>
## 279                                  <NA>
## 280                                  <NA>
## 281                                  <NA>
## 282                                  <NA>
## 283                                  <NA>
## 284                                  <NA>
## 285                                  <NA>
## 286                                  <NA>
## 287                                  <NA>
## 288                                  <NA>
## 289                                  <NA>
## 290                                  <NA>
## 291                                  <NA>
## 292                                  <NA>
## 293                                  <NA>
## 294                                  <NA>
## 295                                  <NA>
## 296                                  <NA>
## 297                                  <NA>
## 298                                  <NA>
## 299                                  <NA>
## 300                                  <NA>
## 302                        Quite Disagree
## 303                     Strongly Disagree
## 304                          Partly Agree
## 305                          Partly Agree
## 306                     Strongly Disagree
## 307                                  <NA>
## 308                        Quite Disagree
## 309                        Quite Disagree
## 310                        Strongly Agree
## 311                          Partly Agree
## 312                        Quite Disagree
## 313                        Quite Disagree
## 314                          Partly Agree
## 315                        Quite Disagree
## 316                        Quite Disagree
## 317                     Strongly Disagree
## 318                        Strongly Agree
## 319                        Quite Disagree
## 320                        Quite Disagree
## 321                          Partly Agree
## 322                        Quite Disagree
## 323                        Quite Disagree
## 324                        Quite Disagree
## 325                        Quite Disagree
## 326                        Quite Disagree
## 327                        Quite Disagree
## 328                        Quite Disagree
## 329                          Partly Agree
## 330                        Strongly Agree
## 331                        Quite Disagree
## 332                        Quite Disagree
## 333                        Quite Disagree
## 334                     Strongly Disagree
## 335                     Strongly Disagree
## 336                          Partly Agree
## 337                          Partly Agree
## 338                          Partly Agree
## 339                          Partly Agree
## 340                          Partly Agree
## 341                     Strongly Disagree
## 342                        Quite Disagree
## 343                          Partly Agree
## 344                        Quite Disagree
## 345                        Quite Disagree
## 346                          Partly Agree
## 347                          Partly Agree
## 348                          Partly Agree
## 349                        Quite Disagree
## 350                     Strongly Disagree
## 351                        Quite Disagree
## 352                            Don't Know
## 353                        Quite Disagree
## 354                        Quite Disagree
## 355                        Quite Disagree
## 356                        Quite Disagree
## 357                        Quite Disagree
## 358                        Quite Disagree
## 359                        Quite Disagree
## 360                        Quite Disagree
## 361                        Quite Disagree
## 362                        Quite Disagree
## 363                        Quite Disagree
## 364                        Quite Disagree
## 365                        Quite Disagree
## 366                        Quite Disagree
## 367                        Quite Disagree
## 368                        Quite Disagree
## 369                        Quite Disagree
## 370                            Don't Know
## 371                        Quite Disagree
## 372                        Quite Disagree
## 373                          Partly Agree
## 374                        Quite Disagree
## 375                        Quite Disagree
## 376                        Quite Disagree
## 377                        Quite Disagree
## 378                          Partly Agree
## 379                          Partly Agree
## 380                        Quite Disagree
## 381                        Quite Disagree
## 382                        Quite Disagree
## 383                        Quite Disagree
## 384                        Quite Disagree
## 385                        Quite Disagree
## 386                        Quite Disagree
## 387                        Quite Disagree
## 388                        Quite Disagree
## 389                        Quite Disagree
## 390                        Quite Disagree
## 391                        Quite Disagree
## 392                        Quite Disagree
## 393                            Don't Know
## 394                        Quite Disagree
## 395                        Quite Disagree
## 396                        Quite Disagree
## 397                        Quite Disagree
## 398                        Quite Disagree
## 399                        Quite Disagree
## 400                        Quite Disagree
## 401                        Quite Disagree
## 402                            Don't Know
## 403                        Quite Disagree
## 404                            Don't Know
## 405                        Quite Disagree
## 406                        Quite Disagree
## 407                            Don't Know
## 408                        Quite Disagree
## 409                          Partly Agree
## 410                        Quite Disagree
## 411                          Partly Agree
## 412                          Partly Agree
## 413                        Strongly Agree
## 414                          Partly Agree
## 415                            Don't Know
## 416                          Partly Agree
## 417                            Don't Know
## 418                            Don't Know
## 419                          Partly Agree
## 420                          Partly Agree
## 421                        Strongly Agree
## 422                            Don't Know
## 423                        Strongly Agree
## 424                          Partly Agree
## 425                          Partly Agree
## 426                        Strongly Agree
## 427                          Partly Agree
## 428                            Don't Know
## 429                          Partly Agree
## 430                          Partly Agree
## 431                        Strongly Agree
## 432                            Don't Know
## 433                          Partly Agree
## 434                          Partly Agree
## 435                            Don't Know
## 436                          Partly Agree
## 437                          Partly Agree
## 438                          Partly Agree
## 439                          Partly Agree
## 440                        Strongly Agree
## 441                        Strongly Agree
## 442                          Partly Agree
## 443                        Strongly Agree
## 444                          Partly Agree
## 445                        Strongly Agree
## 446                        Strongly Agree
## 447                        Strongly Agree
## 448                          Partly Agree
## 449                          Partly Agree
## 450                                  <NA>
## 451                        Strongly Agree
## 452                          Partly Agree
## 453                          Partly Agree
## 454                        Quite Disagree
## 455                        Quite Disagree
## 456                     Strongly Disagree
## 457                        Quite Disagree
## 458                     Strongly Disagree
## 459                     Strongly Disagree
## 460                          Partly Agree
## 461                        Quite Disagree
## 462                                  <NA>
## 463                     Strongly Disagree
## 464                     Strongly Disagree
## 465                                  <NA>
## 466                     Strongly Disagree
## 467                        Quite Disagree
## 468                        Quite Disagree
## 469                     Strongly Disagree
## 470                        Strongly Agree
## 471                          Partly Agree
## 472                        Quite Disagree
## 473                     Strongly Disagree
## 474                     Strongly Disagree
## 475                        Quite Disagree
## 476                     Strongly Disagree
## 477                          Partly Agree
## 478                     Strongly Disagree
## 479                            Don't Know
## 480                        Strongly Agree
## 481                     Strongly Disagree
## 482                     Strongly Disagree
## 483                     Strongly Disagree
## 484                     Strongly Disagree
## 485                        Quite Disagree
## 486                        Quite Disagree
## 487                        Quite Disagree
## 488                        Quite Disagree
## 489                        Quite Disagree
## 490                        Quite Disagree
## 491                        Quite Disagree
## 492                          Partly Agree
## 493                        Strongly Agree
## 494                        Quite Disagree
## 495                          Partly Agree
## 496                        Quite Disagree
##      Civil.Servants..Treat.all.equally
## 1                    Strongly Disagree
## 2                       Quite Disagree
## 3                       Quite Disagree
## 4                    Strongly Disagree
## 5                    Strongly Disagree
## 6                    Strongly Disagree
## 7                    Strongly Disagree
## 8                    Strongly Disagree
## 9                    Strongly Disagree
## 10                      Strongly Agree
## 11                   Strongly Disagree
## 12                      Quite Disagree
## 13                      Quite Disagree
## 14                   Strongly Disagree
## 15                   Strongly Disagree
## 16                   Strongly Disagree
## 17                      Quite Disagree
## 18                      Quite Disagree
## 19                      Quite Disagree
## 20                      Quite Disagree
## 21                        Partly Agree
## 22                      Quite Disagree
## 23                      Quite Disagree
## 24                      Quite Disagree
## 25                      Quite Disagree
## 26                        Partly Agree
## 27                        Partly Agree
## 28                                <NA>
## 29                        Partly Agree
## 30                      Quite Disagree
## 31                   Strongly Disagree
## 32                      Quite Disagree
## 33                      Quite Disagree
## 34                      Quite Disagree
## 35                      Quite Disagree
## 36                        Partly Agree
## 37                        Partly Agree
## 38                      Quite Disagree
## 39                                <NA>
## 40                      Quite Disagree
## 41                      Quite Disagree
## 42                      Quite Disagree
## 43                   Strongly Disagree
## 44                      Quite Disagree
## 45                      Quite Disagree
## 46                   Strongly Disagree
## 47                      Quite Disagree
## 48                                <NA>
## 49                      Quite Disagree
## 50                      Quite Disagree
## 51                      Quite Disagree
## 52                      Quite Disagree
## 53                      Quite Disagree
## 54                      Quite Disagree
## 55                      Quite Disagree
## 56                      Quite Disagree
## 57                        Partly Agree
## 58                      Quite Disagree
## 59                      Quite Disagree
## 60                        Partly Agree
## 61                      Quite Disagree
## 62                      Quite Disagree
## 63                      Quite Disagree
## 64                   Strongly Disagree
## 65                      Quite Disagree
## 66                      Quite Disagree
## 67                      Quite Disagree
## 68                      Quite Disagree
## 69                      Quite Disagree
## 70                      Strongly Agree
## 71                        Partly Agree
## 72                      Quite Disagree
## 73                      Quite Disagree
## 74                      Quite Disagree
## 75                      Quite Disagree
## 76                   Strongly Disagree
## 77                   Strongly Disagree
## 78                      Strongly Agree
## 79                   Strongly Disagree
## 80                      Quite Disagree
## 81                   Strongly Disagree
## 82                   Strongly Disagree
## 83                   Strongly Disagree
## 84                   Strongly Disagree
## 85                      Quite Disagree
## 86                        Partly Agree
## 87                      Quite Disagree
## 88                      Quite Disagree
## 89                      Quite Disagree
## 90                      Quite Disagree
## 91                        Partly Agree
## 92                        Partly Agree
## 93                      Quite Disagree
## 94                      Quite Disagree
## 95                      Quite Disagree
## 96                      Quite Disagree
## 97                      Quite Disagree
## 98                      Quite Disagree
## 99                      Quite Disagree
## 100                     Quite Disagree
## 101                     Quite Disagree
## 102                  Strongly Disagree
## 103                     Strongly Agree
## 104                       Partly Agree
## 105                  Strongly Disagree
## 106                     Strongly Agree
## 107                     Quite Disagree
## 108                       Partly Agree
## 109                     Quite Disagree
## 110                       Partly Agree
## 111                     Strongly Agree
## 112                     Strongly Agree
## 113                     Strongly Agree
## 114                       Partly Agree
## 115                       Partly Agree
## 116                     Strongly Agree
## 117                     Quite Disagree
## 118                       Partly Agree
## 119                         Don't Know
## 120                       Partly Agree
## 121                     Strongly Agree
## 122                     Quite Disagree
## 123                       Partly Agree
## 124                       Partly Agree
## 125                     Quite Disagree
## 126                     Quite Disagree
## 127                     Quite Disagree
## 128                       Partly Agree
## 129                     Quite Disagree
## 130                     Strongly Agree
## 131                     Quite Disagree
## 132                       Partly Agree
## 133                     Strongly Agree
## 134                     Quite Disagree
## 135                     Quite Disagree
## 136                         Don't Know
## 137                       Partly Agree
## 138                       Partly Agree
## 139                               <NA>
## 140                     Quite Disagree
## 141                     Quite Disagree
## 142                       Partly Agree
## 143                     Quite Disagree
## 144                     Quite Disagree
## 145                       Partly Agree
## 146                         Don't Know
## 147                     Strongly Agree
## 148                     Strongly Agree
## 149                       Partly Agree
## 150                       Partly Agree
## 151                  Strongly Disagree
## 152                     Quite Disagree
## 153                         Don't Know
## 154                     Strongly Agree
## 155                     Strongly Agree
## 156                  Strongly Disagree
## 157                     Quite Disagree
## 158                     Quite Disagree
## 159                       Partly Agree
## 160                     Strongly Agree
## 161                       Partly Agree
## 162                       Partly Agree
## 163                       Partly Agree
## 164                     Strongly Agree
## 165                     Quite Disagree
## 166                     Strongly Agree
## 167                     Quite Disagree
## 168                     Strongly Agree
## 169                     Strongly Agree
## 170                     Strongly Agree
## 171                     Quite Disagree
## 172                     Quite Disagree
## 173                     Quite Disagree
## 174                       Partly Agree
## 175                     Quite Disagree
## 176                       Partly Agree
## 177                         Don't Know
## 178                       Partly Agree
## 179                       Partly Agree
## 180                     Strongly Agree
## 181                     Quite Disagree
## 182                     Strongly Agree
## 183                         Don't Know
## 184                         Don't Know
## 185                         Don't Know
## 186                       Partly Agree
## 187                       Partly Agree
## 188                       Partly Agree
## 189                               <NA>
## 190                       Partly Agree
## 191                     Strongly Agree
## 192                       Partly Agree
## 193                     Strongly Agree
## 194                     Quite Disagree
## 195                     Strongly Agree
## 196                               <NA>
## 197                     Quite Disagree
## 198                       Partly Agree
## 199                     Strongly Agree
## 200                     Quite Disagree
## 201                     Quite Disagree
## 202                               <NA>
## 203                  Strongly Disagree
## 204                     Quite Disagree
## 205                     Quite Disagree
## 206                     Quite Disagree
## 207                     Strongly Agree
## 208                     Strongly Agree
## 209                     Quite Disagree
## 210                       Partly Agree
## 211                  Strongly Disagree
## 212                  Strongly Disagree
## 213                  Strongly Disagree
## 214                  Strongly Disagree
## 215                  Strongly Disagree
## 216                  Strongly Disagree
## 217                     Quite Disagree
## 218                     Quite Disagree
## 219                       Partly Agree
## 220                     Strongly Agree
## 221                     Quite Disagree
## 222                     Quite Disagree
## 223                     Strongly Agree
## 224                     Strongly Agree
## 225                       Partly Agree
## 226                       Partly Agree
## 227                       Partly Agree
## 228                       Partly Agree
## 229                     Quite Disagree
## 230                       Partly Agree
## 231                     Quite Disagree
## 232                  Strongly Disagree
## 233                     Quite Disagree
## 234                     Quite Disagree
## 235                     Quite Disagree
## 236                       Partly Agree
## 237                     Quite Disagree
## 238                     Strongly Agree
## 239                     Quite Disagree
## 240                     Quite Disagree
## 241                     Quite Disagree
## 242                  Strongly Disagree
## 243                     Quite Disagree
## 244                     Quite Disagree
## 245                     Strongly Agree
## 246                     Quite Disagree
## 247                     Strongly Agree
## 248                     Strongly Agree
## 249                     Quite Disagree
## 250                  Strongly Disagree
## 251                     Quite Disagree
## 252                     Quite Disagree
## 253                       Partly Agree
## 254                       Partly Agree
## 255                     Quite Disagree
## 256                     Quite Disagree
## 257                     Strongly Agree
## 258                     Strongly Agree
## 259                       Partly Agree
## 260                       Partly Agree
## 261                       Partly Agree
## 262                       Partly Agree
## 263                     Strongly Agree
## 264                       Partly Agree
## 265                         Don't Know
## 266                       Partly Agree
## 267                       Partly Agree
## 268                       Partly Agree
## 269                       Partly Agree
## 270                     Quite Disagree
## 271                     Quite Disagree
## 272                       Partly Agree
## 273                     Quite Disagree
## 274                       Partly Agree
## 275                     Quite Disagree
## 276                     Quite Disagree
## 277                         Don't Know
## 278                       Partly Agree
## 279                       Partly Agree
## 280                     Quite Disagree
## 281                       Partly Agree
## 282                       Partly Agree
## 283                       Partly Agree
## 284                     Quite Disagree
## 285                     Quite Disagree
## 286                     Quite Disagree
## 287                       Partly Agree
## 288                       Partly Agree
## 289                         Don't Know
## 290                     Quite Disagree
## 291                       Partly Agree
## 292                       Partly Agree
## 293                     Quite Disagree
## 294                     Quite Disagree
## 295                       Partly Agree
## 296                       Partly Agree
## 297                       Partly Agree
## 298                     Quite Disagree
## 299                       Partly Agree
## 300                       Partly Agree
## 302                     Quite Disagree
## 303                  Strongly Disagree
## 304                     Quite Disagree
## 305                     Strongly Agree
## 306                  Strongly Disagree
## 307                               <NA>
## 308                     Quite Disagree
## 309                     Quite Disagree
## 310                     Quite Disagree
## 311                       Partly Agree
## 312                     Quite Disagree
## 313                     Quite Disagree
## 314                       Partly Agree
## 315                     Quite Disagree
## 316                     Quite Disagree
## 317                     Quite Disagree
## 318                     Strongly Agree
## 319                     Quite Disagree
## 320                     Quite Disagree
## 321                       Partly Agree
## 322                     Quite Disagree
## 323                     Quite Disagree
## 324                     Quite Disagree
## 325                     Quite Disagree
## 326                     Quite Disagree
## 327                     Quite Disagree
## 328                     Quite Disagree
## 329                     Strongly Agree
## 330                     Quite Disagree
## 331                  Strongly Disagree
## 332                  Strongly Disagree
## 333                       Partly Agree
## 334                     Quite Disagree
## 335                       Partly Agree
## 336                       Partly Agree
## 337                  Strongly Disagree
## 338                  Strongly Disagree
## 339                       Partly Agree
## 340                     Quite Disagree
## 341                  Strongly Disagree
## 342                       Partly Agree
## 343                     Quite Disagree
## 344                       Partly Agree
## 345                     Quite Disagree
## 346                     Quite Disagree
## 347                       Partly Agree
## 348                     Quite Disagree
## 349                       Partly Agree
## 350                     Quite Disagree
## 351                     Quite Disagree
## 352                         Don't Know
## 353                     Quite Disagree
## 354                     Quite Disagree
## 355                     Quite Disagree
## 356                         Don't Know
## 357                     Quite Disagree
## 358                     Quite Disagree
## 359                     Quite Disagree
## 360                     Quite Disagree
## 361                     Quite Disagree
## 362                     Quite Disagree
## 363                     Quite Disagree
## 364                     Quite Disagree
## 365                       Partly Agree
## 366                     Quite Disagree
## 367                     Quite Disagree
## 368                     Quite Disagree
## 369                     Quite Disagree
## 370                     Quite Disagree
## 371                     Quite Disagree
## 372                     Quite Disagree
## 373                       Partly Agree
## 374                     Quite Disagree
## 375                     Quite Disagree
## 376                     Quite Disagree
## 377                     Quite Disagree
## 378                       Partly Agree
## 379                       Partly Agree
## 380                     Quite Disagree
## 381                     Quite Disagree
## 382                     Quite Disagree
## 383                     Quite Disagree
## 384                     Quite Disagree
## 385                     Quite Disagree
## 386                     Quite Disagree
## 387                     Quite Disagree
## 388                     Quite Disagree
## 389                         Don't Know
## 390                     Quite Disagree
## 391                     Quite Disagree
## 392                     Quite Disagree
## 393                         Don't Know
## 394                         Don't Know
## 395                     Quite Disagree
## 396                     Quite Disagree
## 397                     Quite Disagree
## 398                     Quite Disagree
## 399                     Quite Disagree
## 400                     Quite Disagree
## 401                     Quite Disagree
## 402                         Don't Know
## 403                     Quite Disagree
## 404                         Don't Know
## 405                     Quite Disagree
## 406                     Quite Disagree
## 407                         Don't Know
## 408                       Partly Agree
## 409                       Partly Agree
## 410                     Quite Disagree
## 411                       Partly Agree
## 412                       Partly Agree
## 413                     Strongly Agree
## 414                     Quite Disagree
## 415                         Don't Know
## 416                       Partly Agree
## 417                               <NA>
## 418                         Don't Know
## 419                     Quite Disagree
## 420                       Partly Agree
## 421                     Strongly Agree
## 422                         Don't Know
## 423                     Quite Disagree
## 424                       Partly Agree
## 425                       Partly Agree
## 426                     Strongly Agree
## 427                       Partly Agree
## 428                         Don't Know
## 429                       Partly Agree
## 430                     Strongly Agree
## 431                     Strongly Agree
## 432                         Don't Know
## 433                       Partly Agree
## 434                       Partly Agree
## 435                         Don't Know
## 436                       Partly Agree
## 437                       Partly Agree
## 438                               <NA>
## 439                       Partly Agree
## 440                     Strongly Agree
## 441                     Strongly Agree
## 442                       Partly Agree
## 443                     Strongly Agree
## 444                       Partly Agree
## 445                     Strongly Agree
## 446                     Strongly Agree
## 447                     Strongly Agree
## 448                       Partly Agree
## 449                       Partly Agree
## 450                               <NA>
## 451                     Strongly Agree
## 452                       Partly Agree
## 453                     Quite Disagree
## 454                     Strongly Agree
## 455                     Quite Disagree
## 456                  Strongly Disagree
## 457                     Quite Disagree
## 458                  Strongly Disagree
## 459                     Strongly Agree
## 460                     Quite Disagree
## 461                     Quite Disagree
## 462                     Strongly Agree
## 463                  Strongly Disagree
## 464                  Strongly Disagree
## 465                     Quite Disagree
## 466                  Strongly Disagree
## 467                       Partly Agree
## 468                     Quite Disagree
## 469                       Partly Agree
## 470                         Don't Know
## 471                     Quite Disagree
## 472                       Partly Agree
## 473                  Strongly Disagree
## 474                     Strongly Agree
## 475                     Quite Disagree
## 476                  Strongly Disagree
## 477                     Quite Disagree
## 478                  Strongly Disagree
## 479                         Don't Know
## 480                  Strongly Disagree
## 481                  Strongly Disagree
## 482                  Strongly Disagree
## 483                  Strongly Disagree
## 484                  Strongly Disagree
## 485                     Quite Disagree
## 486                  Strongly Disagree
## 487                     Quite Disagree
## 488                       Partly Agree
## 489                     Quite Disagree
## 490                     Strongly Agree
## 491                     Strongly Agree
## 492                     Quite Disagree
## 493                  Strongly Disagree
## 494                     Quite Disagree
## 495                     Quite Disagree
## 496                  Strongly Disagree
##      Civil.Servants..Not.fully.aware.of.their.duties.responsibilities
## 1                                                      Quite Disagree
## 2                                                        Partly Agree
## 3                                                        Partly Agree
## 4                                                        Partly Agree
## 5                                                        Partly Agree
## 6                                                        Partly Agree
## 7                                                      Quite Disagree
## 8                                                   Strongly Disagree
## 9                                                   Strongly Disagree
## 10                                                       Partly Agree
## 11                                                       Partly Agree
## 12                                                     Strongly Agree
## 13                                                       Partly Agree
## 14                                                     Strongly Agree
## 15                                                     Quite Disagree
## 16                                                       Partly Agree
## 17                                                     Quite Disagree
## 18                                                         Don't Know
## 19                                                     Strongly Agree
## 20                                                     Quite Disagree
## 21                                                     Strongly Agree
## 22                                                     Strongly Agree
## 23                                                     Quite Disagree
## 24                                                     Quite Disagree
## 25                                                       Partly Agree
## 26                                                       Partly Agree
## 27                                                     Quite Disagree
## 28                                                       Partly Agree
## 29                                                       Partly Agree
## 30                                                     Quite Disagree
## 31                                                     Quite Disagree
## 32                                                     Strongly Agree
## 33                                                       Partly Agree
## 34                                                     Strongly Agree
## 35                                                     Strongly Agree
## 36                                                       Partly Agree
## 37                                                     Quite Disagree
## 38                                                       Partly Agree
## 39                                                       Partly Agree
## 40                                                       Partly Agree
## 41                                                     Quite Disagree
## 42                                                       Partly Agree
## 43                                                     Quite Disagree
## 44                                                     Quite Disagree
## 45                                                     Quite Disagree
## 46                                                     Strongly Agree
## 47                                                       Partly Agree
## 48                                                  Strongly Disagree
## 49                                                       Partly Agree
## 50                                                     Quite Disagree
## 51                                                       Partly Agree
## 52                                                         Don't Know
## 53                                                     Quite Disagree
## 54                                                       Partly Agree
## 55                                                       Partly Agree
## 56                                                     Quite Disagree
## 57                                                     Quite Disagree
## 58                                                       Partly Agree
## 59                                                       Partly Agree
## 60                                                       Partly Agree
## 61                                                     Quite Disagree
## 62                                                       Partly Agree
## 63                                                       Partly Agree
## 64                                                       Partly Agree
## 65                                                       Partly Agree
## 66                                                       Partly Agree
## 67                                                       Partly Agree
## 68                                                       Partly Agree
## 69                                                       Partly Agree
## 70                                                               <NA>
## 71                                                     Quite Disagree
## 72                                                       Partly Agree
## 73                                                       Partly Agree
## 74                                                       Partly Agree
## 75                                                       Partly Agree
## 76                                                     Quite Disagree
## 77                                                     Quite Disagree
## 78                                                     Quite Disagree
## 79                                                     Quite Disagree
## 80                                                       Partly Agree
## 81                                                       Partly Agree
## 82                                                       Partly Agree
## 83                                                       Partly Agree
## 84                                                     Quite Disagree
## 85                                                       Partly Agree
## 86                                                     Quite Disagree
## 87                                                       Partly Agree
## 88                                                       Partly Agree
## 89                                                       Partly Agree
## 90                                                       Partly Agree
## 91                                                     Quite Disagree
## 92                                                     Quite Disagree
## 93                                                       Partly Agree
## 94                                                       Partly Agree
## 95                                                       Partly Agree
## 96                                                       Partly Agree
## 97                                                       Partly Agree
## 98                                                       Partly Agree
## 99                                                       Partly Agree
## 100                                                      Partly Agree
## 101                                                      Partly Agree
## 102                                                 Strongly Disagree
## 103                                                    Strongly Agree
## 104                                                    Strongly Agree
## 105                                                      Partly Agree
## 106                                                      Partly Agree
## 107                                                 Strongly Disagree
## 108                                                 Strongly Disagree
## 109                                                      Partly Agree
## 110                                                    Strongly Agree
## 111                                                    Strongly Agree
## 112                                                      Partly Agree
## 113                                                      Partly Agree
## 114                                                    Strongly Agree
## 115                                                    Quite Disagree
## 116                                                    Quite Disagree
## 117                                                      Partly Agree
## 118                                                      Partly Agree
## 119                                                        Don't Know
## 120                                                      Partly Agree
## 121                                                 Strongly Disagree
## 122                                                    Quite Disagree
## 123                                                    Quite Disagree
## 124                                                      Partly Agree
## 125                                                      Partly Agree
## 126                                                      Partly Agree
## 127                                                      Partly Agree
## 128                                                    Quite Disagree
## 129                                                      Partly Agree
## 130                                                    Strongly Agree
## 131                                                      Partly Agree
## 132                                                      Partly Agree
## 133                                                    Quite Disagree
## 134                                                      Partly Agree
## 135                                                      Partly Agree
## 136                                                        Don't Know
## 137                                                 Strongly Disagree
## 138                                                      Partly Agree
## 139                                                    Quite Disagree
## 140                                                    Quite Disagree
## 141                                                      Partly Agree
## 142                                                    Quite Disagree
## 143                                                      Partly Agree
## 144                                                      Partly Agree
## 145                                                    Strongly Agree
## 146                                                        Don't Know
## 147                                                      Partly Agree
## 148                                                    Strongly Agree
## 149                                                    Strongly Agree
## 150                                                    Quite Disagree
## 151                                                      Partly Agree
## 152                                                    Strongly Agree
## 153                                                        Don't Know
## 154                                                    Strongly Agree
## 155                                                        Don't Know
## 156                                                      Partly Agree
## 157                                                      Partly Agree
## 158                                                    Strongly Agree
## 159                                                    Strongly Agree
## 160                                                      Partly Agree
## 161                                                    Strongly Agree
## 162                                                    Strongly Agree
## 163                                                    Strongly Agree
## 164                                                        Don't Know
## 165                                                    Strongly Agree
## 166                                                    Strongly Agree
## 167                                                    Strongly Agree
## 168                                                    Strongly Agree
## 169                                                      Partly Agree
## 170                                                        Don't Know
## 171                                                        Don't Know
## 172                                                        Don't Know
## 173                                                        Don't Know
## 174                                                    Strongly Agree
## 175                                                        Don't Know
## 176                                                      Partly Agree
## 177                                                        Don't Know
## 178                                                      Partly Agree
## 179                                                      Partly Agree
## 180                                                      Partly Agree
## 181                                                              <NA>
## 182                                                    Strongly Agree
## 183                                                        Don't Know
## 184                                                        Don't Know
## 185                                                      Partly Agree
## 186                                                    Quite Disagree
## 187                                                        Don't Know
## 188                                                    Strongly Agree
## 189                                                      Partly Agree
## 190                                                    Strongly Agree
## 191                                                        Don't Know
## 192                                                    Strongly Agree
## 193                                                      Partly Agree
## 194                                                        Don't Know
## 195                                                        Don't Know
## 196                                                    Quite Disagree
## 197                                                    Quite Disagree
## 198                                                    Quite Disagree
## 199                                                    Strongly Agree
## 200                                                    Strongly Agree
## 201                                                    Quite Disagree
## 202                                                 Strongly Disagree
## 203                                                      Partly Agree
## 204                                                      Partly Agree
## 205                                                    Quite Disagree
## 206                                                    Quite Disagree
## 207                                                      Partly Agree
## 208                                                    Strongly Agree
## 209                                                    Strongly Agree
## 210                                                    Strongly Agree
## 211                                                    Strongly Agree
## 212                                                      Partly Agree
## 213                                                    Strongly Agree
## 214                                                    Strongly Agree
## 215                                                    Strongly Agree
## 216                                                    Strongly Agree
## 217                                                    Strongly Agree
## 218                                                      Partly Agree
## 219                                                    Strongly Agree
## 220                                                    Quite Disagree
## 221                                                    Strongly Agree
## 222                                                      Partly Agree
## 223                                                    Strongly Agree
## 224                                                    Quite Disagree
## 225                                                    Quite Disagree
## 226                                                      Partly Agree
## 227                                                      Partly Agree
## 228                                                      Partly Agree
## 229                                                      Partly Agree
## 230                                                    Quite Disagree
## 231                                                      Partly Agree
## 232                                                    Quite Disagree
## 233                                                      Partly Agree
## 234                                                      Partly Agree
## 235                                                      Partly Agree
## 236                                                 Strongly Disagree
## 237                                                      Partly Agree
## 238                                                      Partly Agree
## 239                                                      Partly Agree
## 240                                                      Partly Agree
## 241                                                      Partly Agree
## 242                                                    Quite Disagree
## 243                                                      Partly Agree
## 244                                                      Partly Agree
## 245                                                    Quite Disagree
## 246                                                      Partly Agree
## 247                                                    Strongly Agree
## 248                                                      Partly Agree
## 249                                                      Partly Agree
## 250                                                 Strongly Disagree
## 251                                                    Quite Disagree
## 252                                                    Quite Disagree
## 253                                                        Don't Know
## 254                                                      Partly Agree
## 255                                                    Quite Disagree
## 256                                                      Partly Agree
## 257                                                    Strongly Agree
## 258                                                        Don't Know
## 259                                                        Don't Know
## 260                                                    Quite Disagree
## 261                                                    Strongly Agree
## 262                                                      Partly Agree
## 263                                                      Partly Agree
## 264                                                      Partly Agree
## 265                                                        Don't Know
## 266                                                      Partly Agree
## 267                                                    Quite Disagree
## 268                                                      Partly Agree
## 269                                                      Partly Agree
## 270                                                    Quite Disagree
## 271                                                      Partly Agree
## 272                                                      Partly Agree
## 273                                                    Quite Disagree
## 274                                                      Partly Agree
## 275                                                      Partly Agree
## 276                                                    Quite Disagree
## 277                                                      Partly Agree
## 278                                                    Quite Disagree
## 279                                                      Partly Agree
## 280                                                    Quite Disagree
## 281                                                      Partly Agree
## 282                                                      Partly Agree
## 283                                                      Partly Agree
## 284                                                      Partly Agree
## 285                                                    Quite Disagree
## 286                                                    Quite Disagree
## 287                                                    Quite Disagree
## 288                                                      Partly Agree
## 289                                                        Don't Know
## 290                                                    Quite Disagree
## 291                                                    Quite Disagree
## 292                                                        Don't Know
## 293                                                    Quite Disagree
## 294                                                    Quite Disagree
## 295                                                      Partly Agree
## 296                                                    Strongly Agree
## 297                                                        Don't Know
## 298                                                    Quite Disagree
## 299                                                      Partly Agree
## 300                                                      Partly Agree
## 302                                                    Quite Disagree
## 303                                                    Quite Disagree
## 304                                                 Strongly Disagree
## 305                                                    Strongly Agree
## 306                                                    Strongly Agree
## 307                                                              <NA>
## 308                                                    Quite Disagree
## 309                                                      Partly Agree
## 310                                                    Quite Disagree
## 311                                                      Partly Agree
## 312                                                      Partly Agree
## 313                                                      Partly Agree
## 314                                                      Partly Agree
## 315                                                    Quite Disagree
## 316                                                    Quite Disagree
## 317                                                    Strongly Agree
## 318                                                    Quite Disagree
## 319                                                      Partly Agree
## 320                                                      Partly Agree
## 321                                                      Partly Agree
## 322                                                    Quite Disagree
## 323                                                    Quite Disagree
## 324                                                    Quite Disagree
## 325                                                    Quite Disagree
## 326                                                    Quite Disagree
## 327                                                    Quite Disagree
## 328                                                      Partly Agree
## 329                                                    Quite Disagree
## 330                                                      Partly Agree
## 331                                                    Quite Disagree
## 332                                                    Quite Disagree
## 333                                                    Strongly Agree
## 334                                                    Strongly Agree
## 335                                                 Strongly Disagree
## 336                                                    Quite Disagree
## 337                                                      Partly Agree
## 338                                                    Strongly Agree
## 339                                                    Quite Disagree
## 340                                                    Strongly Agree
## 341                                                      Partly Agree
## 342                                                      Partly Agree
## 343                                                      Partly Agree
## 344                                                      Partly Agree
## 345                                                 Strongly Disagree
## 346                                                    Quite Disagree
## 347                                                    Strongly Agree
## 348                                                      Partly Agree
## 349                                                      Partly Agree
## 350                                                      Partly Agree
## 351                                                    Quite Disagree
## 352                                                        Don't Know
## 353                                                      Partly Agree
## 354                                                        Don't Know
## 355                                                    Quite Disagree
## 356                                                        Don't Know
## 357                                                      Partly Agree
## 358                                                      Partly Agree
## 359                                                      Partly Agree
## 360                                                      Partly Agree
## 361                                                      Partly Agree
## 362                                                      Partly Agree
## 363                                                      Partly Agree
## 364                                                      Partly Agree
## 365                                                      Partly Agree
## 366                                                      Partly Agree
## 367                                                      Partly Agree
## 368                                                      Partly Agree
## 369                                                      Partly Agree
## 370                                                    Quite Disagree
## 371                                                    Quite Disagree
## 372                                                    Quite Disagree
## 373                                                    Quite Disagree
## 374                                                      Partly Agree
## 375                                                      Partly Agree
## 376                                                      Partly Agree
## 377                                                      Partly Agree
## 378                                                      Partly Agree
## 379                                                    Quite Disagree
## 380                                                      Partly Agree
## 381                                                        Don't Know
## 382                                                        Don't Know
## 383                                                        Don't Know
## 384                                                        Don't Know
## 385                                                      Partly Agree
## 386                                                        Don't Know
## 387                                                    Quite Disagree
## 388                                                        Don't Know
## 389                                                    Quite Disagree
## 390                                                    Quite Disagree
## 391                                                      Partly Agree
## 392                                                      Partly Agree
## 393                                                        Don't Know
## 394                                                        Don't Know
## 395                                                    Quite Disagree
## 396                                                      Partly Agree
## 397                                                      Partly Agree
## 398                                                      Partly Agree
## 399                                                      Partly Agree
## 400                                                        Don't Know
## 401                                                        Don't Know
## 402                                                        Don't Know
## 403                                                      Partly Agree
## 404                                                        Don't Know
## 405                                                      Partly Agree
## 406                                                    Quite Disagree
## 407                                                        Don't Know
## 408                                                    Quite Disagree
## 409                                                      Partly Agree
## 410                                                      Partly Agree
## 411                                                    Quite Disagree
## 412                                                      Partly Agree
## 413                                                    Quite Disagree
## 414                                                              <NA>
## 415                                                        Don't Know
## 416                                                      Partly Agree
## 417                                                              <NA>
## 418                                                        Don't Know
## 419                                                    Quite Disagree
## 420                                                    Strongly Agree
## 421                                                    Quite Disagree
## 422                                                        Don't Know
## 423                                                    Quite Disagree
## 424                                                    Quite Disagree
## 425                                                    Quite Disagree
## 426                                                    Quite Disagree
## 427                                                    Quite Disagree
## 428                                                        Don't Know
## 429                                                      Partly Agree
## 430                                                    Strongly Agree
## 431                                                    Strongly Agree
## 432                                                        Don't Know
## 433                                                    Quite Disagree
## 434                                                    Quite Disagree
## 435                                                        Don't Know
## 436                                                    Quite Disagree
## 437                                                    Quite Disagree
## 438                                                      Partly Agree
## 439                                                    Quite Disagree
## 440                                                    Quite Disagree
## 441                                                    Quite Disagree
## 442                                                      Partly Agree
## 443                                                    Quite Disagree
## 444                                                    Quite Disagree
## 445                                                    Quite Disagree
## 446                                                    Quite Disagree
## 447                                                    Quite Disagree
## 448                                                      Partly Agree
## 449                                                    Quite Disagree
## 450                                                              <NA>
## 451                                                    Strongly Agree
## 452                                                    Quite Disagree
## 453                                                    Quite Disagree
## 454                                                      Partly Agree
## 455                                                    Strongly Agree
## 456                                                    Strongly Agree
## 457                                                        Don't Know
## 458                                                    Strongly Agree
## 459                                                    Strongly Agree
## 460                                                      Partly Agree
## 461                                                        Don't Know
## 462                                                              <NA>
## 463                                                 Strongly Disagree
## 464                                                    Strongly Agree
## 465                                                 Strongly Disagree
## 466                                                 Strongly Disagree
## 467                                                      Partly Agree
## 468                                                      Partly Agree
## 469                                                    Quite Disagree
## 470                                                        Don't Know
## 471                                                 Strongly Disagree
## 472                                                    Quite Disagree
## 473                                                      Partly Agree
## 474                                                    Strongly Agree
## 475                                                      Partly Agree
## 476                                                    Strongly Agree
## 477                                                      Partly Agree
## 478                                                    Quite Disagree
## 479                                                        Don't Know
## 480                                                    Strongly Agree
## 481                                                      Partly Agree
## 482                                                    Strongly Agree
## 483                                                    Strongly Agree
## 484                                                      Partly Agree
## 485                                                    Quite Disagree
## 486                                                    Strongly Agree
## 487                                                      Partly Agree
## 488                                                      Partly Agree
## 489                                                        Don't Know
## 490                                                      Partly Agree
## 491                                                      Partly Agree
## 492                                                    Quite Disagree
## 493                                                    Strongly Agree
## 494                                                    Strongly Agree
## 495                                                        Don't Know
## 496                                                    Quite Disagree
##      Civil.Servants..Nepotism..Act.for.afno.manche.
## 1                                      Partly Agree
## 2                                    Strongly Agree
## 3                                      Partly Agree
## 4                                    Strongly Agree
## 5                                    Strongly Agree
## 6                                      Partly Agree
## 7                                      Partly Agree
## 8                                      Partly Agree
## 9                                      Partly Agree
## 10                                   Strongly Agree
## 11                                     Partly Agree
## 12                                     Partly Agree
## 13                                   Strongly Agree
## 14                                     Partly Agree
## 15                                   Strongly Agree
## 16                                Strongly Disagree
## 17                                   Quite Disagree
## 18                                   Quite Disagree
## 19                                     Partly Agree
## 20                                   Quite Disagree
## 21                                   Strongly Agree
## 22                                   Strongly Agree
## 23                                     Partly Agree
## 24                                     Partly Agree
## 25                                   Quite Disagree
## 26                                     Partly Agree
## 27                                     Partly Agree
## 28                                     Partly Agree
## 29                                     Partly Agree
## 30                                     Partly Agree
## 31                                   Strongly Agree
## 32                                       Don't Know
## 33                                   Quite Disagree
## 34                                   Quite Disagree
## 35                                   Strongly Agree
## 36                                     Partly Agree
## 37                                             <NA>
## 38                                     Partly Agree
## 39                                     Partly Agree
## 40                                     Partly Agree
## 41                                             <NA>
## 42                                     Partly Agree
## 43                                   Quite Disagree
## 44                                   Strongly Agree
## 45                                     Partly Agree
## 46                                   Strongly Agree
## 47                                   Strongly Agree
## 48                                     Partly Agree
## 49                                   Quite Disagree
## 50                                     Partly Agree
## 51                                     Partly Agree
## 52                                     Partly Agree
## 53                                     Partly Agree
## 54                                     Partly Agree
## 55                                   Strongly Agree
## 56                                     Partly Agree
## 57                                     Partly Agree
## 58                                     Partly Agree
## 59                                     Partly Agree
## 60                                     Partly Agree
## 61                                     Partly Agree
## 62                                     Partly Agree
## 63                                     Partly Agree
## 64                                     Partly Agree
## 65                                     Partly Agree
## 66                                     Partly Agree
## 67                                     Partly Agree
## 68                                     Partly Agree
## 69                                     Partly Agree
## 70                                   Strongly Agree
## 71                                     Partly Agree
## 72                                     Partly Agree
## 73                                     Partly Agree
## 74                                     Partly Agree
## 75                                     Partly Agree
## 76                                   Strongly Agree
## 77                                     Partly Agree
## 78                                     Partly Agree
## 79                                     Partly Agree
## 80                                     Partly Agree
## 81                                     Partly Agree
## 82                                     Partly Agree
## 83                                     Partly Agree
## 84                                   Strongly Agree
## 85                                     Partly Agree
## 86                                     Partly Agree
## 87                                     Partly Agree
## 88                                     Partly Agree
## 89                                     Partly Agree
## 90                                   Quite Disagree
## 91                                   Quite Disagree
## 92                                   Quite Disagree
## 93                                     Partly Agree
## 94                                   Strongly Agree
## 95                                     Partly Agree
## 96                                     Partly Agree
## 97                                     Partly Agree
## 98                                     Partly Agree
## 99                                     Partly Agree
## 100                                    Partly Agree
## 101                                  Strongly Agree
## 102                                  Strongly Agree
## 103                                    Partly Agree
## 104                                  Quite Disagree
## 105                                  Quite Disagree
## 106                                    Partly Agree
## 107                                  Strongly Agree
## 108                                  Quite Disagree
## 109                                    Partly Agree
## 110                                  Strongly Agree
## 111                                  Strongly Agree
## 112                                  Quite Disagree
## 113                                  Strongly Agree
## 114                                    Partly Agree
## 115                                  Strongly Agree
## 116                                  Quite Disagree
## 117                                    Partly Agree
## 118                                  Quite Disagree
## 119                                      Don't Know
## 120                                    Partly Agree
## 121                               Strongly Disagree
## 122                                    Partly Agree
## 123                                  Quite Disagree
## 124                                  Quite Disagree
## 125                                    Partly Agree
## 126                                  Quite Disagree
## 127                                  Strongly Agree
## 128                                    Partly Agree
## 129                                  Quite Disagree
## 130                                    Partly Agree
## 131                                  Strongly Agree
## 132                                  Quite Disagree
## 133                                    Partly Agree
## 134                                  Quite Disagree
## 135                                    Partly Agree
## 136                                      Don't Know
## 137                               Strongly Disagree
## 138                                  Quite Disagree
## 139                                    Partly Agree
## 140                                    Partly Agree
## 141                                  Quite Disagree
## 142                                    Partly Agree
## 143                                  Strongly Agree
## 144                                  Quite Disagree
## 145                                    Partly Agree
## 146                                      Don't Know
## 147                                  Quite Disagree
## 148                                  Strongly Agree
## 149                                  Quite Disagree
## 150                                  Strongly Agree
## 151                                    Partly Agree
## 152                                  Strongly Agree
## 153                                  Strongly Agree
## 154                                  Strongly Agree
## 155                                  Strongly Agree
## 156                                    Partly Agree
## 157                                  Strongly Agree
## 158                                  Strongly Agree
## 159                                  Strongly Agree
## 160                                  Strongly Agree
## 161                                  Strongly Agree
## 162                                  Strongly Agree
## 163                                  Strongly Agree
## 164                                  Strongly Agree
## 165                                  Strongly Agree
## 166                                  Strongly Agree
## 167                                  Strongly Agree
## 168                                  Strongly Agree
## 169                                  Strongly Agree
## 170                                  Strongly Agree
## 171                                      Don't Know
## 172                                  Strongly Agree
## 173                                      Don't Know
## 174                                  Strongly Agree
## 175                                  Strongly Agree
## 176                                  Strongly Agree
## 177                                  Strongly Agree
## 178                                    Partly Agree
## 179                                  Strongly Agree
## 180                                  Strongly Agree
## 181                                  Strongly Agree
## 182                                  Strongly Agree
## 183                                      Don't Know
## 184                                      Don't Know
## 185                                  Strongly Agree
## 186                                  Strongly Agree
## 187                                  Strongly Agree
## 188                                  Strongly Agree
## 189                                  Strongly Agree
## 190                                  Strongly Agree
## 191                                  Strongly Agree
## 192                                      Don't Know
## 193                                  Strongly Agree
## 194                                      Don't Know
## 195                                  Strongly Agree
## 196                                  Strongly Agree
## 197                                  Strongly Agree
## 198                                  Strongly Agree
## 199                                  Quite Disagree
## 200                                  Strongly Agree
## 201                                  Strongly Agree
## 202                                  Quite Disagree
## 203                                  Strongly Agree
## 204                                    Partly Agree
## 205                                    Partly Agree
## 206                               Strongly Disagree
## 207                                  Strongly Agree
## 208                                    Partly Agree
## 209                                  Quite Disagree
## 210                                  Strongly Agree
## 211                                    Partly Agree
## 212                                    Partly Agree
## 213                                    Partly Agree
## 214                                    Partly Agree
## 215                                    Partly Agree
## 216                                    Partly Agree
## 217                               Strongly Disagree
## 218                                  Quite Disagree
## 219                                    Partly Agree
## 220                                    Partly Agree
## 221                                    Partly Agree
## 222                                    Partly Agree
## 223                                  Quite Disagree
## 224                                  Strongly Agree
## 225                                  Strongly Agree
## 226                                    Partly Agree
## 227                                    Partly Agree
## 228                                    Partly Agree
## 229                                    Partly Agree
## 230                                  Quite Disagree
## 231                                    Partly Agree
## 232                               Strongly Disagree
## 233                                    Partly Agree
## 234                                  Quite Disagree
## 235                                    Partly Agree
## 236                               Strongly Disagree
## 237                                    Partly Agree
## 238                                  Quite Disagree
## 239                                    Partly Agree
## 240                                    Partly Agree
## 241                                    Partly Agree
## 242                                    Partly Agree
## 243                                    Partly Agree
## 244                                    Partly Agree
## 245                               Strongly Disagree
## 246                                    Partly Agree
## 247                                    Partly Agree
## 248                                  Quite Disagree
## 249                                    Partly Agree
## 250                                  Quite Disagree
## 251                                    Partly Agree
## 252                                  Quite Disagree
## 253                                      Don't Know
## 254                                    Partly Agree
## 255                                    Partly Agree
## 256                                  Quite Disagree
## 257                                    Partly Agree
## 258                                    Partly Agree
## 259                                      Don't Know
## 260                                    Partly Agree
## 261                                    Partly Agree
## 262                                    Partly Agree
## 263                                    Partly Agree
## 264                                    Partly Agree
## 265                                      Don't Know
## 266                                    Partly Agree
## 267                                    Partly Agree
## 268                                    Partly Agree
## 269                                            <NA>
## 270                                  Quite Disagree
## 271                                    Partly Agree
## 272                                    Partly Agree
## 273                                  Quite Disagree
## 274                                  Quite Disagree
## 275                                  Quite Disagree
## 276                                    Partly Agree
## 277                                      Don't Know
## 278                                    Partly Agree
## 279                                    Partly Agree
## 280                                  Quite Disagree
## 281                                    Partly Agree
## 282                                    Partly Agree
## 283                                    Partly Agree
## 284                                  Quite Disagree
## 285                                    Partly Agree
## 286                                  Quite Disagree
## 287                                    Partly Agree
## 288                                    Partly Agree
## 289                                      Don't Know
## 290                                  Quite Disagree
## 291                                    Partly Agree
## 292                                      Don't Know
## 293                                  Quite Disagree
## 294                                  Quite Disagree
## 295                                  Quite Disagree
## 296                                  Strongly Agree
## 297                                    Partly Agree
## 298                                  Quite Disagree
## 299                                    Partly Agree
## 300                                  Quite Disagree
## 302                                  Quite Disagree
## 303                               Strongly Disagree
## 304                                  Strongly Agree
## 305                                  Strongly Agree
## 306                                  Strongly Agree
## 307                                            <NA>
## 308                                    Partly Agree
## 309                                    Partly Agree
## 310                                  Quite Disagree
## 311                                  Quite Disagree
## 312                                    Partly Agree
## 313                                    Partly Agree
## 314                                    Partly Agree
## 315                                  Quite Disagree
## 316                                    Partly Agree
## 317                                  Strongly Agree
## 318                                  Strongly Agree
## 319                                    Partly Agree
## 320                                    Partly Agree
## 321                                    Partly Agree
## 322                                    Partly Agree
## 323                                    Partly Agree
## 324                                  Quite Disagree
## 325                                  Quite Disagree
## 326                                  Quite Disagree
## 327                                  Quite Disagree
## 328                                  Strongly Agree
## 329                                  Strongly Agree
## 330                                  Quite Disagree
## 331                                    Partly Agree
## 332                                    Partly Agree
## 333                                      Don't Know
## 334                                      Don't Know
## 335                                    Partly Agree
## 336                                  Strongly Agree
## 337                                  Quite Disagree
## 338                                  Quite Disagree
## 339                                  Quite Disagree
## 340                                  Strongly Agree
## 341                                    Partly Agree
## 342                                    Partly Agree
## 343                                    Partly Agree
## 344                                    Partly Agree
## 345                                  Strongly Agree
## 346                                    Partly Agree
## 347                                  Strongly Agree
## 348                                    Partly Agree
## 349                                    Partly Agree
## 350                                  Strongly Agree
## 351                                  Quite Disagree
## 352                                    Partly Agree
## 353                                    Partly Agree
## 354                                    Partly Agree
## 355                                  Quite Disagree
## 356                                    Partly Agree
## 357                                    Partly Agree
## 358                                    Partly Agree
## 359                                    Partly Agree
## 360                                    Partly Agree
## 361                                    Partly Agree
## 362                                    Partly Agree
## 363                                    Partly Agree
## 364                                    Partly Agree
## 365                                    Partly Agree
## 366                                    Partly Agree
## 367                                    Partly Agree
## 368                                    Partly Agree
## 369                                    Partly Agree
## 370                                    Partly Agree
## 371                                    Partly Agree
## 372                                    Partly Agree
## 373                                  Quite Disagree
## 374                                    Partly Agree
## 375                                    Partly Agree
## 376                                    Partly Agree
## 377                                  Quite Disagree
## 378                                    Partly Agree
## 379                                    Partly Agree
## 380                                    Partly Agree
## 381                                    Partly Agree
## 382                                    Partly Agree
## 383                                    Partly Agree
## 384                                    Partly Agree
## 385                                    Partly Agree
## 386                                    Partly Agree
## 387                                    Partly Agree
## 388                                    Partly Agree
## 389                                    Partly Agree
## 390                                    Partly Agree
## 391                                    Partly Agree
## 392                                    Partly Agree
## 393                                    Partly Agree
## 394                                    Partly Agree
## 395                                    Partly Agree
## 396                                    Partly Agree
## 397                                    Partly Agree
## 398                                  Quite Disagree
## 399                                    Partly Agree
## 400                                    Partly Agree
## 401                                    Partly Agree
## 402                                      Don't Know
## 403                                    Partly Agree
## 404                                  Quite Disagree
## 405                                    Partly Agree
## 406                                    Partly Agree
## 407                                      Don't Know
## 408                                  Quite Disagree
## 409                                    Partly Agree
## 410                                    Partly Agree
## 411                                    Partly Agree
## 412                                  Quite Disagree
## 413                                  Quite Disagree
## 414                                    Partly Agree
## 415                                      Don't Know
## 416                                  Quite Disagree
## 417                                            <NA>
## 418                                      Don't Know
## 419                                  Quite Disagree
## 420                                    Partly Agree
## 421                                  Quite Disagree
## 422                                      Don't Know
## 423                                  Strongly Agree
## 424                                  Quite Disagree
## 425                                    Partly Agree
## 426                                  Quite Disagree
## 427                                  Quite Disagree
## 428                                      Don't Know
## 429                                    Partly Agree
## 430                                  Strongly Agree
## 431                                  Strongly Agree
## 432                                      Don't Know
## 433                                  Quite Disagree
## 434                                  Quite Disagree
## 435                                      Don't Know
## 436                                  Quite Disagree
## 437                                    Partly Agree
## 438                                    Partly Agree
## 439                                  Quite Disagree
## 440                                  Quite Disagree
## 441                                  Quite Disagree
## 442                                    Partly Agree
## 443                                  Quite Disagree
## 444                                    Partly Agree
## 445                                  Quite Disagree
## 446                                  Strongly Agree
## 447                                  Quite Disagree
## 448                                  Quite Disagree
## 449                                  Quite Disagree
## 450                                            <NA>
## 451                                  Strongly Agree
## 452                                  Quite Disagree
## 453                                    Partly Agree
## 454                                    Partly Agree
## 455                                  Strongly Agree
## 456                                  Strongly Agree
## 457                                    Partly Agree
## 458                                  Strongly Agree
## 459                                  Strongly Agree
## 460                                    Partly Agree
## 461                                      Don't Know
## 462                               Strongly Disagree
## 463                                  Strongly Agree
## 464                               Strongly Disagree
## 465                                  Quite Disagree
## 466                               Strongly Disagree
## 467                                    Partly Agree
## 468                                    Partly Agree
## 469                                  Strongly Agree
## 470                                  Strongly Agree
## 471                                    Partly Agree
## 472                                  Quite Disagree
## 473                                    Partly Agree
## 474                                  Strongly Agree
## 475                               Strongly Disagree
## 476                                  Strongly Agree
## 477                                  Strongly Agree
## 478                                  Quite Disagree
## 479                                  Strongly Agree
## 480                                  Strongly Agree
## 481                                    Partly Agree
## 482                                  Strongly Agree
## 483                                  Strongly Agree
## 484                                    Partly Agree
## 485                                    Partly Agree
## 486                                  Strongly Agree
## 487                                  Quite Disagree
## 488                                  Quite Disagree
## 489                                  Quite Disagree
## 490                                    Partly Agree
## 491                               Strongly Disagree
## 492                                  Quite Disagree
## 493                                    Partly Agree
## 494                                  Strongly Agree
## 495                               Strongly Disagree
## 496                                    Partly Agree
##      Civil.Servants..Discharge.their.duties.according.to.rule
## 1                                           Strongly Disagree
## 2                                                        <NA>
## 3                                              Quite Disagree
## 4                                           Strongly Disagree
## 5                                              Quite Disagree
## 6                                              Quite Disagree
## 7                                              Quite Disagree
## 8                                                Partly Agree
## 9                                              Quite Disagree
## 10                                               Partly Agree
## 11                                             Quite Disagree
## 12                                             Quite Disagree
## 13                                             Quite Disagree
## 14                                             Quite Disagree
## 15                                               Partly Agree
## 16                                             Quite Disagree
## 17                                               Partly Agree
## 18                                               Partly Agree
## 19                                             Strongly Agree
## 20                                             Quite Disagree
## 21                                             Strongly Agree
## 22                                             Quite Disagree
## 23                                                       <NA>
## 24                                             Quite Disagree
## 25                                             Quite Disagree
## 26                                             Quite Disagree
## 27                                             Quite Disagree
## 28                                               Partly Agree
## 29                                                       <NA>
## 30                                             Quite Disagree
## 31                                             Quite Disagree
## 32                                                 Don't Know
## 33                                               Partly Agree
## 34                                             Quite Disagree
## 35                                             Quite Disagree
## 36                                               Partly Agree
## 37                                             Quite Disagree
## 38                                             Quite Disagree
## 39                                               Partly Agree
## 40                                               Partly Agree
## 41                                             Quite Disagree
## 42                                             Quite Disagree
## 43                                             Quite Disagree
## 44                                             Quite Disagree
## 45                                             Quite Disagree
## 46                                             Quite Disagree
## 47                                             Quite Disagree
## 48                                             Quite Disagree
## 49                                             Quite Disagree
## 50                                               Partly Agree
## 51                                               Partly Agree
## 52                                             Quite Disagree
## 53                                               Partly Agree
## 54                                             Quite Disagree
## 55                                               Partly Agree
## 56                                               Partly Agree
## 57                                               Partly Agree
## 58                                             Quite Disagree
## 59                                             Quite Disagree
## 60                                          Strongly Disagree
## 61                                             Quite Disagree
## 62                                             Quite Disagree
## 63                                             Quite Disagree
## 64                                             Quite Disagree
## 65                                             Quite Disagree
## 66                                             Quite Disagree
## 67                                             Quite Disagree
## 68                                             Quite Disagree
## 69                                             Quite Disagree
## 70                                             Quite Disagree
## 71                                             Quite Disagree
## 72                                             Quite Disagree
## 73                                             Quite Disagree
## 74                                             Quite Disagree
## 75                                             Quite Disagree
## 76                                             Quite Disagree
## 77                                             Quite Disagree
## 78                                             Quite Disagree
## 79                                             Quite Disagree
## 80                                             Quite Disagree
## 81                                             Quite Disagree
## 82                                             Quite Disagree
## 83                                             Quite Disagree
## 84                                             Quite Disagree
## 85                                               Partly Agree
## 86                                               Partly Agree
## 87                                             Quite Disagree
## 88                                             Quite Disagree
## 89                                             Quite Disagree
## 90                                             Quite Disagree
## 91                                               Partly Agree
## 92                                               Partly Agree
## 93                                               Partly Agree
## 94                                             Quite Disagree
## 95                                             Quite Disagree
## 96                                             Quite Disagree
## 97                                             Quite Disagree
## 98                                             Quite Disagree
## 99                                             Quite Disagree
## 100                                              Partly Agree
## 101                                              Partly Agree
## 102                                                Don't Know
## 103                                            Strongly Agree
## 104                                            Quite Disagree
## 105                                              Partly Agree
## 106                                              Partly Agree
## 107                                            Quite Disagree
## 108                                              Partly Agree
## 109                                            Quite Disagree
## 110                                              Partly Agree
## 111                                            Quite Disagree
## 112                                            Quite Disagree
## 113                                              Partly Agree
## 114                                            Strongly Agree
## 115                                            Strongly Agree
## 116                                            Strongly Agree
## 117                                            Quite Disagree
## 118                                         Strongly Disagree
## 119                                                Don't Know
## 120                                              Partly Agree
## 121                                            Quite Disagree
## 122                                            Strongly Agree
## 123                                              Partly Agree
## 124                                              Partly Agree
## 125                                              Partly Agree
## 126                                              Partly Agree
## 127                                              Partly Agree
## 128                                            Quite Disagree
## 129                                              Partly Agree
## 130                                            Quite Disagree
## 131                                            Quite Disagree
## 132                                              Partly Agree
## 133                                            Strongly Agree
## 134                                              Partly Agree
## 135                                              Partly Agree
## 136                                                Don't Know
## 137                                            Quite Disagree
## 138                                              Partly Agree
## 139                                            Strongly Agree
## 140                                            Quite Disagree
## 141                                              Partly Agree
## 142                                            Quite Disagree
## 143                                              Partly Agree
## 144                                              Partly Agree
## 145                                              Partly Agree
## 146                                                Don't Know
## 147                                            Quite Disagree
## 148                                              Partly Agree
## 149                                              Partly Agree
## 150                                            Strongly Agree
## 151                                              Partly Agree
## 152                                                Don't Know
## 153                                                Don't Know
## 154                                              Partly Agree
## 155                                                Don't Know
## 156                                              Partly Agree
## 157                                                Don't Know
## 158                                            Quite Disagree
## 159                                                Don't Know
## 160                                                Don't Know
## 161                                            Strongly Agree
## 162                                            Strongly Agree
## 163                                            Strongly Agree
## 164                                                Don't Know
## 165                                            Quite Disagree
## 166                                                Don't Know
## 167                                            Quite Disagree
## 168                                              Partly Agree
## 169                                                Don't Know
## 170                                                Don't Know
## 171                                                Don't Know
## 172                                                Don't Know
## 173                                                Don't Know
## 174                                                Don't Know
## 175                                                Don't Know
## 176                                            Strongly Agree
## 177                                                Don't Know
## 178                                              Partly Agree
## 179                                            Strongly Agree
## 180                                                Don't Know
## 181                                            Strongly Agree
## 182                                            Strongly Agree
## 183                                                Don't Know
## 184                                                Don't Know
## 185                                            Strongly Agree
## 186                                                Don't Know
## 187                                                Don't Know
## 188                                            Strongly Agree
## 189                                              Partly Agree
## 190                                              Partly Agree
## 191                                                Don't Know
## 192                                            Strongly Agree
## 193                                                Don't Know
## 194                                                Don't Know
## 195                                                Don't Know
## 196                                            Strongly Agree
## 197                                                Don't Know
## 198                                            Quite Disagree
## 199                                            Quite Disagree
## 200                                                Don't Know
## 201                                              Partly Agree
## 202                                            Quite Disagree
## 203                                            Quite Disagree
## 204                                            Quite Disagree
## 205                                              Partly Agree
## 206                                         Strongly Disagree
## 207                                            Quite Disagree
## 208                                            Quite Disagree
## 209                                              Partly Agree
## 210                                            Quite Disagree
## 211                                            Quite Disagree
## 212                                            Quite Disagree
## 213                                            Quite Disagree
## 214                                            Quite Disagree
## 215                                            Quite Disagree
## 216                                            Quite Disagree
## 217                                         Strongly Disagree
## 218                                              Partly Agree
## 219                                            Quite Disagree
## 220                                            Quite Disagree
## 221                                         Strongly Disagree
## 222                                            Quite Disagree
## 223                                              Partly Agree
## 224                                              Partly Agree
## 225                                            Quite Disagree
## 226                                            Strongly Agree
## 227                                            Strongly Agree
## 228                                            Quite Disagree
## 229                                            Strongly Agree
## 230                                            Strongly Agree
## 231                                            Quite Disagree
## 232                                         Strongly Disagree
## 233                                            Quite Disagree
## 234                                            Quite Disagree
## 235                                            Quite Disagree
## 236                                            Quite Disagree
## 237                                            Strongly Agree
## 238                                            Quite Disagree
## 239                                            Quite Disagree
## 240                                            Quite Disagree
## 241                                            Quite Disagree
## 242                                              Partly Agree
## 243                                            Quite Disagree
## 244                                            Quite Disagree
## 245                                              Partly Agree
## 246                                            Quite Disagree
## 247                                         Strongly Disagree
## 248                                         Strongly Disagree
## 249                                            Quite Disagree
## 250                                            Strongly Agree
## 251                                            Quite Disagree
## 252                                            Quite Disagree
## 253                                                Don't Know
## 254                                              Partly Agree
## 255                                            Quite Disagree
## 256                                            Quite Disagree
## 257                                              Partly Agree
## 258                                            Strongly Agree
## 259                                            Strongly Agree
## 260                                            Quite Disagree
## 261                                            Strongly Agree
## 262                                            Quite Disagree
## 263                                              Partly Agree
## 264                                              Partly Agree
## 265                                                Don't Know
## 266                                              Partly Agree
## 267                                              Partly Agree
## 268                                            Strongly Agree
## 269                                            Quite Disagree
## 270                                              Partly Agree
## 271                                              Partly Agree
## 272                                              Partly Agree
## 273                                              Partly Agree
## 274                                            Strongly Agree
## 275                                              Partly Agree
## 276                                            Quite Disagree
## 277                                              Partly Agree
## 278                                            Quite Disagree
## 279                                              Partly Agree
## 280                                            Quite Disagree
## 281                                              Partly Agree
## 282                                              Partly Agree
## 283                                              Partly Agree
## 284                                              Partly Agree
## 285                                              Partly Agree
## 286                                            Quite Disagree
## 287                                              Partly Agree
## 288                                              Partly Agree
## 289                                                Don't Know
## 290                                            Quite Disagree
## 291                                            Quite Disagree
## 292                                                Don't Know
## 293                                            Quite Disagree
## 294                                            Quite Disagree
## 295                                            Quite Disagree
## 296                                                Don't Know
## 297                                                Don't Know
## 298                                            Quite Disagree
## 299                                              Partly Agree
## 300                                              Partly Agree
## 302                                            Quite Disagree
## 303                                         Strongly Disagree
## 304                                            Quite Disagree
## 305                                         Strongly Disagree
## 306                                            Quite Disagree
## 307                                                      <NA>
## 308                                            Quite Disagree
## 309                                            Quite Disagree
## 310                                            Strongly Agree
## 311                                              Partly Agree
## 312                                              Partly Agree
## 313                                            Quite Disagree
## 314                                              Partly Agree
## 315                                            Quite Disagree
## 316                                              Partly Agree
## 317                                         Strongly Disagree
## 318                                            Quite Disagree
## 319                                            Quite Disagree
## 320                                            Quite Disagree
## 321                                            Quite Disagree
## 322                                            Quite Disagree
## 323                                            Quite Disagree
## 324                                            Quite Disagree
## 325                                            Quite Disagree
## 326                                            Quite Disagree
## 327                                            Quite Disagree
## 328                                            Quite Disagree
## 329                                            Quite Disagree
## 330                                              Partly Agree
## 331                                            Strongly Agree
## 332                                            Strongly Agree
## 333                                            Strongly Agree
## 334                                            Strongly Agree
## 335                                         Strongly Disagree
## 336                                            Quite Disagree
## 337                                              Partly Agree
## 338                                            Strongly Agree
## 339                                              Partly Agree
## 340                                              Partly Agree
## 341                                         Strongly Disagree
## 342                                            Quite Disagree
## 343                                            Quite Disagree
## 344                                              Partly Agree
## 345                                            Quite Disagree
## 346                                            Strongly Agree
## 347                                            Quite Disagree
## 348                                              Partly Agree
## 349                                              Partly Agree
## 350                                            Quite Disagree
## 351                                            Quite Disagree
## 352                                                Don't Know
## 353                                            Quite Disagree
## 354                                                Don't Know
## 355                                              Partly Agree
## 356                                                Don't Know
## 357                                            Quite Disagree
## 358                                            Quite Disagree
## 359                                            Quite Disagree
## 360                                            Quite Disagree
## 361                                            Quite Disagree
## 362                                            Quite Disagree
## 363                                            Quite Disagree
## 364                                            Quite Disagree
## 365                                              Partly Agree
## 366                                            Quite Disagree
## 367                                              Partly Agree
## 368                                            Quite Disagree
## 369                                            Quite Disagree
## 370                                            Quite Disagree
## 371                                            Quite Disagree
## 372                                            Quite Disagree
## 373                                              Partly Agree
## 374                                              Partly Agree
## 375                                            Quite Disagree
## 376                                              Partly Agree
## 377                                              Partly Agree
## 378                                              Partly Agree
## 379                                            Quite Disagree
## 380                                            Quite Disagree
## 381                                                Don't Know
## 382                                                Don't Know
## 383                                            Quite Disagree
## 384                                            Quite Disagree
## 385                                            Quite Disagree
## 386                                              Partly Agree
## 387                                            Quite Disagree
## 388                                                Don't Know
## 389                                                Don't Know
## 390                                            Quite Disagree
## 391                                            Quite Disagree
## 392                                            Quite Disagree
## 393                                                Don't Know
## 394                                                Don't Know
## 395                                            Quite Disagree
## 396                                              Partly Agree
## 397                                            Quite Disagree
## 398                                            Quite Disagree
## 399                                                Don't Know
## 400                                              Partly Agree
## 401                                                Don't Know
## 402                                                Don't Know
## 403                                              Partly Agree
## 404                                                Don't Know
## 405                                            Quite Disagree
## 406                                              Partly Agree
## 407                                              Partly Agree
## 408                                              Partly Agree
## 409                                              Partly Agree
## 410                                            Quite Disagree
## 411                                            Quite Disagree
## 412                                              Partly Agree
## 413                                            Strongly Agree
## 414                                            Quite Disagree
## 415                                                Don't Know
## 416                                              Partly Agree
## 417                                                      <NA>
## 418                                                Don't Know
## 419                                              Partly Agree
## 420                                              Partly Agree
## 421                                            Strongly Agree
## 422                                                Don't Know
## 423                                            Strongly Agree
## 424                                              Partly Agree
## 425                                              Partly Agree
## 426                                            Strongly Agree
## 427                                              Partly Agree
## 428                                                Don't Know
## 429                                              Partly Agree
## 430                                            Strongly Agree
## 431                                            Strongly Agree
## 432                                                Don't Know
## 433                                              Partly Agree
## 434                                              Partly Agree
## 435                                                Don't Know
## 436                                            Quite Disagree
## 437                                              Partly Agree
## 438                                              Partly Agree
## 439                                              Partly Agree
## 440                                            Strongly Agree
## 441                                            Strongly Agree
## 442                                              Partly Agree
## 443                                            Strongly Agree
## 444                                              Partly Agree
## 445                                            Strongly Agree
## 446                                            Quite Disagree
## 447                                            Strongly Agree
## 448                                            Quite Disagree
## 449                                              Partly Agree
## 450                                                      <NA>
## 451                                            Strongly Agree
## 452                                            Strongly Agree
## 453                                              Partly Agree
## 454                                            Quite Disagree
## 455                                            Quite Disagree
## 456                                            Quite Disagree
## 457                                            Quite Disagree
## 458                                            Quite Disagree
## 459                                         Strongly Disagree
## 460                                            Strongly Agree
## 461                                                Don't Know
## 462                                         Strongly Disagree
## 463                                         Strongly Disagree
## 464                                         Strongly Disagree
## 465                                            Quite Disagree
## 466                                         Strongly Disagree
## 467                                            Strongly Agree
## 468                                            Quite Disagree
## 469                                            Quite Disagree
## 470                                              Partly Agree
## 471                                            Quite Disagree
## 472                                              Partly Agree
## 473                                         Strongly Disagree
## 474                                                Don't Know
## 475                                            Quite Disagree
## 476                                         Strongly Disagree
## 477                                              Partly Agree
## 478                                            Quite Disagree
## 479                                                Don't Know
## 480                                         Strongly Disagree
## 481                                         Strongly Disagree
## 482                                         Strongly Disagree
## 483                                         Strongly Disagree
## 484                                         Strongly Disagree
## 485                                            Quite Disagree
## 486                                              Partly Agree
## 487                                              Partly Agree
## 488                                              Partly Agree
## 489                                              Partly Agree
## 490                                            Strongly Agree
## 491                                            Quite Disagree
## 492                                              Partly Agree
## 493                                            Strongly Agree
## 494                                            Quite Disagree
## 495                                            Strongly Agree
## 496                                              Partly Agree
##      Civil.Servants..Work.transparently
## 1                        Quite Disagree
## 2                        Quite Disagree
## 3                        Quite Disagree
## 4                     Strongly Disagree
## 5                        Quite Disagree
## 6                        Quite Disagree
## 7                        Quite Disagree
## 8                        Quite Disagree
## 9                        Quite Disagree
## 10                       Strongly Agree
## 11                       Quite Disagree
## 12                       Quite Disagree
## 13                       Quite Disagree
## 14                                 <NA>
## 15                       Quite Disagree
## 16                       Quite Disagree
## 17                         Partly Agree
## 18                         Partly Agree
## 19                       Strongly Agree
## 20                       Quite Disagree
## 21                       Strongly Agree
## 22                    Strongly Disagree
## 23                    Strongly Disagree
## 24                       Quite Disagree
## 25                         Partly Agree
## 26                       Quite Disagree
## 27                       Quite Disagree
## 28                         Partly Agree
## 29                       Quite Disagree
## 30                                 <NA>
## 31                       Quite Disagree
## 32                           Don't Know
## 33                       Quite Disagree
## 34                       Quite Disagree
## 35                       Quite Disagree
## 36                       Quite Disagree
## 37                       Quite Disagree
## 38                       Quite Disagree
## 39                       Quite Disagree
## 40                       Quite Disagree
## 41                       Quite Disagree
## 42                       Quite Disagree
## 43                       Quite Disagree
## 44                       Quite Disagree
## 45                       Quite Disagree
## 46                       Quite Disagree
## 47                       Quite Disagree
## 48                    Strongly Disagree
## 49                       Quite Disagree
## 50                       Quite Disagree
## 51                           Don't Know
## 52                       Quite Disagree
## 53                       Quite Disagree
## 54                         Partly Agree
## 55                       Quite Disagree
## 56                       Quite Disagree
## 57                       Quite Disagree
## 58                       Quite Disagree
## 59                       Quite Disagree
## 60                    Strongly Disagree
## 61                       Quite Disagree
## 62                       Quite Disagree
## 63                       Quite Disagree
## 64                       Quite Disagree
## 65                       Quite Disagree
## 66                       Quite Disagree
## 67                       Quite Disagree
## 68                       Quite Disagree
## 69                       Quite Disagree
## 70                       Quite Disagree
## 71                         Partly Agree
## 72                       Quite Disagree
## 73                       Quite Disagree
## 74                       Quite Disagree
## 75                       Quite Disagree
## 76                       Quite Disagree
## 77                       Quite Disagree
## 78                       Quite Disagree
## 79                       Quite Disagree
## 80                       Quite Disagree
## 81                       Quite Disagree
## 82                       Quite Disagree
## 83                       Quite Disagree
## 84                       Quite Disagree
## 85                         Partly Agree
## 86                         Partly Agree
## 87                       Quite Disagree
## 88                       Quite Disagree
## 89                       Quite Disagree
## 90                       Quite Disagree
## 91                         Partly Agree
## 92                         Partly Agree
## 93                         Partly Agree
## 94                       Quite Disagree
## 95                       Quite Disagree
## 96                       Quite Disagree
## 97                       Quite Disagree
## 98                       Quite Disagree
## 99                       Quite Disagree
## 100                      Quite Disagree
## 101                        Partly Agree
## 102                          Don't Know
## 103                        Partly Agree
## 104                        Partly Agree
## 105                   Strongly Disagree
## 106                      Quite Disagree
## 107                      Quite Disagree
## 108                        Partly Agree
## 109                      Quite Disagree
## 110                        Partly Agree
## 111                   Strongly Disagree
## 112                      Strongly Agree
## 113                      Strongly Agree
## 114                        Partly Agree
## 115                      Strongly Agree
## 116                      Strongly Agree
## 117                        Partly Agree
## 118                   Strongly Disagree
## 119                          Don't Know
## 120                        Partly Agree
## 121                      Strongly Agree
## 122                      Quite Disagree
## 123                        Partly Agree
## 124                        Partly Agree
## 125                        Partly Agree
## 126                      Quite Disagree
## 127                      Quite Disagree
## 128                        Partly Agree
## 129                      Quite Disagree
## 130                      Strongly Agree
## 131                        Partly Agree
## 132                      Quite Disagree
## 133                        Partly Agree
## 134                      Quite Disagree
## 135                      Strongly Agree
## 136                          Don't Know
## 137                        Partly Agree
## 138                      Quite Disagree
## 139                      Strongly Agree
## 140                        Partly Agree
## 141                      Quite Disagree
## 142                        Partly Agree
## 143                      Strongly Agree
## 144                      Quite Disagree
## 145                      Strongly Agree
## 146                          Don't Know
## 147                        Partly Agree
## 148                      Strongly Agree
## 149                        Partly Agree
## 150                      Strongly Agree
## 151                      Quite Disagree
## 152                        Partly Agree
## 153                          Don't Know
## 154                      Strongly Agree
## 155                        Partly Agree
## 156                      Quite Disagree
## 157                          Don't Know
## 158                      Quite Disagree
## 159                          Don't Know
## 160                        Partly Agree
## 161                      Strongly Agree
## 162                        Partly Agree
## 163                        Partly Agree
## 164                        Partly Agree
## 165                        Partly Agree
## 166                        Partly Agree
## 167                      Quite Disagree
## 168                        Partly Agree
## 169                      Strongly Agree
## 170                          Don't Know
## 171                        Partly Agree
## 172                      Strongly Agree
## 173                      Quite Disagree
## 174                      Strongly Agree
## 175                          Don't Know
## 176                      Strongly Agree
## 177                          Don't Know
## 178                        Partly Agree
## 179                      Strongly Agree
## 180                          Don't Know
## 181                        Partly Agree
## 182                      Strongly Agree
## 183                          Don't Know
## 184                          Don't Know
## 185                        Partly Agree
## 186                          Don't Know
## 187                        Partly Agree
## 188                        Partly Agree
## 189                      Strongly Agree
## 190                      Strongly Agree
## 191                          Don't Know
## 192                          Don't Know
## 193                          Don't Know
## 194                          Don't Know
## 195                      Strongly Agree
## 196                      Quite Disagree
## 197                      Quite Disagree
## 198                      Strongly Agree
## 199                        Partly Agree
## 200                        Partly Agree
## 201                        Partly Agree
## 202                   Strongly Disagree
## 203                        Partly Agree
## 204                   Strongly Disagree
## 205                      Strongly Agree
## 206                      Quite Disagree
## 207                      Quite Disagree
## 208                        Partly Agree
## 209                   Strongly Disagree
## 210                        Partly Agree
## 211                      Quite Disagree
## 212                      Quite Disagree
## 213                      Quite Disagree
## 214                      Quite Disagree
## 215                      Quite Disagree
## 216                      Quite Disagree
## 217                      Quite Disagree
## 218                      Strongly Agree
## 219                   Strongly Disagree
## 220                      Quite Disagree
## 221                        Partly Agree
## 222                      Quite Disagree
## 223                      Strongly Agree
## 224                   Strongly Disagree
## 225                        Partly Agree
## 226                        Partly Agree
## 227                      Quite Disagree
## 228                      Quite Disagree
## 229                        Partly Agree
## 230                      Strongly Agree
## 231                        Partly Agree
## 232                      Quite Disagree
## 233                      Quite Disagree
## 234                      Quite Disagree
## 235                      Quite Disagree
## 236                        Partly Agree
## 237                        Partly Agree
## 238                        Partly Agree
## 239                      Quite Disagree
## 240                      Quite Disagree
## 241                      Quite Disagree
## 242                      Quite Disagree
## 243                      Quite Disagree
## 244                      Quite Disagree
## 245                      Quite Disagree
## 246                      Quite Disagree
## 247                      Quite Disagree
## 248                        Partly Agree
## 249                        Partly Agree
## 250                        Partly Agree
## 251                        Partly Agree
## 252                      Quite Disagree
## 253                          Don't Know
## 254                        Partly Agree
## 255                        Partly Agree
## 256                      Quite Disagree
## 257                        Partly Agree
## 258                        Partly Agree
## 259                      Strongly Agree
## 260                        Partly Agree
## 261                        Partly Agree
## 262                        Partly Agree
## 263                      Strongly Agree
## 264                        Partly Agree
## 265                          Don't Know
## 266                        Partly Agree
## 267                        Partly Agree
## 268                      Strongly Agree
## 269                        Partly Agree
## 270                      Strongly Agree
## 271                        Partly Agree
## 272                        Partly Agree
## 273                        Partly Agree
## 274                        Partly Agree
## 275                      Quite Disagree
## 276                        Partly Agree
## 277                          Don't Know
## 278                        Partly Agree
## 279                      Quite Disagree
## 280                      Quite Disagree
## 281                        Partly Agree
## 282                        Partly Agree
## 283                        Partly Agree
## 284                      Quite Disagree
## 285                        Partly Agree
## 286                      Quite Disagree
## 287                        Partly Agree
## 288                        Partly Agree
## 289                          Don't Know
## 290                      Quite Disagree
## 291                      Quite Disagree
## 292                          Don't Know
## 293                      Quite Disagree
## 294                      Quite Disagree
## 295                      Quite Disagree
## 296                          Don't Know
## 297                          Don't Know
## 298                      Quite Disagree
## 299                        Partly Agree
## 300                        Partly Agree
## 302                      Quite Disagree
## 303                   Strongly Disagree
## 304                      Strongly Agree
## 305                   Strongly Disagree
## 306                      Quite Disagree
## 307                                <NA>
## 308                      Quite Disagree
## 309                      Quite Disagree
## 310                      Quite Disagree
## 311                        Partly Agree
## 312                      Quite Disagree
## 313                      Quite Disagree
## 314                        Partly Agree
## 315                      Quite Disagree
## 316                        Partly Agree
## 317                   Strongly Disagree
## 318                      Quite Disagree
## 319                      Quite Disagree
## 320                      Quite Disagree
## 321                        Partly Agree
## 322                      Quite Disagree
## 323                      Quite Disagree
## 324                      Quite Disagree
## 325                      Quite Disagree
## 326                      Quite Disagree
## 327                      Quite Disagree
## 328                      Quite Disagree
## 329                      Strongly Agree
## 330                      Quite Disagree
## 331                          Don't Know
## 332                          Don't Know
## 333                        Partly Agree
## 334                        Partly Agree
## 335                        Partly Agree
## 336                      Quite Disagree
## 337                      Quite Disagree
## 338                      Quite Disagree
## 339                        Partly Agree
## 340                      Quite Disagree
## 341                        Partly Agree
## 342                      Quite Disagree
## 343                      Quite Disagree
## 344                      Quite Disagree
## 345                      Quite Disagree
## 346                      Quite Disagree
## 347                      Quite Disagree
## 348                        Partly Agree
## 349                        Partly Agree
## 350                      Quite Disagree
## 351                      Quite Disagree
## 352                          Don't Know
## 353                      Quite Disagree
## 354                          Don't Know
## 355                        Partly Agree
## 356                          Don't Know
## 357                      Quite Disagree
## 358                      Quite Disagree
## 359                      Quite Disagree
## 360                      Quite Disagree
## 361                      Quite Disagree
## 362                      Quite Disagree
## 363                      Quite Disagree
## 364                      Quite Disagree
## 365                        Partly Agree
## 366                      Quite Disagree
## 367                      Quite Disagree
## 368                      Quite Disagree
## 369                      Quite Disagree
## 370                      Quite Disagree
## 371                      Quite Disagree
## 372                      Quite Disagree
## 373                        Partly Agree
## 374                        Partly Agree
## 375                      Quite Disagree
## 376                      Quite Disagree
## 377                      Quite Disagree
## 378                        Partly Agree
## 379                        Partly Agree
## 380                      Quite Disagree
## 381                          Don't Know
## 382                          Don't Know
## 383                      Quite Disagree
## 384                      Quite Disagree
## 385                      Quite Disagree
## 386                      Quite Disagree
## 387                      Quite Disagree
## 388                          Don't Know
## 389                      Quite Disagree
## 390                      Quite Disagree
## 391                      Quite Disagree
## 392                      Quite Disagree
## 393                          Don't Know
## 394                          Don't Know
## 395                      Quite Disagree
## 396                        Partly Agree
## 397                      Quite Disagree
## 398                      Quite Disagree
## 399                          Don't Know
## 400                      Quite Disagree
## 401                          Don't Know
## 402                          Don't Know
## 403                      Quite Disagree
## 404                          Don't Know
## 405                      Quite Disagree
## 406                      Quite Disagree
## 407                          Don't Know
## 408                        Partly Agree
## 409                        Partly Agree
## 410                      Quite Disagree
## 411                      Quite Disagree
## 412                        Partly Agree
## 413                      Strongly Agree
## 414                        Partly Agree
## 415                          Don't Know
## 416                        Partly Agree
## 417                                <NA>
## 418                          Don't Know
## 419                        Partly Agree
## 420                        Partly Agree
## 421                      Strongly Agree
## 422                          Don't Know
## 423                      Strongly Agree
## 424                        Partly Agree
## 425                        Partly Agree
## 426                      Strongly Agree
## 427                        Partly Agree
## 428                          Don't Know
## 429                        Partly Agree
## 430                      Strongly Agree
## 431                      Strongly Agree
## 432                          Don't Know
## 433                        Partly Agree
## 434                        Partly Agree
## 435                          Don't Know
## 436                      Quite Disagree
## 437                        Partly Agree
## 438                        Partly Agree
## 439                        Partly Agree
## 440                      Strongly Agree
## 441                      Strongly Agree
## 442                        Partly Agree
## 443                      Strongly Agree
## 444                        Partly Agree
## 445                      Strongly Agree
## 446                      Strongly Agree
## 447                      Strongly Agree
## 448                        Partly Agree
## 449                        Partly Agree
## 450                                <NA>
## 451                      Strongly Agree
## 452                        Partly Agree
## 453                        Partly Agree
## 454                      Quite Disagree
## 455                   Strongly Disagree
## 456                      Quite Disagree
## 457                      Quite Disagree
## 458                   Strongly Disagree
## 459                   Strongly Disagree
## 460                      Strongly Agree
## 461                      Quite Disagree
## 462                                <NA>
## 463                      Strongly Agree
## 464                      Quite Disagree
## 465                   Strongly Disagree
## 466                   Strongly Disagree
## 467                        Partly Agree
## 468                      Quite Disagree
## 469                      Quite Disagree
## 470                      Strongly Agree
## 471                        Partly Agree
## 472                      Quite Disagree
## 473                   Strongly Disagree
## 474                   Strongly Disagree
## 475                      Quite Disagree
## 476                   Strongly Disagree
## 477                      Quite Disagree
## 478                      Quite Disagree
## 479                          Don't Know
## 480                   Strongly Disagree
## 481                   Strongly Disagree
## 482                   Strongly Disagree
## 483                   Strongly Disagree
## 484                   Strongly Disagree
## 485                      Quite Disagree
## 486                   Strongly Disagree
## 487                        Partly Agree
## 488                      Quite Disagree
## 489                          Don't Know
## 490                        Partly Agree
## 491                   Strongly Disagree
## 492                      Quite Disagree
## 493                      Strongly Agree
## 494                      Quite Disagree
## 495                   Strongly Disagree
## 496                        Partly Agree
##      Civil.Servants..Know.how.to.do.their.job
## 1                              Quite Disagree
## 2                              Quite Disagree
## 3                              Quite Disagree
## 4                           Strongly Disagree
## 5                                Partly Agree
## 6                                Partly Agree
## 7                                Partly Agree
## 8                                Partly Agree
## 9                                Partly Agree
## 10                               Partly Agree
## 11                             Quite Disagree
## 12                             Quite Disagree
## 13                             Quite Disagree
## 14                               Partly Agree
## 15                               Partly Agree
## 16                               Partly Agree
## 17                               Partly Agree
## 18                               Partly Agree
## 19                             Strongly Agree
## 20                               Partly Agree
## 21                               Partly Agree
## 22                             Quite Disagree
## 23                             Quite Disagree
## 24                               Partly Agree
## 25                             Quite Disagree
## 26                             Quite Disagree
## 27                               Partly Agree
## 28                               Partly Agree
## 29                             Quite Disagree
## 30                             Quite Disagree
## 31                               Partly Agree
## 32                                 Don't Know
## 33                               Partly Agree
## 34                             Quite Disagree
## 35                             Quite Disagree
## 36                             Quite Disagree
## 37                               Partly Agree
## 38                             Quite Disagree
## 39                             Quite Disagree
## 40                             Quite Disagree
## 41                             Quite Disagree
## 42                             Quite Disagree
## 43                             Quite Disagree
## 44                             Quite Disagree
## 45                             Quite Disagree
## 46                             Quite Disagree
## 47                               Partly Agree
## 48                          Strongly Disagree
## 49                               Partly Agree
## 50                               Partly Agree
## 51                                       <NA>
## 52                             Quite Disagree
## 53                             Quite Disagree
## 54                               Partly Agree
## 55                             Quite Disagree
## 56                               Partly Agree
## 57                               Partly Agree
## 58                               Partly Agree
## 59                             Quite Disagree
## 60                          Strongly Disagree
## 61                             Quite Disagree
## 62                             Quite Disagree
## 63                             Quite Disagree
## 64                             Quite Disagree
## 65                             Quite Disagree
## 66                             Quite Disagree
## 67                             Quite Disagree
## 68                             Quite Disagree
## 69                             Quite Disagree
## 70                             Quite Disagree
## 71                               Partly Agree
## 72                             Quite Disagree
## 73                             Quite Disagree
## 74                             Quite Disagree
## 75                             Quite Disagree
## 76                             Quite Disagree
## 77                             Quite Disagree
## 78                             Quite Disagree
## 79                             Quite Disagree
## 80                             Quite Disagree
## 81                             Quite Disagree
## 82                             Quite Disagree
## 83                             Quite Disagree
## 84                             Quite Disagree
## 85                               Partly Agree
## 86                               Partly Agree
## 87                             Quite Disagree
## 88                             Quite Disagree
## 89                             Quite Disagree
## 90                             Quite Disagree
## 91                               Partly Agree
## 92                               Partly Agree
## 93                               Partly Agree
## 94                             Quite Disagree
## 95                             Quite Disagree
## 96                             Quite Disagree
## 97                               Partly Agree
## 98                             Quite Disagree
## 99                             Quite Disagree
## 100                            Quite Disagree
## 101                            Strongly Agree
## 102                            Quite Disagree
## 103                              Partly Agree
## 104                              Partly Agree
## 105                         Strongly Disagree
## 106                            Quite Disagree
## 107                                      <NA>
## 108                            Quite Disagree
## 109                              Partly Agree
## 110                            Quite Disagree
## 111                            Strongly Agree
## 112                              Partly Agree
## 113                              Partly Agree
## 114                            Strongly Agree
## 115                            Strongly Agree
## 116                              Partly Agree
## 117                              Partly Agree
## 118                              Partly Agree
## 119                                Don't Know
## 120                              Partly Agree
## 121                              Partly Agree
## 122                              Partly Agree
## 123                              Partly Agree
## 124                            Quite Disagree
## 125                              Partly Agree
## 126                              Partly Agree
## 127                              Partly Agree
## 128                            Quite Disagree
## 129                              Partly Agree
## 130                            Quite Disagree
## 131                            Strongly Agree
## 132                              Partly Agree
## 133                            Quite Disagree
## 134                              Partly Agree
## 135                              Partly Agree
## 136                                      <NA>
## 137                            Quite Disagree
## 138                              Partly Agree
## 139                              Partly Agree
## 140                            Quite Disagree
## 141                              Partly Agree
## 142                            Quite Disagree
## 143                              Partly Agree
## 144                              Partly Agree
## 145                              Partly Agree
## 146                                Don't Know
## 147                              Partly Agree
## 148                              Partly Agree
## 149                            Strongly Agree
## 150                            Strongly Agree
## 151                              Partly Agree
## 152                              Partly Agree
## 153                              Partly Agree
## 154                              Partly Agree
## 155                              Partly Agree
## 156                              Partly Agree
## 157                                Don't Know
## 158                              Partly Agree
## 159                              Partly Agree
## 160                              Partly Agree
## 161                              Partly Agree
## 162                              Partly Agree
## 163                            Strongly Agree
## 164                              Partly Agree
## 165                            Quite Disagree
## 166                            Strongly Agree
## 167                              Partly Agree
## 168                              Partly Agree
## 169                            Strongly Agree
## 170                            Strongly Agree
## 171                                Don't Know
## 172                            Strongly Agree
## 173                            Strongly Agree
## 174                            Strongly Agree
## 175                                Don't Know
## 176                              Partly Agree
## 177                                Don't Know
## 178                              Partly Agree
## 179                            Strongly Agree
## 180                              Partly Agree
## 181                              Partly Agree
## 182                            Strongly Agree
## 183                                Don't Know
## 184                                Don't Know
## 185                                Don't Know
## 186                                Don't Know
## 187                            Strongly Agree
## 188                            Strongly Agree
## 189                              Partly Agree
## 190                              Partly Agree
## 191                                Don't Know
## 192                            Strongly Agree
## 193                              Partly Agree
## 194                                Don't Know
## 195                                Don't Know
## 196                            Quite Disagree
## 197                              Partly Agree
## 198                            Quite Disagree
## 199                              Partly Agree
## 200                              Partly Agree
## 201                         Strongly Disagree
## 202                              Partly Agree
## 203                              Partly Agree
## 204                            Quite Disagree
## 205                              Partly Agree
## 206                            Quite Disagree
## 207                            Strongly Agree
## 208                            Strongly Agree
## 209                            Quite Disagree
## 210                            Strongly Agree
## 211                         Strongly Disagree
## 212                         Strongly Disagree
## 213                            Quite Disagree
## 214                         Strongly Disagree
## 215                         Strongly Disagree
## 216                         Strongly Disagree
## 217                            Strongly Agree
## 218                              Partly Agree
## 219                            Quite Disagree
## 220                            Strongly Agree
## 221                            Quite Disagree
## 222                         Strongly Disagree
## 223                            Quite Disagree
## 224                              Partly Agree
## 225                              Partly Agree
## 226                            Strongly Agree
## 227                              Partly Agree
## 228                            Strongly Agree
## 229                            Strongly Agree
## 230                            Strongly Agree
## 231                            Quite Disagree
## 232                            Quite Disagree
## 233                            Quite Disagree
## 234                         Strongly Disagree
## 235                            Quite Disagree
## 236                              Partly Agree
## 237                            Quite Disagree
## 238                         Strongly Disagree
## 239                            Quite Disagree
## 240                            Quite Disagree
## 241                            Quite Disagree
## 242                            Quite Disagree
## 243                            Quite Disagree
## 244                            Quite Disagree
## 245                            Strongly Agree
## 246                         Strongly Disagree
## 247                              Partly Agree
## 248                            Quite Disagree
## 249                            Quite Disagree
## 250                            Quite Disagree
## 251                              Partly Agree
## 252                            Quite Disagree
## 253                                Don't Know
## 254                              Partly Agree
## 255                            Quite Disagree
## 256                              Partly Agree
## 257                              Partly Agree
## 258                              Partly Agree
## 259                            Strongly Agree
## 260                            Quite Disagree
## 261                              Partly Agree
## 262                            Strongly Agree
## 263                              Partly Agree
## 264                              Partly Agree
## 265                                Don't Know
## 266                              Partly Agree
## 267                              Partly Agree
## 268                            Strongly Agree
## 269                              Partly Agree
## 270                              Partly Agree
## 271                              Partly Agree
## 272                              Partly Agree
## 273                              Partly Agree
## 274                            Quite Disagree
## 275                              Partly Agree
## 276                            Quite Disagree
## 277                              Partly Agree
## 278                              Partly Agree
## 279                              Partly Agree
## 280                            Quite Disagree
## 281                            Quite Disagree
## 282                            Quite Disagree
## 283                              Partly Agree
## 284                              Partly Agree
## 285                              Partly Agree
## 286                            Quite Disagree
## 287                              Partly Agree
## 288                              Partly Agree
## 289                                Don't Know
## 290                            Quite Disagree
## 291                            Quite Disagree
## 292                                Don't Know
## 293                            Quite Disagree
## 294                            Quite Disagree
## 295                            Quite Disagree
## 296                            Quite Disagree
## 297                                Don't Know
## 298                            Quite Disagree
## 299                              Partly Agree
## 300                            Quite Disagree
## 302                         Strongly Disagree
## 303                            Quite Disagree
## 304                              Partly Agree
## 305                            Quite Disagree
## 306                            Quite Disagree
## 307                                      <NA>
## 308                              Partly Agree
## 309                            Quite Disagree
## 310                            Quite Disagree
## 311                              Partly Agree
## 312                              Partly Agree
## 313                            Quite Disagree
## 314                              Partly Agree
## 315                            Quite Disagree
## 316                              Partly Agree
## 317                            Quite Disagree
## 318                              Partly Agree
## 319                            Quite Disagree
## 320                              Partly Agree
## 321                            Quite Disagree
## 322                              Partly Agree
## 323                            Quite Disagree
## 324                            Quite Disagree
## 325                            Quite Disagree
## 326                            Quite Disagree
## 327                            Quite Disagree
## 328                            Quite Disagree
## 329                            Quite Disagree
## 330                                Don't Know
## 331                            Strongly Agree
## 332                            Strongly Agree
## 333                            Quite Disagree
## 334                            Quite Disagree
## 335                         Strongly Disagree
## 336                            Strongly Agree
## 337                              Partly Agree
## 338                            Quite Disagree
## 339                              Partly Agree
## 340                            Strongly Agree
## 341                            Quite Disagree
## 342                            Quite Disagree
## 343                              Partly Agree
## 344                            Quite Disagree
## 345                              Partly Agree
## 346                              Partly Agree
## 347                              Partly Agree
## 348                              Partly Agree
## 349                              Partly Agree
## 350                              Partly Agree
## 351                              Partly Agree
## 352                                Don't Know
## 353                            Quite Disagree
## 354                                Don't Know
## 355                              Partly Agree
## 356                                      <NA>
## 357                            Quite Disagree
## 358                              Partly Agree
## 359                            Quite Disagree
## 360                            Quite Disagree
## 361                              Partly Agree
## 362                            Quite Disagree
## 363                              Partly Agree
## 364                            Quite Disagree
## 365                            Quite Disagree
## 366                              Partly Agree
## 367                              Partly Agree
## 368                            Quite Disagree
## 369                            Quite Disagree
## 370                              Partly Agree
## 371                            Quite Disagree
## 372                            Quite Disagree
## 373                              Partly Agree
## 374                              Partly Agree
## 375                              Partly Agree
## 376                            Quite Disagree
## 377                              Partly Agree
## 378                              Partly Agree
## 379                                Don't Know
## 380                            Quite Disagree
## 381                                Don't Know
## 382                                Don't Know
## 383                              Partly Agree
## 384                              Partly Agree
## 385                              Partly Agree
## 386                              Partly Agree
## 387                              Partly Agree
## 388                                Don't Know
## 389                              Partly Agree
## 390                              Partly Agree
## 391                            Quite Disagree
## 392                                Don't Know
## 393                                Don't Know
## 394                                Don't Know
## 395                              Partly Agree
## 396                              Partly Agree
## 397                            Quite Disagree
## 398                              Partly Agree
## 399                                Don't Know
## 400                              Partly Agree
## 401                              Partly Agree
## 402                                Don't Know
## 403                              Partly Agree
## 404                                Don't Know
## 405                              Partly Agree
## 406                            Quite Disagree
## 407                                Don't Know
## 408                              Partly Agree
## 409                              Partly Agree
## 410                            Quite Disagree
## 411                              Partly Agree
## 412                              Partly Agree
## 413                            Strongly Agree
## 414                              Partly Agree
## 415                                Don't Know
## 416                              Partly Agree
## 417                                      <NA>
## 418                                Don't Know
## 419                              Partly Agree
## 420                              Partly Agree
## 421                            Strongly Agree
## 422                                Don't Know
## 423                            Strongly Agree
## 424                              Partly Agree
## 425                              Partly Agree
## 426                            Strongly Agree
## 427                              Partly Agree
## 428                                Don't Know
## 429                              Partly Agree
## 430                            Strongly Agree
## 431                            Strongly Agree
## 432                                Don't Know
## 433                              Partly Agree
## 434                              Partly Agree
## 435                                Don't Know
## 436                              Partly Agree
## 437                              Partly Agree
## 438                              Partly Agree
## 439                              Partly Agree
## 440                            Strongly Agree
## 441                            Strongly Agree
## 442                              Partly Agree
## 443                            Strongly Agree
## 444                              Partly Agree
## 445                            Strongly Agree
## 446                            Strongly Agree
## 447                            Strongly Agree
## 448                              Partly Agree
## 449                              Partly Agree
## 450                                      <NA>
## 451                            Strongly Agree
## 452                              Partly Agree
## 453                              Partly Agree
## 454                            Quite Disagree
## 455                            Quite Disagree
## 456                            Quite Disagree
## 457                                Don't Know
## 458                         Strongly Disagree
## 459                            Quite Disagree
## 460                              Partly Agree
## 461                            Quite Disagree
## 462                              Partly Agree
## 463                         Strongly Disagree
## 464                            Quite Disagree
## 465                            Quite Disagree
## 466                         Strongly Disagree
## 467                            Strongly Agree
## 468                            Quite Disagree
## 469                            Quite Disagree
## 470                                Don't Know
## 471                            Quite Disagree
## 472                            Quite Disagree
## 473                         Strongly Disagree
## 474                         Strongly Disagree
## 475                            Quite Disagree
## 476                         Strongly Disagree
## 477                            Quite Disagree
## 478                            Quite Disagree
## 479                                Don't Know
## 480                         Strongly Disagree
## 481                         Strongly Disagree
## 482                         Strongly Disagree
## 483                         Strongly Disagree
## 484                         Strongly Disagree
## 485                            Quite Disagree
## 486                            Quite Disagree
## 487                              Partly Agree
## 488                            Quite Disagree
## 489                                Don't Know
## 490                            Strongly Agree
## 491                            Quite Disagree
## 492                              Partly Agree
## 493                         Strongly Disagree
## 494                              Partly Agree
## 495                            Strongly Agree
## 496                              Partly Agree
##      Civil.Servants..Honest.and.always.tell.the.truth
## 1                                      Quite Disagree
## 2                                      Quite Disagree
## 3                                      Quite Disagree
## 4                                   Strongly Disagree
## 5                                      Quite Disagree
## 6                                      Quite Disagree
## 7                                   Strongly Disagree
## 8                                      Quite Disagree
## 9                                      Quite Disagree
## 10                                     Strongly Agree
## 11                                     Strongly Agree
## 12                                  Strongly Disagree
## 13                                     Quite Disagree
## 14                                     Strongly Agree
## 15                                     Quite Disagree
## 16                                     Quite Disagree
## 17                                     Quite Disagree
## 18                                     Quite Disagree
## 19                                       Partly Agree
## 20                                       Partly Agree
## 21                                     Strongly Agree
## 22                                  Strongly Disagree
## 23                                       Partly Agree
## 24                                       Partly Agree
## 25                                     Quite Disagree
## 26                                  Strongly Disagree
## 27                                     Quite Disagree
## 28                                     Quite Disagree
## 29                                     Quite Disagree
## 30                                     Quite Disagree
## 31                                     Quite Disagree
## 32                                         Don't Know
## 33                                     Quite Disagree
## 34                                     Quite Disagree
## 35                                     Quite Disagree
## 36                                     Quite Disagree
## 37                                     Quite Disagree
## 38                                     Quite Disagree
## 39                                               <NA>
## 40                                     Quite Disagree
## 41                                     Quite Disagree
## 42                                     Quite Disagree
## 43                                     Quite Disagree
## 44                                  Strongly Disagree
## 45                                     Quite Disagree
## 46                                     Quite Disagree
## 47                                     Quite Disagree
## 48                                  Strongly Disagree
## 49                                     Quite Disagree
## 50                                     Quite Disagree
## 51                                       Partly Agree
## 52                                     Quite Disagree
## 53                                     Quite Disagree
## 54                                     Quite Disagree
## 55                                     Quite Disagree
## 56                                     Quite Disagree
## 57                                     Quite Disagree
## 58                                     Quite Disagree
## 59                                     Quite Disagree
## 60                                  Strongly Disagree
## 61                                     Quite Disagree
## 62                                       Partly Agree
## 63                                       Partly Agree
## 64                                       Partly Agree
## 65                                     Quite Disagree
## 66                                     Quite Disagree
## 67                                     Quite Disagree
## 68                                     Quite Disagree
## 69                                     Quite Disagree
## 70                                     Strongly Agree
## 71                                     Quite Disagree
## 72                                     Quite Disagree
## 73                                     Quite Disagree
## 74                                     Quite Disagree
## 75                                     Quite Disagree
## 76                                     Quite Disagree
## 77                                     Quite Disagree
## 78                                     Quite Disagree
## 79                                     Quite Disagree
## 80                                     Quite Disagree
## 81                                     Quite Disagree
## 82                                     Quite Disagree
## 83                                     Quite Disagree
## 84                                     Quite Disagree
## 85                                     Quite Disagree
## 86                                     Quite Disagree
## 87                                     Quite Disagree
## 88                                     Quite Disagree
## 89                                     Quite Disagree
## 90                                     Quite Disagree
## 91                                       Partly Agree
## 92                                       Partly Agree
## 93                                     Quite Disagree
## 94                                     Quite Disagree
## 95                                     Quite Disagree
## 96                                     Quite Disagree
## 97                                     Quite Disagree
## 98                                     Quite Disagree
## 99                                     Quite Disagree
## 100                                    Quite Disagree
## 101                                 Strongly Disagree
## 102                                 Strongly Disagree
## 103                                      Partly Agree
## 104                                              <NA>
## 105                                    Quite Disagree
## 106                                      Partly Agree
## 107                                      Partly Agree
## 108                                    Strongly Agree
## 109                                      Partly Agree
## 110                                    Quite Disagree
## 111                                    Strongly Agree
## 112                                    Strongly Agree
## 113                                    Strongly Agree
## 114                                      Partly Agree
## 115                                    Strongly Agree
## 116                                    Strongly Agree
## 117                                      Partly Agree
## 118                                      Partly Agree
## 119                                        Don't Know
## 120                                        Don't Know
## 121                                        Don't Know
## 122                                        Don't Know
## 123                                      Partly Agree
## 124                                      Partly Agree
## 125                                      Partly Agree
## 126                                        Don't Know
## 127                                    Strongly Agree
## 128                                      Partly Agree
## 129                                    Quite Disagree
## 130                                      Partly Agree
## 131                                      Partly Agree
## 132                                      Partly Agree
## 133                                    Strongly Agree
## 134                                      Partly Agree
## 135                                    Strongly Agree
## 136                                              <NA>
## 137                                    Strongly Agree
## 138                                        Don't Know
## 139                                    Strongly Agree
## 140                                        Don't Know
## 141                                      Partly Agree
## 142                                      Partly Agree
## 143                                        Don't Know
## 144                                      Partly Agree
## 145                                    Strongly Agree
## 146                                        Don't Know
## 147                                    Strongly Agree
## 148                                    Strongly Agree
## 149                                      Partly Agree
## 150                                    Strongly Agree
## 151                                 Strongly Disagree
## 152                                    Strongly Agree
## 153                                    Quite Disagree
## 154                                    Strongly Agree
## 155                                    Quite Disagree
## 156                                 Strongly Disagree
## 157                                    Quite Disagree
## 158                                    Quite Disagree
## 159                                    Quite Disagree
## 160                                    Strongly Agree
## 161                                      Partly Agree
## 162                                    Strongly Agree
## 163                                      Partly Agree
## 164                                    Quite Disagree
## 165                                    Quite Disagree
## 166                                      Partly Agree
## 167                                    Quite Disagree
## 168                                      Partly Agree
## 169                                      Partly Agree
## 170                                      Partly Agree
## 171                                      Partly Agree
## 172                                        Don't Know
## 173                                      Partly Agree
## 174                                      Partly Agree
## 175                                      Partly Agree
## 176                                    Strongly Agree
## 177                                        Don't Know
## 178                                      Partly Agree
## 179                                      Partly Agree
## 180                                    Strongly Agree
## 181                                    Strongly Agree
## 182                                    Strongly Agree
## 183                                        Don't Know
## 184                                        Don't Know
## 185                                    Strongly Agree
## 186                                    Strongly Agree
## 187                                      Partly Agree
## 188                                      Partly Agree
## 189                                      Partly Agree
## 190                                    Strongly Agree
## 191                                      Partly Agree
## 192                                    Strongly Agree
## 193                                    Quite Disagree
## 194                                        Don't Know
## 195                                        Don't Know
## 196                                      Partly Agree
## 197                                      Partly Agree
## 198                                    Quite Disagree
## 199                                      Partly Agree
## 200                                    Quite Disagree
## 201                                 Strongly Disagree
## 202                                      Partly Agree
## 203                                 Strongly Disagree
## 204                                 Strongly Disagree
## 205                                 Strongly Disagree
## 206                                 Strongly Disagree
## 207                                 Strongly Disagree
## 208                                      Partly Agree
## 209                                 Strongly Disagree
## 210                                    Quite Disagree
## 211                                 Strongly Disagree
## 212                                 Strongly Disagree
## 213                                 Strongly Disagree
## 214                                    Quite Disagree
## 215                                 Strongly Disagree
## 216                                 Strongly Disagree
## 217                                    Strongly Agree
## 218                                    Quite Disagree
## 219                                    Quite Disagree
## 220                                      Partly Agree
## 221                                    Strongly Agree
## 222                                      Partly Agree
## 223                                      Partly Agree
## 224                                    Quite Disagree
## 225                                      Partly Agree
## 226                                    Quite Disagree
## 227                                    Quite Disagree
## 228                                      Partly Agree
## 229                                    Strongly Agree
## 230                                    Strongly Agree
## 231                                 Strongly Disagree
## 232                                 Strongly Disagree
## 233                                 Strongly Disagree
## 234                                 Strongly Disagree
## 235                                 Strongly Disagree
## 236                                    Quite Disagree
## 237                                      Partly Agree
## 238                                    Strongly Agree
## 239                                 Strongly Disagree
## 240                                 Strongly Disagree
## 241                                 Strongly Disagree
## 242                                    Quite Disagree
## 243                                 Strongly Disagree
## 244                                 Strongly Disagree
## 245                                      Partly Agree
## 246                                 Strongly Disagree
## 247                                    Quite Disagree
## 248                                      Partly Agree
## 249                                    Strongly Agree
## 250                                    Quite Disagree
## 251                                      Partly Agree
## 252                                      Partly Agree
## 253                                        Don't Know
## 254                                      Partly Agree
## 255                                              <NA>
## 256                                      Partly Agree
## 257                                      Partly Agree
## 258                                    Strongly Agree
## 259                                      Partly Agree
## 260                                      Partly Agree
## 261                                      Partly Agree
## 262                                      Partly Agree
## 263                                    Strongly Agree
## 264                                      Partly Agree
## 265                                      Partly Agree
## 266                                      Partly Agree
## 267                                      Partly Agree
## 268                                      Partly Agree
## 269                                      Partly Agree
## 270                                    Strongly Agree
## 271                                    Strongly Agree
## 272                                      Partly Agree
## 273                                      Partly Agree
## 274                                    Quite Disagree
## 275                                    Quite Disagree
## 276                                      Partly Agree
## 277                                      Partly Agree
## 278                                      Partly Agree
## 279                                      Partly Agree
## 280                                    Quite Disagree
## 281                                    Quite Disagree
## 282                                    Quite Disagree
## 283                                      Partly Agree
## 284                                    Quite Disagree
## 285                                      Partly Agree
## 286                                    Quite Disagree
## 287                                      Partly Agree
## 288                                      Partly Agree
## 289                                      Partly Agree
## 290                                      Partly Agree
## 291                                      Partly Agree
## 292                                      Partly Agree
## 293                                      Partly Agree
## 294                                      Partly Agree
## 295                                      Partly Agree
## 296                                    Quite Disagree
## 297                                    Strongly Agree
## 298                                      Partly Agree
## 299                                      Partly Agree
## 300                                      Partly Agree
## 302                                 Strongly Disagree
## 303                                 Strongly Disagree
## 304                                 Strongly Disagree
## 305                                    Strongly Agree
## 306                                 Strongly Disagree
## 307                                              <NA>
## 308                                    Quite Disagree
## 309                                    Quite Disagree
## 310                                    Quite Disagree
## 311                                      Partly Agree
## 312                                    Quite Disagree
## 313                                    Quite Disagree
## 314                                      Partly Agree
## 315                                    Quite Disagree
## 316                                      Partly Agree
## 317                                 Strongly Disagree
## 318                                    Quite Disagree
## 319                                    Quite Disagree
## 320                                    Quite Disagree
## 321                                    Quite Disagree
## 322                                    Quite Disagree
## 323                                    Quite Disagree
## 324                                    Quite Disagree
## 325                                    Quite Disagree
## 326                                    Quite Disagree
## 327                                    Quite Disagree
## 328                                    Quite Disagree
## 329                                    Strongly Agree
## 330                                 Strongly Disagree
## 331                                      Partly Agree
## 332                                      Partly Agree
## 333                                      Partly Agree
## 334                                 Strongly Disagree
## 335                                    Strongly Agree
## 336                                    Quite Disagree
## 337                                    Quite Disagree
## 338                                        Don't Know
## 339                                      Partly Agree
## 340                                    Quite Disagree
## 341                                      Partly Agree
## 342                                    Quite Disagree
## 343                                      Partly Agree
## 344                                    Quite Disagree
## 345                                    Quite Disagree
## 346                                      Partly Agree
## 347                                    Quite Disagree
## 348                                      Partly Agree
## 349                                      Partly Agree
## 350                                    Quite Disagree
## 351                                      Partly Agree
## 352                                        Don't Know
## 353                                    Quite Disagree
## 354                                    Quite Disagree
## 355                                    Quite Disagree
## 356                                              <NA>
## 357                                    Quite Disagree
## 358                                    Quite Disagree
## 359                                    Quite Disagree
## 360                                    Quite Disagree
## 361                                    Quite Disagree
## 362                                    Quite Disagree
## 363                                    Quite Disagree
## 364                                    Quite Disagree
## 365                                      Partly Agree
## 366                                    Quite Disagree
## 367                                    Quite Disagree
## 368                                    Quite Disagree
## 369                                    Quite Disagree
## 370                                    Quite Disagree
## 371                                    Quite Disagree
## 372                                    Quite Disagree
## 373                                      Partly Agree
## 374                                    Quite Disagree
## 375                                    Quite Disagree
## 376                                    Quite Disagree
## 377                                    Quite Disagree
## 378                                      Partly Agree
## 379                                    Quite Disagree
## 380                                    Quite Disagree
## 381                                    Quite Disagree
## 382                                    Quite Disagree
## 383                                    Quite Disagree
## 384                                    Quite Disagree
## 385                                    Quite Disagree
## 386                                    Quite Disagree
## 387                                    Quite Disagree
## 388                                    Quite Disagree
## 389                                    Quite Disagree
## 390                                    Quite Disagree
## 391                                    Quite Disagree
## 392                                    Quite Disagree
## 393                                    Quite Disagree
## 394                                    Quite Disagree
## 395                                    Quite Disagree
## 396                                    Quite Disagree
## 397                                    Quite Disagree
## 398                                    Quite Disagree
## 399                                    Quite Disagree
## 400                                    Quite Disagree
## 401                                    Quite Disagree
## 402                                        Don't Know
## 403                                      Partly Agree
## 404                                        Don't Know
## 405                                    Quite Disagree
## 406                                    Quite Disagree
## 407                                        Don't Know
## 408                                    Quite Disagree
## 409                                      Partly Agree
## 410                                    Quite Disagree
## 411                                      Partly Agree
## 412                                      Partly Agree
## 413                                    Strongly Agree
## 414                                      Partly Agree
## 415                                        Don't Know
## 416                                      Partly Agree
## 417                                              <NA>
## 418                                        Don't Know
## 419                                      Partly Agree
## 420                                      Partly Agree
## 421                                    Strongly Agree
## 422                                        Don't Know
## 423                                    Strongly Agree
## 424                                      Partly Agree
## 425                                      Partly Agree
## 426                                    Strongly Agree
## 427                                      Partly Agree
## 428                                        Don't Know
## 429                                      Partly Agree
## 430                                    Strongly Agree
## 431                                    Strongly Agree
## 432                                        Don't Know
## 433                                      Partly Agree
## 434                                      Partly Agree
## 435                                        Don't Know
## 436                                      Partly Agree
## 437                                      Partly Agree
## 438                                      Partly Agree
## 439                                      Partly Agree
## 440                                    Strongly Agree
## 441                                    Strongly Agree
## 442                                      Partly Agree
## 443                                    Strongly Agree
## 444                                      Partly Agree
## 445                                    Strongly Agree
## 446                                    Strongly Agree
## 447                                    Strongly Agree
## 448                                      Partly Agree
## 449                                      Partly Agree
## 450                                              <NA>
## 451                                    Strongly Agree
## 452                                      Partly Agree
## 453                                              <NA>
## 454                                 Strongly Disagree
## 455                                 Strongly Disagree
## 456                                 Strongly Disagree
## 457                                    Quite Disagree
## 458                                 Strongly Disagree
## 459                                 Strongly Disagree
## 460                                    Quite Disagree
## 461                                    Quite Disagree
## 462                                      Partly Agree
## 463                                 Strongly Disagree
## 464                                 Strongly Disagree
## 465                                 Strongly Disagree
## 466                                 Strongly Disagree
## 467                                    Quite Disagree
## 468                                    Quite Disagree
## 469                                 Strongly Disagree
## 470                                    Quite Disagree
## 471                                      Partly Agree
## 472                                    Quite Disagree
## 473                                 Strongly Disagree
## 474                                 Strongly Disagree
## 475                                 Strongly Disagree
## 476                                 Strongly Disagree
## 477                                 Strongly Disagree
## 478                                 Strongly Disagree
## 479                                        Don't Know
## 480                                 Strongly Disagree
## 481                                 Strongly Disagree
## 482                                 Strongly Disagree
## 483                                 Strongly Disagree
## 484                                 Strongly Disagree
## 485                                 Strongly Disagree
## 486                                 Strongly Disagree
## 487                                    Quite Disagree
## 488                                    Quite Disagree
## 489                                        Don't Know
## 490                                    Strongly Agree
## 491                                 Strongly Disagree
## 492                                    Quite Disagree
## 493                                 Strongly Disagree
## 494                                    Quite Disagree
## 495                                    Strongly Agree
## 496                                      Partly Agree
##      Governing.System..Democratic.Parlimentary.System
## 1                                          Don't Know
## 2                                        Partly Agree
## 3                                        Partly Agree
## 4                                      Strongly Agree
## 5                                   Strongly Disagree
## 6                                          Don't Know
## 7                                          Don't Know
## 8                                   Strongly Disagree
## 9                                      Quite Disagree
## 10                                         Don't Know
## 11                                       Partly Agree
## 12                                       Partly Agree
## 13                                       Partly Agree
## 14                                  Strongly Disagree
## 15                                     Strongly Agree
## 16                                       Partly Agree
## 17                                       Partly Agree
## 18                                       Partly Agree
## 19                                     Quite Disagree
## 20                                       Partly Agree
## 21                                     Strongly Agree
## 22                                       Partly Agree
## 23                                     Strongly Agree
## 24                                     Quite Disagree
## 25                                     Quite Disagree
## 26                                         Don't Know
## 27                                       Partly Agree
## 28                                         Don't Know
## 29                                         Don't Know
## 30                                     Quite Disagree
## 31                                     Quite Disagree
## 32                                         Don't Know
## 33                                     Quite Disagree
## 34                                       Partly Agree
## 35                                       Partly Agree
## 36                                     Quite Disagree
## 37                                     Quite Disagree
## 38                                       Partly Agree
## 39                                       Partly Agree
## 40                                     Quite Disagree
## 41                                     Quite Disagree
## 42                                     Quite Disagree
## 43                                     Quite Disagree
## 44                                         Don't Know
## 45                                     Quite Disagree
## 46                                       Partly Agree
## 47                                     Strongly Agree
## 48                                       Partly Agree
## 49                                       Partly Agree
## 50                                     Quite Disagree
## 51                                     Quite Disagree
## 52                                       Partly Agree
## 53                                     Quite Disagree
## 54                                       Partly Agree
## 55                                     Strongly Agree
## 56                                       Partly Agree
## 57                                       Partly Agree
## 58                                       Partly Agree
## 59                                       Partly Agree
## 60                                       Partly Agree
## 61                                       Partly Agree
## 62                                       Partly Agree
## 63                                       Partly Agree
## 64                                       Partly Agree
## 65                                       Partly Agree
## 66                                       Partly Agree
## 67                                  Strongly Disagree
## 68                                       Partly Agree
## 69                                       Partly Agree
## 70                                       Partly Agree
## 71                                     Strongly Agree
## 72                                       Partly Agree
## 73                                       Partly Agree
## 74                                       Partly Agree
## 75                                       Partly Agree
## 76                                       Partly Agree
## 77                                  Strongly Disagree
## 78                                     Quite Disagree
## 79                                     Quite Disagree
## 80                                       Partly Agree
## 81                                     Quite Disagree
## 82                                     Strongly Agree
## 83                                       Partly Agree
## 84                                       Partly Agree
## 85                                     Quite Disagree
## 86                                     Strongly Agree
## 87                                       Partly Agree
## 88                                       Partly Agree
## 89                                     Strongly Agree
## 90                                     Strongly Agree
## 91                                     Strongly Agree
## 92                                     Strongly Agree
## 93                                     Strongly Agree
## 94                                     Strongly Agree
## 95                                     Strongly Agree
## 96                                     Strongly Agree
## 97                                     Strongly Agree
## 98                                       Partly Agree
## 99                                     Strongly Agree
## 100                                    Strongly Agree
## 101                                    Strongly Agree
## 102                                      Partly Agree
## 103                                      Partly Agree
## 104                                      Partly Agree
## 105                                    Quite Disagree
## 106                                    Strongly Agree
## 107                                      Partly Agree
## 108                                    Strongly Agree
## 109                                    Strongly Agree
## 110                                    Strongly Agree
## 111                                    Strongly Agree
## 112                                    Quite Disagree
## 113                                        Don't Know
## 114                                    Strongly Agree
## 115                                    Strongly Agree
## 116                                        Don't Know
## 117                                    Quite Disagree
## 118                                      Partly Agree
## 119                                    Strongly Agree
## 120                                 Strongly Disagree
## 121                                    Strongly Agree
## 122                                 Strongly Disagree
## 123                                    Strongly Agree
## 124                                    Quite Disagree
## 125                                      Partly Agree
## 126                                      Partly Agree
## 127                                    Strongly Agree
## 128                                      Partly Agree
## 129                                    Strongly Agree
## 130                                      Partly Agree
## 131                                      Partly Agree
## 132                                      Partly Agree
## 133                                      Partly Agree
## 134                                    Strongly Agree
## 135                                      Partly Agree
## 136                                        Don't Know
## 137                                    Strongly Agree
## 138                                      Partly Agree
## 139                                      Partly Agree
## 140                                      Partly Agree
## 141                                    Quite Disagree
## 142                                      Partly Agree
## 143                                    Quite Disagree
## 144                                      Partly Agree
## 145                                    Strongly Agree
## 146                                        Don't Know
## 147                                      Partly Agree
## 148                                      Partly Agree
## 149                                    Quite Disagree
## 150                                    Strongly Agree
## 151                                      Partly Agree
## 152                                      Partly Agree
## 153                                        Don't Know
## 154                                        Don't Know
## 155                                 Strongly Disagree
## 156                                      Partly Agree
## 157                                        Don't Know
## 158                                    Strongly Agree
## 159                                    Strongly Agree
## 160                                      Partly Agree
## 161                                      Partly Agree
## 162                                        Don't Know
## 163                                        Don't Know
## 164                                        Don't Know
## 165                                    Strongly Agree
## 166                                    Strongly Agree
## 167                                    Strongly Agree
## 168                                      Partly Agree
## 169                                      Partly Agree
## 170                                        Don't Know
## 171                                        Don't Know
## 172                                        Don't Know
## 173                                        Don't Know
## 174                                    Strongly Agree
## 175                                    Quite Disagree
## 176                                      Partly Agree
## 177                                        Don't Know
## 178                                      Partly Agree
## 179                                        Don't Know
## 180                                    Strongly Agree
## 181                                    Strongly Agree
## 182                                    Strongly Agree
## 183                                        Don't Know
## 184                                      Partly Agree
## 185                                      Partly Agree
## 186                                    Strongly Agree
## 187                                      Partly Agree
## 188                                        Don't Know
## 189                                        Don't Know
## 190                                        Don't Know
## 191                                        Don't Know
## 192                                        Don't Know
## 193                                    Strongly Agree
## 194                                    Strongly Agree
## 195                                    Strongly Agree
## 196                                      Partly Agree
## 197                                    Strongly Agree
## 198                                      Partly Agree
## 199                                    Strongly Agree
## 200                                      Partly Agree
## 201                                    Quite Disagree
## 202                                    Quite Disagree
## 203                                      Partly Agree
## 204                                    Strongly Agree
## 205                                 Strongly Disagree
## 206                                 Strongly Disagree
## 207                                 Strongly Disagree
## 208                                 Strongly Disagree
## 209                                    Strongly Agree
## 210                                 Strongly Disagree
## 211                                    Quite Disagree
## 212                                      Partly Agree
## 213                                      Partly Agree
## 214                                      Partly Agree
## 215                                      Partly Agree
## 216                                      Partly Agree
## 217                                      Partly Agree
## 218                                      Partly Agree
## 219                                      Partly Agree
## 220                                    Quite Disagree
## 221                                    Quite Disagree
## 222                                      Partly Agree
## 223                                 Strongly Disagree
## 224                                      Partly Agree
## 225                                      Partly Agree
## 226                                    Quite Disagree
## 227                                      Partly Agree
## 228                                    Quite Disagree
## 229                                      Partly Agree
## 230                                      Partly Agree
## 231                                      Partly Agree
## 232                                    Quite Disagree
## 233                                      Partly Agree
## 234                                      Partly Agree
## 235                                      Partly Agree
## 236                                      Partly Agree
## 237                                    Strongly Agree
## 238                                      Partly Agree
## 239                                      Partly Agree
## 240                                      Partly Agree
## 241                                      Partly Agree
## 242                                 Strongly Disagree
## 243                                      Partly Agree
## 244                                      Partly Agree
## 245                                      Partly Agree
## 246                                      Partly Agree
## 247                                    Quite Disagree
## 248                                      Partly Agree
## 249                                    Quite Disagree
## 250                                      Partly Agree
## 251                                      Partly Agree
## 252                                      Partly Agree
## 253                                        Don't Know
## 254                                      Partly Agree
## 255                                 Strongly Disagree
## 256                                    Quite Disagree
## 257                                        Don't Know
## 258                                        Don't Know
## 259                                        Don't Know
## 260                                    Strongly Agree
## 261                                        Don't Know
## 262                                    Quite Disagree
## 263                                    Quite Disagree
## 264                                    Strongly Agree
## 265                                        Don't Know
## 266                                        Don't Know
## 267                                        Don't Know
## 268                                    Strongly Agree
## 269                                        Don't Know
## 270                                        Don't Know
## 271                                    Strongly Agree
## 272                                    Strongly Agree
## 273                                      Partly Agree
## 274                                    Quite Disagree
## 275                                    Quite Disagree
## 276                                      Partly Agree
## 277                                        Don't Know
## 278                                    Strongly Agree
## 279                                    Strongly Agree
## 280                                      Partly Agree
## 281                                    Strongly Agree
## 282                                    Strongly Agree
## 283                                    Quite Disagree
## 284                                      Partly Agree
## 285                                 Strongly Disagree
## 286                                    Quite Disagree
## 287                                        Don't Know
## 288                                        Don't Know
## 289                                        Don't Know
## 290                                    Strongly Agree
## 291                                    Quite Disagree
## 292                                      Partly Agree
## 293                                    Strongly Agree
## 294                                    Strongly Agree
## 295                                    Strongly Agree
## 296                                        Don't Know
## 297                                        Don't Know
## 298                                    Strongly Agree
## 299                                    Quite Disagree
## 300                                      Partly Agree
## 302                                    Strongly Agree
## 303                                 Strongly Disagree
## 304                                      Partly Agree
## 305                                      Partly Agree
## 306                                      Partly Agree
## 307                                      Partly Agree
## 308                                      Partly Agree
## 309                                    Strongly Agree
## 310                                        Don't Know
## 311                                      Partly Agree
## 312                                      Partly Agree
## 313                                    Quite Disagree
## 314                                        Don't Know
## 315                                        Don't Know
## 316                                      Partly Agree
## 317                                    Quite Disagree
## 318                                    Strongly Agree
## 319                                      Partly Agree
## 320                                    Quite Disagree
## 321                                      Partly Agree
## 322                                        Don't Know
## 323                                        Don't Know
## 324                                      Partly Agree
## 325                                      Partly Agree
## 326                                      Partly Agree
## 327                                    Strongly Agree
## 328                                      Partly Agree
## 329                                    Quite Disagree
## 330                                 Strongly Disagree
## 331                                 Strongly Disagree
## 332                                    Quite Disagree
## 333                                    Quite Disagree
## 334                                      Partly Agree
## 335                                 Strongly Disagree
## 336                                    Strongly Agree
## 337                                 Strongly Disagree
## 338                                      Partly Agree
## 339                                      Partly Agree
## 340                                 Strongly Disagree
## 341                                    Quite Disagree
## 342                                      Partly Agree
## 343                                      Partly Agree
## 344                                      Partly Agree
## 345                                        Don't Know
## 346                                      Partly Agree
## 347                                      Partly Agree
## 348                                    Quite Disagree
## 349                                      Partly Agree
## 350                                      Partly Agree
## 351                                      Partly Agree
## 352                                        Don't Know
## 353                                      Partly Agree
## 354                                        Don't Know
## 355                                      Partly Agree
## 356                                        Don't Know
## 357                                    Quite Disagree
## 358                                    Quite Disagree
## 359                                      Partly Agree
## 360                                      Partly Agree
## 361                                    Quite Disagree
## 362                                      Partly Agree
## 363                                      Partly Agree
## 364                                    Quite Disagree
## 365                                      Partly Agree
## 366                                      Partly Agree
## 367                                      Partly Agree
## 368                                      Partly Agree
## 369                                      Partly Agree
## 370                                      Partly Agree
## 371                                    Quite Disagree
## 372                                      Partly Agree
## 373                                      Partly Agree
## 374                                      Partly Agree
## 375                                      Partly Agree
## 376                                      Partly Agree
## 377                                      Partly Agree
## 378                                      Partly Agree
## 379                                      Partly Agree
## 380                                    Quite Disagree
## 381                                      Partly Agree
## 382                                      Partly Agree
## 383                                      Partly Agree
## 384                                      Partly Agree
## 385                                      Partly Agree
## 386                                    Strongly Agree
## 387                                    Strongly Agree
## 388                                      Partly Agree
## 389                                      Partly Agree
## 390                                    Quite Disagree
## 391                                      Partly Agree
## 392                                      Partly Agree
## 393                                      Partly Agree
## 394                                      Partly Agree
## 395                                      Partly Agree
## 396                                      Partly Agree
## 397                                    Quite Disagree
## 398                                      Partly Agree
## 399                                      Partly Agree
## 400                                      Partly Agree
## 401                                      Partly Agree
## 402                                        Don't Know
## 403                                      Partly Agree
## 404                                    Quite Disagree
## 405                                      Partly Agree
## 406                                      Partly Agree
## 407                                 Strongly Disagree
## 408                                      Partly Agree
## 409                                      Partly Agree
## 410                                      Partly Agree
## 411                                      Partly Agree
## 412                                      Partly Agree
## 413                                      Partly Agree
## 414                                      Partly Agree
## 415                                        Don't Know
## 416                                        Don't Know
## 417                                      Partly Agree
## 418                                        Don't Know
## 419                                      Partly Agree
## 420                                      Partly Agree
## 421                                      Partly Agree
## 422                                        Don't Know
## 423                                    Quite Disagree
## 424                                      Partly Agree
## 425                                      Partly Agree
## 426                                      Partly Agree
## 427                                      Partly Agree
## 428                                        Don't Know
## 429                                      Partly Agree
## 430                                      Partly Agree
## 431                                      Partly Agree
## 432                                        Don't Know
## 433                                      Partly Agree
## 434                                    Quite Disagree
## 435                                        Don't Know
## 436                                    Strongly Agree
## 437                                      Partly Agree
## 438                                      Partly Agree
## 439                                      Partly Agree
## 440                                    Quite Disagree
## 441                                      Partly Agree
## 442                                      Partly Agree
## 443                                    Quite Disagree
## 444                                      Partly Agree
## 445                                      Partly Agree
## 446                                 Strongly Disagree
## 447                                        Don't Know
## 448                                      Partly Agree
## 449                                      Partly Agree
## 450                                      Partly Agree
## 451                                      Partly Agree
## 452                                    Quite Disagree
## 453                                      Partly Agree
## 454                                 Strongly Disagree
## 455                                    Quite Disagree
## 456                                      Partly Agree
## 457                                      Partly Agree
## 458                                    Strongly Agree
## 459                                    Strongly Agree
## 460                                      Partly Agree
## 461                                      Partly Agree
## 462                                 Strongly Disagree
## 463                                    Strongly Agree
## 464                                      Partly Agree
## 465                                 Strongly Disagree
## 466                                      Partly Agree
## 467                                    Strongly Agree
## 468                                      Partly Agree
## 469                                      Partly Agree
## 470                                    Quite Disagree
## 471                                      Partly Agree
## 472                                    Quite Disagree
## 473                                 Strongly Disagree
## 474                                      Partly Agree
## 475                                      Partly Agree
## 476                                      Partly Agree
## 477                                      Partly Agree
## 478                                    Quite Disagree
## 479                                      Partly Agree
## 480                                      Partly Agree
## 481                                      Partly Agree
## 482                                 Strongly Disagree
## 483                                      Partly Agree
## 484                                      Partly Agree
## 485                                      Partly Agree
## 486                                      Partly Agree
## 487                                      Partly Agree
## 488                                    Quite Disagree
## 489                                        Don't Know
## 490                                    Strongly Agree
## 491                                    Strongly Agree
## 492                                      Partly Agree
## 493                                    Strongly Agree
## 494                                    Quite Disagree
## 495                                      Partly Agree
## 496                                      Partly Agree
##      Governing.System..Presidential.System
## 1                               Don't Know
## 2                           Strongly Agree
## 3                             Partly Agree
## 4                        Strongly Disagree
## 5                           Quite Disagree
## 6                             Partly Agree
## 7                             Partly Agree
## 8                        Strongly Disagree
## 9                           Quite Disagree
## 10                              Don't Know
## 11                          Strongly Agree
## 12                            Partly Agree
## 13                          Quite Disagree
## 14                       Strongly Disagree
## 15                          Strongly Agree
## 16                            Partly Agree
## 17                            Partly Agree
## 18                            Partly Agree
## 19                            Partly Agree
## 20                          Quite Disagree
## 21                          Strongly Agree
## 22                            Partly Agree
## 23                          Strongly Agree
## 24                          Quite Disagree
## 25                          Quite Disagree
## 26                              Don't Know
## 27                          Quite Disagree
## 28                              Don't Know
## 29                              Don't Know
## 30                          Quite Disagree
## 31                          Quite Disagree
## 32                              Don't Know
## 33                            Partly Agree
## 34                          Quite Disagree
## 35                          Quite Disagree
## 36                            Partly Agree
## 37                       Strongly Disagree
## 38                          Quite Disagree
## 39                            Partly Agree
## 40                          Quite Disagree
## 41                          Quite Disagree
## 42                          Quite Disagree
## 43                            Partly Agree
## 44                              Don't Know
## 45                          Quite Disagree
## 46                          Strongly Agree
## 47                          Strongly Agree
## 48                            Partly Agree
## 49                          Quite Disagree
## 50                              Don't Know
## 51                              Don't Know
## 52                          Quite Disagree
## 53                          Strongly Agree
## 54                            Partly Agree
## 55                            Partly Agree
## 56                            Partly Agree
## 57                            Partly Agree
## 58                            Partly Agree
## 59                            Partly Agree
## 60                            Partly Agree
## 61                          Quite Disagree
## 62                            Partly Agree
## 63                          Quite Disagree
## 64                            Partly Agree
## 65                          Quite Disagree
## 66                          Quite Disagree
## 67                            Partly Agree
## 68                          Quite Disagree
## 69                            Partly Agree
## 70                            Partly Agree
## 71                            Partly Agree
## 72                            Partly Agree
## 73                            Partly Agree
## 74                            Partly Agree
## 75                            Partly Agree
## 76                            Partly Agree
## 77                          Strongly Agree
## 78                          Strongly Agree
## 79                          Strongly Agree
## 80                            Partly Agree
## 81                            Partly Agree
## 82                            Partly Agree
## 83                            Partly Agree
## 84                            Partly Agree
## 85                            Partly Agree
## 86                          Strongly Agree
## 87                            Partly Agree
## 88                            Partly Agree
## 89                          Strongly Agree
## 90                          Strongly Agree
## 91                          Strongly Agree
## 92                            Partly Agree
## 93                            Partly Agree
## 94                          Strongly Agree
## 95                            Partly Agree
## 96                            Partly Agree
## 97                            Partly Agree
## 98                          Quite Disagree
## 99                            Partly Agree
## 100                           Partly Agree
## 101                           Partly Agree
## 102                         Quite Disagree
## 103                         Strongly Agree
## 104                           Partly Agree
## 105                           Partly Agree
## 106                           Partly Agree
## 107                         Strongly Agree
## 108                           Partly Agree
## 109                           Partly Agree
## 110                           Partly Agree
## 111                           Partly Agree
## 112                      Strongly Disagree
## 113                         Quite Disagree
## 114                           Partly Agree
## 115                           Partly Agree
## 116                           Partly Agree
## 117                           Partly Agree
## 118                           Partly Agree
## 119                           Partly Agree
## 120                      Strongly Disagree
## 121                           Partly Agree
## 122                           Partly Agree
## 123                         Strongly Agree
## 124                      Strongly Disagree
## 125                         Quite Disagree
## 126                         Quite Disagree
## 127                           Partly Agree
## 128                         Quite Disagree
## 129                           Partly Agree
## 130                         Strongly Agree
## 131                           Partly Agree
## 132                         Quite Disagree
## 133                         Quite Disagree
## 134                         Strongly Agree
## 135                           Partly Agree
## 136                             Don't Know
## 137                           Partly Agree
## 138                         Quite Disagree
## 139                         Quite Disagree
## 140                         Quite Disagree
## 141                           Partly Agree
## 142                         Quite Disagree
## 143                           Partly Agree
## 144                         Quite Disagree
## 145                         Strongly Agree
## 146                             Don't Know
## 147                      Strongly Disagree
## 148                         Quite Disagree
## 149                         Strongly Agree
## 150                           Partly Agree
## 151                           Partly Agree
## 152                         Strongly Agree
## 153                             Don't Know
## 154                           Partly Agree
## 155                           Partly Agree
## 156                           Partly Agree
## 157                             Don't Know
## 158                         Strongly Agree
## 159                         Strongly Agree
## 160                         Strongly Agree
## 161                         Strongly Agree
## 162                           Partly Agree
## 163                             Don't Know
## 164                             Don't Know
## 165                         Strongly Agree
## 166                         Strongly Agree
## 167                         Strongly Agree
## 168                           Partly Agree
## 169                           Partly Agree
## 170                             Don't Know
## 171                             Don't Know
## 172                             Don't Know
## 173                             Don't Know
## 174                           Partly Agree
## 175                           Partly Agree
## 176                         Strongly Agree
## 177                             Don't Know
## 178                           Partly Agree
## 179                             Don't Know
## 180                         Strongly Agree
## 181                         Strongly Agree
## 182                         Strongly Agree
## 183                             Don't Know
## 184                         Strongly Agree
## 185                         Strongly Agree
## 186                         Strongly Agree
## 187                           Partly Agree
## 188                             Don't Know
## 189                             Don't Know
## 190                             Don't Know
## 191                             Don't Know
## 192                             Don't Know
## 193                         Strongly Agree
## 194                         Strongly Agree
## 195                         Strongly Agree
## 196                           Partly Agree
## 197                         Strongly Agree
## 198                           Partly Agree
## 199                         Strongly Agree
## 200                         Strongly Agree
## 201                         Strongly Agree
## 202                         Quite Disagree
## 203                         Strongly Agree
## 204                           Partly Agree
## 205                         Quite Disagree
## 206                         Strongly Agree
## 207                         Quite Disagree
## 208                           Partly Agree
## 209                         Strongly Agree
## 210                         Strongly Agree
## 211                         Quite Disagree
## 212                         Quite Disagree
## 213                         Quite Disagree
## 214                         Quite Disagree
## 215                         Quite Disagree
## 216                         Quite Disagree
## 217                         Strongly Agree
## 218                         Strongly Agree
## 219                         Strongly Agree
## 220                         Strongly Agree
## 221                         Strongly Agree
## 222                         Strongly Agree
## 223                         Strongly Agree
## 224                         Strongly Agree
## 225                         Strongly Agree
## 226                         Strongly Agree
## 227                         Strongly Agree
## 228                           Partly Agree
## 229                         Strongly Agree
## 230                         Strongly Agree
## 231                         Strongly Agree
## 232                           Partly Agree
## 233                         Strongly Agree
## 234                         Strongly Agree
## 235                         Strongly Agree
## 236                         Quite Disagree
## 237                         Strongly Agree
## 238                         Quite Disagree
## 239                         Strongly Agree
## 240                         Strongly Agree
## 241                         Strongly Agree
## 242                           Partly Agree
## 243                         Strongly Agree
## 244                         Strongly Agree
## 245                         Strongly Agree
## 246                         Strongly Agree
## 247                         Strongly Agree
## 248                         Strongly Agree
## 249                         Strongly Agree
## 250                         Strongly Agree
## 251                         Quite Disagree
## 252                         Quite Disagree
## 253                             Don't Know
## 254                           Partly Agree
## 255                         Strongly Agree
## 256                      Strongly Disagree
## 257                             Don't Know
## 258                           Partly Agree
## 259                             Don't Know
## 260                         Quite Disagree
## 261                             Don't Know
## 262                         Quite Disagree
## 263                         Quite Disagree
## 264                         Strongly Agree
## 265                             Don't Know
## 266                             Don't Know
## 267                           Partly Agree
## 268                         Strongly Agree
## 269                         Strongly Agree
## 270                             Don't Know
## 271                             Don't Know
## 272                           Partly Agree
## 273                                   <NA>
## 274                           Partly Agree
## 275                         Strongly Agree
## 276                         Quite Disagree
## 277                             Don't Know
## 278                         Quite Disagree
## 279                         Strongly Agree
## 280                         Quite Disagree
## 281                         Strongly Agree
## 282                             Don't Know
## 283                      Strongly Disagree
## 284                         Quite Disagree
## 285                      Strongly Disagree
## 286                         Quite Disagree
## 287                             Don't Know
## 288                           Partly Agree
## 289                             Don't Know
## 290                           Partly Agree
## 291                           Partly Agree
## 292                           Partly Agree
## 293                         Strongly Agree
## 294                         Strongly Agree
## 295                           Partly Agree
## 296                             Don't Know
## 297                           Partly Agree
## 298                         Strongly Agree
## 299                         Quite Disagree
## 300                           Partly Agree
## 302                         Quite Disagree
## 303                             Don't Know
## 304                         Quite Disagree
## 305                           Partly Agree
## 306                         Quite Disagree
## 307                             Don't Know
## 308                         Quite Disagree
## 309                         Strongly Agree
## 310                             Don't Know
## 311                         Quite Disagree
## 312                           Partly Agree
## 313                         Strongly Agree
## 314                             Don't Know
## 315                             Don't Know
## 316                           Partly Agree
## 317                             Don't Know
## 318                         Strongly Agree
## 319                           Partly Agree
## 320                           Partly Agree
## 321                           Partly Agree
## 322                             Don't Know
## 323                             Don't Know
## 324                           Partly Agree
## 325                           Partly Agree
## 326                         Quite Disagree
## 327                           Partly Agree
## 328                           Partly Agree
## 329                         Strongly Agree
## 330                         Quite Disagree
## 331                         Quite Disagree
## 332                           Partly Agree
## 333                           Partly Agree
## 334                         Strongly Agree
## 335                         Strongly Agree
## 336                         Quite Disagree
## 337                         Quite Disagree
## 338                         Quite Disagree
## 339                         Quite Disagree
## 340                             Don't Know
## 341                           Partly Agree
## 342                           Partly Agree
## 343                      Strongly Disagree
## 344                           Partly Agree
## 345                             Don't Know
## 346                         Strongly Agree
## 347                         Quite Disagree
## 348                         Quite Disagree
## 349                         Quite Disagree
## 350                         Strongly Agree
## 351                             Don't Know
## 352                             Don't Know
## 353                           Partly Agree
## 354                             Don't Know
## 355                           Partly Agree
## 356                         Quite Disagree
## 357                      Strongly Disagree
## 358                           Partly Agree
## 359                           Partly Agree
## 360                         Quite Disagree
## 361                         Quite Disagree
## 362                         Quite Disagree
## 363                           Partly Agree
## 364                         Quite Disagree
## 365                             Don't Know
## 366                      Strongly Disagree
## 367                         Quite Disagree
## 368                             Don't Know
## 369                           Partly Agree
## 370                           Partly Agree
## 371                             Don't Know
## 372                           Partly Agree
## 373                           Partly Agree
## 374                           Partly Agree
## 375                         Quite Disagree
## 376                           Partly Agree
## 377                           Partly Agree
## 378                         Quite Disagree
## 379                         Quite Disagree
## 380                         Quite Disagree
## 381                             Don't Know
## 382                             Don't Know
## 383                         Quite Disagree
## 384                         Quite Disagree
## 385                         Quite Disagree
## 386                           Partly Agree
## 387                           Partly Agree
## 388                             Don't Know
## 389                         Quite Disagree
## 390                         Strongly Agree
## 391                           Partly Agree
## 392                         Quite Disagree
## 393                             Don't Know
## 394                             Don't Know
## 395                           Partly Agree
## 396                           Partly Agree
## 397                      Strongly Disagree
## 398                         Quite Disagree
## 399                             Don't Know
## 400                         Quite Disagree
## 401                         Quite Disagree
## 402                      Strongly Disagree
## 403                         Quite Disagree
## 404                         Quite Disagree
## 405                         Quite Disagree
## 406                      Strongly Disagree
## 407                      Strongly Disagree
## 408                      Strongly Disagree
## 409                         Quite Disagree
## 410                           Partly Agree
## 411                      Strongly Disagree
## 412                      Strongly Disagree
## 413                      Strongly Disagree
## 414                         Quite Disagree
## 415                             Don't Know
## 416                      Strongly Disagree
## 417                             Don't Know
## 418                      Strongly Disagree
## 419                      Strongly Disagree
## 420                         Quite Disagree
## 421                      Strongly Disagree
## 422                             Don't Know
## 423                      Strongly Disagree
## 424                      Strongly Disagree
## 425                      Strongly Disagree
## 426                      Strongly Disagree
## 427                      Strongly Disagree
## 428                             Don't Know
## 429                         Quite Disagree
## 430                      Strongly Disagree
## 431                         Quite Disagree
## 432                             Don't Know
## 433                         Quite Disagree
## 434                      Strongly Disagree
## 435                         Quite Disagree
## 436                      Strongly Disagree
## 437                      Strongly Disagree
## 438                         Quite Disagree
## 439                      Strongly Disagree
## 440                      Strongly Disagree
## 441                         Quite Disagree
## 442                           Partly Agree
## 443                      Strongly Disagree
## 444                      Strongly Disagree
## 445                      Strongly Disagree
## 446                      Strongly Disagree
## 447                             Don't Know
## 448                      Strongly Disagree
## 449                      Strongly Disagree
## 450                                   <NA>
## 451                      Strongly Disagree
## 452                      Strongly Disagree
## 453                           Partly Agree
## 454                         Strongly Agree
## 455                         Strongly Agree
## 456                             Don't Know
## 457                         Quite Disagree
## 458                         Quite Disagree
## 459                           Partly Agree
## 460                         Quite Disagree
## 461                      Strongly Disagree
## 462                         Strongly Agree
## 463                         Strongly Agree
## 464                           Partly Agree
## 465                         Quite Disagree
## 466                         Strongly Agree
## 467                           Partly Agree
## 468                           Partly Agree
## 469                           Partly Agree
## 470                           Partly Agree
## 471                      Strongly Disagree
## 472                           Partly Agree
## 473                         Strongly Agree
## 474                             Don't Know
## 475                      Strongly Disagree
## 476                             Don't Know
## 477                      Strongly Disagree
## 478                         Strongly Agree
## 479                             Don't Know
## 480                      Strongly Disagree
## 481                             Don't Know
## 482                      Strongly Disagree
## 483                           Partly Agree
## 484                           Partly Agree
## 485                                   <NA>
## 486                           Partly Agree
## 487                           Partly Agree
## 488                         Strongly Agree
## 489                             Don't Know
## 490                           Partly Agree
## 491                           Partly Agree
## 492                         Quite Disagree
## 493                      Strongly Disagree
## 494                         Quite Disagree
## 495                         Quite Disagree
## 496                           Partly Agree
##      Governing.System..Federal.System Governing.System..Unitary.System
## 1                      Strongly Agree                   Quite Disagree
## 2                        Partly Agree                Strongly Disagree
## 3                        Partly Agree                Strongly Disagree
## 4                   Strongly Disagree                   Quite Disagree
## 5                        Partly Agree                Strongly Disagree
## 6                        Partly Agree                   Quite Disagree
## 7                      Quite Disagree                   Quite Disagree
## 8                      Quite Disagree                Strongly Disagree
## 9                        Partly Agree                Strongly Disagree
## 10                       Partly Agree                   Quite Disagree
## 11                       Partly Agree                             <NA>
## 12                       Partly Agree                Strongly Disagree
## 13                     Strongly Agree                Strongly Disagree
## 14                  Strongly Disagree                   Strongly Agree
## 15                     Strongly Agree                Strongly Disagree
## 16                     Strongly Agree                   Strongly Agree
## 17                       Partly Agree                   Quite Disagree
## 18                     Quite Disagree                     Partly Agree
## 19                       Partly Agree                   Quite Disagree
## 20                       Partly Agree                     Partly Agree
## 21                     Strongly Agree                Strongly Disagree
## 22                     Quite Disagree                Strongly Disagree
## 23                     Strongly Agree                Strongly Disagree
## 24                     Quite Disagree                     Partly Agree
## 25                       Partly Agree                   Quite Disagree
## 26                         Don't Know                             <NA>
## 27                       Partly Agree                   Quite Disagree
## 28                         Don't Know                             <NA>
## 29                         Don't Know                             <NA>
## 30                       Partly Agree                Strongly Disagree
## 31                     Quite Disagree                   Quite Disagree
## 32                         Don't Know                             <NA>
## 33                     Quite Disagree                   Quite Disagree
## 34                       Partly Agree                Strongly Disagree
## 35                     Quite Disagree                   Strongly Agree
## 36                       Partly Agree                     Partly Agree
## 37                       Partly Agree                Strongly Disagree
## 38                       Partly Agree                   Quite Disagree
## 39                       Partly Agree                     Partly Agree
## 40                       Partly Agree                Strongly Disagree
## 41                       Partly Agree                     Partly Agree
## 42                       Partly Agree                Strongly Disagree
## 43                       Partly Agree                Strongly Disagree
## 44                       Partly Agree                   Quite Disagree
## 45                     Quite Disagree                   Quite Disagree
## 46                       Partly Agree                     Partly Agree
## 47                     Strongly Agree                   Quite Disagree
## 48                       Partly Agree                   Quite Disagree
## 49                     Strongly Agree                   Quite Disagree
## 50                         Don't Know                             <NA>
## 51                  Strongly Disagree                     Partly Agree
## 52                     Quite Disagree                Strongly Disagree
## 53                     Strongly Agree                Strongly Disagree
## 54                     Quite Disagree                   Strongly Agree
## 55                     Quite Disagree                   Quite Disagree
## 56                  Strongly Disagree                   Quite Disagree
## 57                  Strongly Disagree                     Partly Agree
## 58                  Strongly Disagree                     Partly Agree
## 59                     Quite Disagree                     Partly Agree
## 60                  Strongly Disagree                   Quite Disagree
## 61                     Quite Disagree                   Quite Disagree
## 62                     Quite Disagree                Strongly Disagree
## 63                     Quite Disagree                   Quite Disagree
## 64                     Quite Disagree                   Quite Disagree
## 65                     Quite Disagree                   Quite Disagree
## 66                     Quite Disagree                   Quite Disagree
## 67                     Quite Disagree                   Quite Disagree
## 68                     Quite Disagree                   Quite Disagree
## 69                     Quite Disagree                   Quite Disagree
## 70                     Quite Disagree                   Quite Disagree
## 71                     Quite Disagree                   Quite Disagree
## 72                     Quite Disagree                   Quite Disagree
## 73                     Quite Disagree                   Quite Disagree
## 74                     Quite Disagree                   Quite Disagree
## 75                     Quite Disagree                   Quite Disagree
## 76                     Quite Disagree                   Quite Disagree
## 77                  Strongly Disagree                   Quite Disagree
## 78                  Strongly Disagree                   Quite Disagree
## 79                     Quite Disagree                   Quite Disagree
## 80                     Quite Disagree                   Quite Disagree
## 81                     Quite Disagree                   Quite Disagree
## 82                     Quite Disagree                   Quite Disagree
## 83                       Partly Agree                     Partly Agree
## 84                     Quite Disagree                   Quite Disagree
## 85                     Strongly Agree                   Quite Disagree
## 86                  Strongly Disagree                   Quite Disagree
## 87                  Strongly Disagree                     Partly Agree
## 88                     Quite Disagree                   Quite Disagree
## 89                       Partly Agree                Strongly Disagree
## 90                       Partly Agree                     Partly Agree
## 91                       Partly Agree                     Partly Agree
## 92                       Partly Agree                     Partly Agree
## 93                       Partly Agree                     Partly Agree
## 94                       Partly Agree                     Partly Agree
## 95                     Quite Disagree                Strongly Disagree
## 96                     Quite Disagree                   Quite Disagree
## 97                     Quite Disagree                   Quite Disagree
## 98                     Quite Disagree                   Quite Disagree
## 99                     Quite Disagree                   Quite Disagree
## 100                    Strongly Agree                   Quite Disagree
## 101                    Strongly Agree                Strongly Disagree
## 102                    Quite Disagree                Strongly Disagree
## 103                      Partly Agree                Strongly Disagree
## 104                    Strongly Agree                Strongly Disagree
## 105                      Partly Agree                Strongly Disagree
## 106                    Strongly Agree                Strongly Disagree
## 107                      Partly Agree                Strongly Disagree
## 108                    Strongly Agree                Strongly Disagree
## 109                    Strongly Agree                Strongly Disagree
## 110                    Strongly Agree                Strongly Disagree
## 111                    Strongly Agree                Strongly Disagree
## 112                    Quite Disagree                Strongly Disagree
## 113                      Partly Agree                Strongly Disagree
## 114                        Don't Know                             <NA>
## 115                    Strongly Agree                             <NA>
## 116                        Don't Know                             <NA>
## 117                    Strongly Agree                     Partly Agree
## 118                    Strongly Agree                     Partly Agree
## 119                    Strongly Agree                Strongly Disagree
## 120                 Strongly Disagree                Strongly Disagree
## 121                    Quite Disagree                Strongly Disagree
## 122                      Partly Agree                Strongly Disagree
## 123                      Partly Agree                Strongly Disagree
## 124                 Strongly Disagree                Strongly Disagree
## 125                      Partly Agree                             <NA>
## 126                 Strongly Disagree                Strongly Disagree
## 127                 Strongly Disagree                   Quite Disagree
## 128                      Partly Agree                Strongly Disagree
## 129                      Partly Agree                Strongly Disagree
## 130                      Partly Agree                Strongly Disagree
## 131                    Strongly Agree                Strongly Disagree
## 132                    Strongly Agree                Strongly Disagree
## 133                      Partly Agree                     Partly Agree
## 134                    Strongly Agree                Strongly Disagree
## 135                    Strongly Agree                Strongly Disagree
## 136                        Don't Know                             <NA>
## 137                    Strongly Agree                             <NA>
## 138                      Partly Agree                             <NA>
## 139                    Quite Disagree                   Quite Disagree
## 140                      Partly Agree                             <NA>
## 141                      Partly Agree                Strongly Disagree
## 142                    Quite Disagree                   Quite Disagree
## 143                      Partly Agree                   Quite Disagree
## 144                      Partly Agree                Strongly Disagree
## 145                      Partly Agree                Strongly Disagree
## 146                        Don't Know                Strongly Disagree
## 147                    Quite Disagree                Strongly Disagree
## 148                      Partly Agree                     Partly Agree
## 149                        Don't Know                   Quite Disagree
## 150                    Strongly Agree                             <NA>
## 151                    Quite Disagree                   Quite Disagree
## 152                      Partly Agree                     Partly Agree
## 153                        Don't Know                             <NA>
## 154                    Strongly Agree                             <NA>
## 155                    Strongly Agree                     Partly Agree
## 156                    Quite Disagree                   Quite Disagree
## 157                        Don't Know                             <NA>
## 158                    Strongly Agree                Strongly Disagree
## 159                    Strongly Agree                Strongly Disagree
## 160                    Strongly Agree                Strongly Disagree
## 161                      Partly Agree                     Partly Agree
## 162                      Partly Agree                     Partly Agree
## 163                        Don't Know                             <NA>
## 164                        Don't Know                             <NA>
## 165                    Strongly Agree                Strongly Disagree
## 166                    Strongly Agree                Strongly Disagree
## 167                    Strongly Agree                Strongly Disagree
## 168                      Partly Agree                   Quite Disagree
## 169                    Strongly Agree                     Partly Agree
## 170                        Don't Know                             <NA>
## 171                        Don't Know                             <NA>
## 172                        Don't Know                             <NA>
## 173                        Don't Know                             <NA>
## 174                      Partly Agree                Strongly Disagree
## 175                      Partly Agree                Strongly Disagree
## 176                    Strongly Agree                     Partly Agree
## 177                        Don't Know                             <NA>
## 178                      Partly Agree                Strongly Disagree
## 179                        Don't Know                             <NA>
## 180                    Strongly Agree                   Quite Disagree
## 181                    Strongly Agree                     Partly Agree
## 182                    Strongly Agree                     Partly Agree
## 183                        Don't Know                             <NA>
## 184                      Partly Agree                     Partly Agree
## 185                      Partly Agree                     Partly Agree
## 186                    Strongly Agree                     Partly Agree
## 187                      Partly Agree                   Quite Disagree
## 188                        Don't Know                             <NA>
## 189                        Don't Know                             <NA>
## 190                        Don't Know                             <NA>
## 191                        Don't Know                             <NA>
## 192                        Don't Know                   Strongly Agree
## 193                    Strongly Agree                Strongly Disagree
## 194                    Strongly Agree                     Partly Agree
## 195                    Strongly Agree                     Partly Agree
## 196                      Partly Agree                   Quite Disagree
## 197                    Strongly Agree                     Partly Agree
## 198                      Partly Agree                   Quite Disagree
## 199                    Strongly Agree                   Quite Disagree
## 200                      Partly Agree                     Partly Agree
## 201                      Partly Agree                Strongly Disagree
## 202                      Partly Agree                Strongly Disagree
## 203                    Quite Disagree                Strongly Disagree
## 204                    Quite Disagree                   Quite Disagree
## 205                    Strongly Agree                   Quite Disagree
## 206                    Quite Disagree                   Quite Disagree
## 207                      Partly Agree                   Quite Disagree
## 208                      Partly Agree                   Quite Disagree
## 209                      Partly Agree                   Quite Disagree
## 210                    Quite Disagree                   Quite Disagree
## 211                      Partly Agree                Strongly Disagree
## 212                      Partly Agree                Strongly Disagree
## 213                      Partly Agree                Strongly Disagree
## 214                      Partly Agree                Strongly Disagree
## 215                      Partly Agree                Strongly Disagree
## 216                      Partly Agree                Strongly Disagree
## 217                    Quite Disagree                Strongly Disagree
## 218                      Partly Agree                   Quite Disagree
## 219                      Partly Agree                     Partly Agree
## 220                      Partly Agree                   Strongly Agree
## 221                      Partly Agree                   Quite Disagree
## 222                      Partly Agree                Strongly Disagree
## 223                    Quite Disagree                   Quite Disagree
## 224                    Quite Disagree                Strongly Disagree
## 225                      Partly Agree                   Quite Disagree
## 226                      Partly Agree                     Partly Agree
## 227                    Quite Disagree                   Quite Disagree
## 228                    Quite Disagree                     Partly Agree
## 229                      Partly Agree                   Quite Disagree
## 230                      Partly Agree                     Partly Agree
## 231                    Strongly Agree                     Partly Agree
## 232                      Partly Agree                   Quite Disagree
## 233                      Partly Agree                Strongly Disagree
## 234                    Quite Disagree                Strongly Disagree
## 235                      Partly Agree                Strongly Disagree
## 236                    Quite Disagree                     Partly Agree
## 237                      Partly Agree                     Partly Agree
## 238                    Quite Disagree                     Partly Agree
## 239                      Partly Agree                Strongly Disagree
## 240                      Partly Agree                Strongly Disagree
## 241                      Partly Agree                Strongly Disagree
## 242                    Strongly Agree                     Partly Agree
## 243                      Partly Agree                Strongly Disagree
## 244                      Partly Agree                Strongly Disagree
## 245                    Strongly Agree                   Quite Disagree
## 246                    Strongly Agree                   Quite Disagree
## 247                      Partly Agree                   Quite Disagree
## 248                      Partly Agree                   Quite Disagree
## 249                    Quite Disagree                   Quite Disagree
## 250                      Partly Agree                   Quite Disagree
## 251                      Partly Agree                             <NA>
## 252                 Strongly Disagree                             <NA>
## 253                        Don't Know                             <NA>
## 254                    Quite Disagree                             <NA>
## 255                 Strongly Disagree                             <NA>
## 256                 Strongly Disagree                             <NA>
## 257                        Don't Know                             <NA>
## 258                        Don't Know                             <NA>
## 259                        Don't Know                             <NA>
## 260                    Quite Disagree                             <NA>
## 261                 Strongly Disagree                             <NA>
## 262                 Strongly Disagree                             <NA>
## 263                    Quite Disagree                             <NA>
## 264                 Strongly Disagree                             <NA>
## 265                        Don't Know                             <NA>
## 266                    Strongly Agree                             <NA>
## 267                        Don't Know                             <NA>
## 268                        Don't Know                             <NA>
## 269                        Don't Know                             <NA>
## 270                    Strongly Agree                             <NA>
## 271                      Partly Agree                             <NA>
## 272                    Quite Disagree                             <NA>
## 273                    Quite Disagree                             <NA>
## 274                 Strongly Disagree                             <NA>
## 275                    Quite Disagree                             <NA>
## 276                      Partly Agree                             <NA>
## 277                        Don't Know                             <NA>
## 278                        Don't Know                             <NA>
## 279                    Quite Disagree                             <NA>
## 280                      Partly Agree                             <NA>
## 281                 Strongly Disagree                             <NA>
## 282                        Don't Know                             <NA>
## 283                    Quite Disagree                             <NA>
## 284                      Partly Agree                             <NA>
## 285                        Don't Know                             <NA>
## 286                      Partly Agree                             <NA>
## 287                    Strongly Agree                             <NA>
## 288                        Don't Know                             <NA>
## 289                        Don't Know                             <NA>
## 290                    Strongly Agree                             <NA>
## 291                    Strongly Agree                             <NA>
## 292                        Don't Know                             <NA>
## 293                    Strongly Agree                             <NA>
## 294                    Strongly Agree                             <NA>
## 295                        Don't Know                             <NA>
## 296                        Don't Know                             <NA>
## 297                        Don't Know                             <NA>
## 298                    Strongly Agree                             <NA>
## 299                 Strongly Disagree                             <NA>
## 300                    Quite Disagree                             <NA>
## 302                 Strongly Disagree                Strongly Disagree
## 303                 Strongly Disagree                Strongly Disagree
## 304                    Quite Disagree                Strongly Disagree
## 305                      Partly Agree                   Strongly Agree
## 306                    Quite Disagree                Strongly Disagree
## 307                 Strongly Disagree                Strongly Disagree
## 308                    Quite Disagree                Strongly Disagree
## 309                    Strongly Agree                Strongly Disagree
## 310                        Don't Know                       Don't Know
## 311                 Strongly Disagree                   Strongly Agree
## 312                      Partly Agree                Strongly Disagree
## 313                      Partly Agree                Strongly Disagree
## 314                        Don't Know                       Don't Know
## 315                        Don't Know                       Don't Know
## 316                      Partly Agree                Strongly Disagree
## 317                 Strongly Disagree                     Partly Agree
## 318                    Strongly Agree                     Partly Agree
## 319                      Partly Agree                   Strongly Agree
## 320                      Partly Agree                Strongly Disagree
## 321                      Partly Agree                   Quite Disagree
## 322                        Don't Know                       Don't Know
## 323                        Don't Know                       Don't Know
## 324                 Strongly Disagree                Strongly Disagree
## 325                      Partly Agree                Strongly Disagree
## 326                    Quite Disagree                     Partly Agree
## 327                    Strongly Agree                Strongly Disagree
## 328                    Quite Disagree                     Partly Agree
## 329                    Quite Disagree                     Partly Agree
## 330                        Don't Know                Strongly Disagree
## 331                      Partly Agree                   Quite Disagree
## 332                    Strongly Agree                     Partly Agree
## 333                    Strongly Agree                   Quite Disagree
## 334                        Don't Know                   Quite Disagree
## 335                    Quite Disagree                   Quite Disagree
## 336                    Quite Disagree                Strongly Disagree
## 337                      Partly Agree                   Quite Disagree
## 338                    Strongly Agree                   Quite Disagree
## 339                 Strongly Disagree                Strongly Disagree
## 340                 Strongly Disagree                Strongly Disagree
## 341                      Partly Agree                Strongly Disagree
## 342                 Strongly Disagree                     Partly Agree
## 343                    Quite Disagree                Strongly Disagree
## 344                    Quite Disagree                     Partly Agree
## 345                        Don't Know                   Quite Disagree
## 346                 Strongly Disagree                   Strongly Agree
## 347                    Quite Disagree                   Quite Disagree
## 348                    Quite Disagree                   Quite Disagree
## 349                    Quite Disagree                   Quite Disagree
## 350                    Quite Disagree                Strongly Disagree
## 351                        Don't Know                       Don't Know
## 352                        Don't Know                       Don't Know
## 353                      Partly Agree                     Partly Agree
## 354                        Don't Know                       Don't Know
## 355                    Quite Disagree                   Quite Disagree
## 356                        Don't Know                       Don't Know
## 357                 Strongly Disagree                     Partly Agree
## 358                    Quite Disagree                     Partly Agree
## 359                 Strongly Disagree                     Partly Agree
## 360                      Partly Agree                     Partly Agree
## 361                    Quite Disagree                     Partly Agree
## 362                    Quite Disagree                   Quite Disagree
## 363                      Partly Agree                   Quite Disagree
## 364                    Quite Disagree                   Quite Disagree
## 365                      Partly Agree                       Don't Know
## 366                 Strongly Disagree                     Partly Agree
## 367                    Quite Disagree                   Quite Disagree
## 368                        Don't Know                       Don't Know
## 369                    Quite Disagree                   Quite Disagree
## 370                    Quite Disagree                     Partly Agree
## 371                    Quite Disagree                     Partly Agree
## 372                    Quite Disagree                     Partly Agree
## 373                      Partly Agree                     Partly Agree
## 374                      Partly Agree                     Partly Agree
## 375                        Don't Know                   Quite Disagree
## 376                      Partly Agree                   Quite Disagree
## 377                 Strongly Disagree                   Quite Disagree
## 378                 Strongly Disagree                     Partly Agree
## 379                    Quite Disagree                   Quite Disagree
## 380                    Quite Disagree                     Partly Agree
## 381                        Don't Know                       Don't Know
## 382                        Don't Know                     Partly Agree
## 383                    Quite Disagree                       Don't Know
## 384                    Quite Disagree                       Don't Know
## 385                    Quite Disagree                   Quite Disagree
## 386                    Quite Disagree                   Quite Disagree
## 387                    Quite Disagree                   Quite Disagree
## 388                        Don't Know                       Don't Know
## 389                    Quite Disagree                   Quite Disagree
## 390                    Strongly Agree                     Partly Agree
## 391                      Partly Agree                   Quite Disagree
## 392                    Quite Disagree                   Quite Disagree
## 393                        Don't Know                       Don't Know
## 394                        Don't Know                       Don't Know
## 395                    Quite Disagree                     Partly Agree
## 396                      Partly Agree                     Partly Agree
## 397                    Quite Disagree                   Quite Disagree
## 398                    Quite Disagree                       Don't Know
## 399                        Don't Know                       Don't Know
## 400                    Quite Disagree                   Quite Disagree
## 401                    Quite Disagree                   Quite Disagree
## 402                 Strongly Disagree                Strongly Disagree
## 403                    Quite Disagree                Strongly Disagree
## 404                    Quite Disagree                   Quite Disagree
## 405                    Quite Disagree                     Partly Agree
## 406                 Strongly Disagree                Strongly Disagree
## 407                 Strongly Disagree                Strongly Disagree
## 408                 Strongly Disagree                Strongly Disagree
## 409                    Quite Disagree                     Partly Agree
## 410                      Partly Agree                     Partly Agree
## 411                 Strongly Disagree                Strongly Disagree
## 412                 Strongly Disagree                Strongly Disagree
## 413                 Strongly Disagree                Strongly Disagree
## 414                 Strongly Disagree                             <NA>
## 415                        Don't Know                       Don't Know
## 416                 Strongly Disagree                Strongly Disagree
## 417                 Strongly Disagree                       Don't Know
## 418                 Strongly Disagree                Strongly Disagree
## 419                 Strongly Disagree                Strongly Disagree
## 420                    Quite Disagree                   Strongly Agree
## 421                 Strongly Disagree                Strongly Disagree
## 422                        Don't Know                       Don't Know
## 423                 Strongly Disagree                Strongly Disagree
## 424                 Strongly Disagree                Strongly Disagree
## 425                 Strongly Disagree                Strongly Disagree
## 426                 Strongly Disagree                Strongly Disagree
## 427                 Strongly Disagree                Strongly Disagree
## 428                        Don't Know                       Don't Know
## 429                    Quite Disagree                   Quite Disagree
## 430                 Strongly Disagree                Strongly Disagree
## 431                    Quite Disagree                   Quite Disagree
## 432                        Don't Know                       Don't Know
## 433                    Quite Disagree                   Quite Disagree
## 434                 Strongly Disagree                Strongly Disagree
## 435                    Quite Disagree                   Quite Disagree
## 436                 Strongly Disagree                Strongly Disagree
## 437                 Strongly Disagree                Strongly Disagree
## 438                 Strongly Disagree                   Quite Disagree
## 439                 Strongly Disagree                Strongly Disagree
## 440                 Strongly Disagree                Strongly Disagree
## 441                    Quite Disagree                   Quite Disagree
## 442                      Partly Agree                             <NA>
## 443                 Strongly Disagree                Strongly Disagree
## 444                 Strongly Disagree                Strongly Disagree
## 445                 Strongly Disagree                Strongly Disagree
## 446                 Strongly Disagree                Strongly Disagree
## 447                        Don't Know                       Don't Know
## 448                 Strongly Disagree                Strongly Disagree
## 449                 Strongly Disagree                Strongly Disagree
## 450                    Quite Disagree                             <NA>
## 451                 Strongly Disagree                Strongly Disagree
## 452                 Strongly Disagree                Strongly Disagree
## 453                    Quite Disagree                             <NA>
## 454                      Partly Agree                             <NA>
## 455                              <NA>                             <NA>
## 456                    Strongly Agree                             <NA>
## 457                        Don't Know                             <NA>
## 458                 Strongly Disagree                             <NA>
## 459                      Partly Agree                             <NA>
## 460                        Don't Know                             <NA>
## 461                 Strongly Disagree                             <NA>
## 462                      Partly Agree                             <NA>
## 463                    Strongly Agree                             <NA>
## 464                    Strongly Agree                             <NA>
## 465                 Strongly Disagree                             <NA>
## 466                    Strongly Agree                             <NA>
## 467                    Strongly Agree                             <NA>
## 468                      Partly Agree                             <NA>
## 469                      Partly Agree                             <NA>
## 470                    Strongly Agree                             <NA>
## 471                 Strongly Disagree                             <NA>
## 472                    Quite Disagree                             <NA>
## 473                      Partly Agree                             <NA>
## 474                        Don't Know                             <NA>
## 475                 Strongly Disagree                             <NA>
## 476                        Don't Know                             <NA>
## 477                 Strongly Disagree                             <NA>
## 478                      Partly Agree                             <NA>
## 479                        Don't Know                             <NA>
## 480                 Strongly Disagree                             <NA>
## 481                        Don't Know                             <NA>
## 482                 Strongly Disagree                             <NA>
## 483                        Don't Know                             <NA>
## 484                      Partly Agree                             <NA>
## 485                      Partly Agree                             <NA>
## 486                 Strongly Disagree                             <NA>
## 487                    Quite Disagree                             <NA>
## 488                    Quite Disagree                             <NA>
## 489                        Don't Know                             <NA>
## 490                      Partly Agree                             <NA>
## 491                    Strongly Agree                             <NA>
## 492                      Partly Agree                             <NA>
## 493                 Strongly Disagree                             <NA>
## 494                      Partly Agree                             <NA>
## 495                      Partly Agree                             <NA>
## 496                      Partly Agree                             <NA>
##      Governing.System..The.Army.Rule Governing.System..Dictatorship
## 1                  Strongly Disagree                 Quite Disagree
## 2                  Strongly Disagree              Strongly Disagree
## 3                  Strongly Disagree                 Strongly Agree
## 4                     Quite Disagree                 Quite Disagree
## 5                       Partly Agree                 Strongly Agree
## 6                       Partly Agree                 Strongly Agree
## 7                     Strongly Agree                 Strongly Agree
## 8                       Partly Agree                   Partly Agree
## 9                  Strongly Disagree                   Partly Agree
## 10                 Strongly Disagree                 Strongly Agree
## 11                              <NA>                           <NA>
## 12                 Strongly Disagree                   Partly Agree
## 13                 Strongly Disagree              Strongly Disagree
## 14                    Strongly Agree                 Strongly Agree
## 15                 Strongly Disagree              Strongly Disagree
## 16                 Strongly Disagree              Strongly Disagree
## 17                      Partly Agree                   Partly Agree
## 18                      Partly Agree                   Partly Agree
## 19                      Partly Agree                 Quite Disagree
## 20                      Partly Agree                 Quite Disagree
## 21                 Strongly Disagree              Strongly Disagree
## 22                    Quite Disagree                 Quite Disagree
## 23                 Strongly Disagree              Strongly Disagree
## 24                    Quite Disagree                 Quite Disagree
## 25                      Partly Agree                   Partly Agree
## 26                        Don't Know                     Don't Know
## 27                      Partly Agree                           <NA>
## 28                              <NA>                 Strongly Agree
## 29                        Don't Know                     Don't Know
## 30                 Strongly Disagree                   Partly Agree
## 31                      Partly Agree                 Quite Disagree
## 32                        Don't Know                     Don't Know
## 33                      Partly Agree                 Quite Disagree
## 34                 Strongly Disagree              Strongly Disagree
## 35                    Strongly Agree                 Quite Disagree
## 36                      Partly Agree                 Quite Disagree
## 37                 Strongly Disagree                   Partly Agree
## 38                 Strongly Disagree                 Quite Disagree
## 39                 Strongly Disagree                 Quite Disagree
## 40                 Strongly Disagree                   Partly Agree
## 41                    Quite Disagree                   Partly Agree
## 42                 Strongly Disagree                 Quite Disagree
## 43                 Strongly Disagree                   Partly Agree
## 44                 Strongly Disagree              Strongly Disagree
## 45                 Strongly Disagree                 Quite Disagree
## 46                 Strongly Disagree              Strongly Disagree
## 47                 Strongly Disagree              Strongly Disagree
## 48                 Strongly Disagree              Strongly Disagree
## 49                 Strongly Disagree              Strongly Disagree
## 50                        Don't Know                 Quite Disagree
## 51                              <NA>                   Partly Agree
## 52                 Strongly Disagree                   Partly Agree
## 53                    Quite Disagree                 Quite Disagree
## 54                    Strongly Agree                   Partly Agree
## 55                 Strongly Disagree                 Quite Disagree
## 56                    Quite Disagree                   Partly Agree
## 57                 Strongly Disagree                   Partly Agree
## 58                        Don't Know                   Partly Agree
## 59                      Partly Agree                   Partly Agree
## 60                      Partly Agree                   Partly Agree
## 61                    Quite Disagree                 Quite Disagree
## 62                 Strongly Disagree              Strongly Disagree
## 63                    Quite Disagree                 Quite Disagree
## 64                    Quite Disagree                 Quite Disagree
## 65                    Quite Disagree                 Quite Disagree
## 66                    Quite Disagree                 Quite Disagree
## 67                    Quite Disagree                 Quite Disagree
## 68                    Quite Disagree                 Quite Disagree
## 69                    Quite Disagree                 Quite Disagree
## 70                    Quite Disagree                           <NA>
## 71                    Quite Disagree                 Quite Disagree
## 72                    Quite Disagree                 Quite Disagree
## 73                    Quite Disagree                 Quite Disagree
## 74                    Quite Disagree                 Quite Disagree
## 75                    Quite Disagree                 Quite Disagree
## 76                    Quite Disagree                 Quite Disagree
## 77                    Quite Disagree                 Quite Disagree
## 78                    Quite Disagree                 Quite Disagree
## 79                    Quite Disagree                 Quite Disagree
## 80                    Quite Disagree                 Quite Disagree
## 81                    Quite Disagree                 Quite Disagree
## 82                    Quite Disagree                 Quite Disagree
## 83                      Partly Agree                 Quite Disagree
## 84                    Quite Disagree                 Quite Disagree
## 85                    Quite Disagree                 Quite Disagree
## 86                 Strongly Disagree                   Partly Agree
## 87                      Partly Agree                   Partly Agree
## 88                    Quite Disagree                 Quite Disagree
## 89                    Quite Disagree              Strongly Disagree
## 90                      Partly Agree                 Quite Disagree
## 91                      Partly Agree                 Quite Disagree
## 92                      Partly Agree                 Quite Disagree
## 93                      Partly Agree                 Quite Disagree
## 94                      Partly Agree                 Quite Disagree
## 95                 Strongly Disagree              Strongly Disagree
## 96                    Quite Disagree                 Quite Disagree
## 97                    Quite Disagree                 Quite Disagree
## 98                    Quite Disagree                 Quite Disagree
## 99                    Quite Disagree              Strongly Disagree
## 100                   Quite Disagree                 Quite Disagree
## 101                Strongly Disagree              Strongly Disagree
## 102                     Partly Agree                 Strongly Agree
## 103                     Partly Agree              Strongly Disagree
## 104                Strongly Disagree              Strongly Disagree
## 105                Strongly Disagree              Strongly Disagree
## 106                   Quite Disagree              Strongly Disagree
## 107                   Quite Disagree              Strongly Disagree
## 108                Strongly Disagree              Strongly Disagree
## 109                Strongly Disagree              Strongly Disagree
## 110                Strongly Disagree              Strongly Disagree
## 111                Strongly Disagree              Strongly Disagree
## 112                   Quite Disagree              Strongly Disagree
## 113                Strongly Disagree              Strongly Disagree
## 114                   Strongly Agree              Strongly Disagree
## 115                       Don't Know              Strongly Disagree
## 116                       Don't Know              Strongly Disagree
## 117                Strongly Disagree                 Strongly Agree
## 118                     Partly Agree                   Partly Agree
## 119                Strongly Disagree              Strongly Disagree
## 120                Strongly Disagree              Strongly Disagree
## 121                Strongly Disagree              Strongly Disagree
## 122                   Quite Disagree                   Partly Agree
## 123                   Quite Disagree              Strongly Disagree
## 124                   Quite Disagree              Strongly Disagree
## 125                Strongly Disagree                 Quite Disagree
## 126                Strongly Disagree              Strongly Disagree
## 127                     Partly Agree                     Don't Know
## 128                   Quite Disagree                   Partly Agree
## 129                   Quite Disagree              Strongly Disagree
## 130                     Partly Agree                 Strongly Agree
## 131                Strongly Disagree                   Partly Agree
## 132                Strongly Disagree                 Quite Disagree
## 133                Strongly Disagree              Strongly Disagree
## 134                Strongly Disagree              Strongly Disagree
## 135                Strongly Disagree              Strongly Disagree
## 136                       Don't Know                     Don't Know
## 137                     Partly Agree                 Strongly Agree
## 138                   Quite Disagree              Strongly Disagree
## 139                     Partly Agree              Strongly Disagree
## 140                   Quite Disagree              Strongly Disagree
## 141                Strongly Disagree              Strongly Disagree
## 142                   Quite Disagree              Strongly Disagree
## 143                   Quite Disagree                 Quite Disagree
## 144                Strongly Disagree                   Partly Agree
## 145                   Quite Disagree              Strongly Disagree
## 146                Strongly Disagree                 Quite Disagree
## 147                   Quite Disagree              Strongly Disagree
## 148                Strongly Disagree                 Quite Disagree
## 149                   Strongly Agree              Strongly Disagree
## 150                       Don't Know                 Quite Disagree
## 151                   Quite Disagree              Strongly Disagree
## 152                   Strongly Agree                   Partly Agree
## 153                       Don't Know                     Don't Know
## 154                     Partly Agree              Strongly Disagree
## 155                   Strongly Agree                 Quite Disagree
## 156                   Quite Disagree              Strongly Disagree
## 157                       Don't Know                     Don't Know
## 158                Strongly Disagree              Strongly Disagree
## 159                Strongly Disagree              Strongly Disagree
## 160                   Quite Disagree              Strongly Disagree
## 161                   Strongly Agree                   Partly Agree
## 162                     Partly Agree                 Strongly Agree
## 163                       Don't Know                     Don't Know
## 164                       Don't Know                     Don't Know
## 165                Strongly Disagree              Strongly Disagree
## 166                Strongly Disagree              Strongly Disagree
## 167                Strongly Disagree              Strongly Disagree
## 168                   Quite Disagree              Strongly Disagree
## 169                   Quite Disagree                 Quite Disagree
## 170                       Don't Know                     Don't Know
## 171                       Don't Know                     Don't Know
## 172                       Don't Know                     Don't Know
## 173                       Don't Know                     Don't Know
## 174                   Quite Disagree                   Partly Agree
## 175                Strongly Disagree              Strongly Disagree
## 176                   Strongly Agree                   Partly Agree
## 177                       Don't Know                     Don't Know
## 178                Strongly Disagree              Strongly Disagree
## 179                       Don't Know                     Don't Know
## 180                   Quite Disagree                 Quite Disagree
## 181                     Partly Agree                   Partly Agree
## 182                     Partly Agree                   Partly Agree
## 183                       Don't Know                     Don't Know
## 184                     Partly Agree                   Partly Agree
## 185                     Partly Agree                   Partly Agree
## 186                     Partly Agree                   Partly Agree
## 187                   Quite Disagree                 Quite Disagree
## 188                       Don't Know                     Don't Know
## 189                       Don't Know                     Don't Know
## 190                       Don't Know                     Don't Know
## 191                       Don't Know                     Don't Know
## 192                     Partly Agree                   Partly Agree
## 193                Strongly Disagree              Strongly Disagree
## 194                     Partly Agree                   Partly Agree
## 195                     Partly Agree                   Partly Agree
## 196                   Quite Disagree                 Quite Disagree
## 197                     Partly Agree                   Partly Agree
## 198                   Quite Disagree                 Quite Disagree
## 199                   Quite Disagree                 Quite Disagree
## 200                   Quite Disagree                   Partly Agree
## 201                   Quite Disagree                   Partly Agree
## 202                     Partly Agree                 Quite Disagree
## 203                Strongly Disagree                 Strongly Agree
## 204                     Partly Agree                   Partly Agree
## 205                     Partly Agree                 Quite Disagree
## 206                     Partly Agree                 Quite Disagree
## 207                   Quite Disagree                 Strongly Agree
## 208                     Partly Agree                 Quite Disagree
## 209                   Strongly Agree                 Strongly Agree
## 210                     Partly Agree                 Quite Disagree
## 211                     Partly Agree                 Quite Disagree
## 212                   Quite Disagree                 Quite Disagree
## 213                     Partly Agree                 Quite Disagree
## 214                     Partly Agree                 Quite Disagree
## 215                     Partly Agree                 Quite Disagree
## 216                     Partly Agree                 Quite Disagree
## 217                Strongly Disagree                 Quite Disagree
## 218                     Partly Agree                 Quite Disagree
## 219                   Quite Disagree                 Quite Disagree
## 220                     Partly Agree                 Quite Disagree
## 221                     Partly Agree                 Quite Disagree
## 222                Strongly Disagree                 Quite Disagree
## 223                     Partly Agree                 Quite Disagree
## 224                   Quite Disagree                 Quite Disagree
## 225                   Quite Disagree                   Partly Agree
## 226                   Strongly Agree                 Quite Disagree
## 227                     Partly Agree                   Partly Agree
## 228                   Strongly Agree                 Quite Disagree
## 229                   Strongly Agree                 Quite Disagree
## 230                   Quite Disagree                   Partly Agree
## 231                   Quite Disagree                   Partly Agree
## 232                   Strongly Agree                 Strongly Agree
## 233                   Quite Disagree                 Quite Disagree
## 234                   Quite Disagree                 Quite Disagree
## 235                   Quite Disagree                 Quite Disagree
## 236                   Quite Disagree                   Partly Agree
## 237                   Quite Disagree              Strongly Disagree
## 238                     Partly Agree                 Quite Disagree
## 239                   Quite Disagree                 Quite Disagree
## 240                   Quite Disagree                 Quite Disagree
## 241                   Quite Disagree                 Quite Disagree
## 242                Strongly Disagree                 Quite Disagree
## 243                   Quite Disagree                 Quite Disagree
## 244                   Quite Disagree                 Quite Disagree
## 245                Strongly Disagree                   Partly Agree
## 246                Strongly Disagree                   Partly Agree
## 247                Strongly Disagree                 Quite Disagree
## 248                Strongly Disagree                 Quite Disagree
## 249                   Quite Disagree              Strongly Disagree
## 250                Strongly Disagree                   Partly Agree
## 251                   Quite Disagree              Strongly Disagree
## 252                   Strongly Agree              Strongly Disagree
## 253                       Don't Know              Strongly Disagree
## 254                   Quite Disagree                 Quite Disagree
## 255                   Quite Disagree                 Strongly Agree
## 256                     Partly Agree                 Quite Disagree
## 257                       Don't Know              Strongly Disagree
## 258                       Don't Know                 Quite Disagree
## 259                       Don't Know                     Don't Know
## 260                   Strongly Agree              Strongly Disagree
## 261                       Don't Know                 Quite Disagree
## 262                     Partly Agree                 Quite Disagree
## 263                       Don't Know                     Don't Know
## 264                Strongly Disagree              Strongly Disagree
## 265                       Don't Know                     Don't Know
## 266                   Strongly Agree                   Partly Agree
## 267                     Partly Agree                 Strongly Agree
## 268                       Don't Know                     Don't Know
## 269                   Quite Disagree              Strongly Disagree
## 270                   Strongly Agree                 Strongly Agree
## 271                       Don't Know              Strongly Disagree
## 272                       Don't Know                 Strongly Agree
## 273                       Don't Know                 Quite Disagree
## 274                     Partly Agree                 Quite Disagree
## 275                   Quite Disagree              Strongly Disagree
## 276                   Strongly Agree                   Partly Agree
## 277                       Don't Know                     Don't Know
## 278                   Strongly Agree              Strongly Disagree
## 279                     Partly Agree                   Partly Agree
## 280                Strongly Disagree                   Partly Agree
## 281                Strongly Disagree              Strongly Disagree
## 282                Strongly Disagree              Strongly Disagree
## 283                Strongly Disagree              Strongly Disagree
## 284                             <NA>                   Partly Agree
## 285                       Don't Know              Strongly Disagree
## 286                Strongly Disagree              Strongly Disagree
## 287                       Don't Know              Strongly Disagree
## 288                       Don't Know                     Don't Know
## 289                       Don't Know                 Strongly Agree
## 290                   Quite Disagree              Strongly Disagree
## 291                Strongly Disagree              Strongly Disagree
## 292                     Partly Agree                 Strongly Agree
## 293                   Quite Disagree                 Quite Disagree
## 294                   Quite Disagree              Strongly Disagree
## 295                     Partly Agree              Strongly Disagree
## 296                   Strongly Agree                 Strongly Agree
## 297                       Don't Know              Strongly Disagree
## 298                   Quite Disagree                 Strongly Agree
## 299                       Don't Know                     Don't Know
## 300                       Don't Know              Strongly Disagree
## 302                Strongly Disagree              Strongly Disagree
## 303                   Quite Disagree              Strongly Disagree
## 304                Strongly Disagree              Strongly Disagree
## 305                   Strongly Agree                   Partly Agree
## 306                Strongly Disagree              Strongly Disagree
## 307                Strongly Disagree              Strongly Disagree
## 308                Strongly Disagree              Strongly Disagree
## 309                Strongly Disagree                 Strongly Agree
## 310                   Quite Disagree                   Partly Agree
## 311                Strongly Disagree              Strongly Disagree
## 312                Strongly Disagree              Strongly Disagree
## 313                Strongly Disagree              Strongly Disagree
## 314                       Don't Know                     Don't Know
## 315                       Don't Know                     Don't Know
## 316                Strongly Disagree              Strongly Disagree
## 317                Strongly Disagree              Strongly Disagree
## 318                   Strongly Agree                   Partly Agree
## 319                   Strongly Agree                 Strongly Agree
## 320                   Quite Disagree                   Partly Agree
## 321                Strongly Disagree                 Quite Disagree
## 322                       Don't Know                     Don't Know
## 323                       Don't Know                 Strongly Agree
## 324                Strongly Disagree              Strongly Disagree
## 325                Strongly Disagree              Strongly Disagree
## 326                Strongly Disagree              Strongly Disagree
## 327                Strongly Disagree              Strongly Disagree
## 328                Strongly Disagree              Strongly Disagree
## 329                   Strongly Agree                 Quite Disagree
## 330                       Don't Know                   Partly Agree
## 331                   Quite Disagree                 Quite Disagree
## 332                   Strongly Agree                     Don't Know
## 333                     Partly Agree                 Strongly Agree
## 334                     Partly Agree                 Strongly Agree
## 335                       Don't Know                 Strongly Agree
## 336                Strongly Disagree              Strongly Disagree
## 337                   Strongly Agree                     Don't Know
## 338                     Partly Agree              Strongly Disagree
## 339                   Strongly Agree                   Partly Agree
## 340                Strongly Disagree              Strongly Disagree
## 341                Strongly Disagree              Strongly Disagree
## 342                Strongly Disagree                 Quite Disagree
## 343                Strongly Disagree              Strongly Disagree
## 344                     Partly Agree                   Partly Agree
## 345                   Quite Disagree                 Quite Disagree
## 346                   Quite Disagree                   Partly Agree
## 347                   Quite Disagree                   Partly Agree
## 348                Strongly Disagree              Strongly Disagree
## 349                   Quite Disagree                   Partly Agree
## 350                Strongly Disagree              Strongly Disagree
## 351                       Don't Know                     Don't Know
## 352                       Don't Know                     Don't Know
## 353                     Partly Agree                 Quite Disagree
## 354                       Don't Know                     Don't Know
## 355                     Partly Agree                   Partly Agree
## 356                       Don't Know                     Don't Know
## 357                     Partly Agree                 Quite Disagree
## 358                     Partly Agree                   Partly Agree
## 359                   Quite Disagree                 Quite Disagree
## 360                     Partly Agree              Strongly Disagree
## 361                     Partly Agree              Strongly Disagree
## 362                Strongly Disagree                 Quite Disagree
## 363                   Quite Disagree                 Quite Disagree
## 364                     Partly Agree                 Quite Disagree
## 365                   Quite Disagree                     Don't Know
## 366                Strongly Disagree                   Partly Agree
## 367                     Partly Agree                 Quite Disagree
## 368                     Partly Agree                   Partly Agree
## 369                   Quite Disagree                 Quite Disagree
## 370                     Partly Agree                 Quite Disagree
## 371                   Quite Disagree                 Quite Disagree
## 372                   Quite Disagree                   Partly Agree
## 373                     Partly Agree                 Quite Disagree
## 374                     Partly Agree                 Quite Disagree
## 375                     Partly Agree              Strongly Disagree
## 376                Strongly Disagree                 Quite Disagree
## 377                Strongly Disagree              Strongly Disagree
## 378                     Partly Agree                 Quite Disagree
## 379                     Partly Agree                   Partly Agree
## 380                   Quite Disagree                 Quite Disagree
## 381                       Don't Know                     Don't Know
## 382                       Don't Know                     Don't Know
## 383                   Quite Disagree                 Quite Disagree
## 384                   Quite Disagree                 Quite Disagree
## 385                   Quite Disagree                 Quite Disagree
## 386                   Quite Disagree                 Quite Disagree
## 387                   Quite Disagree                 Quite Disagree
## 388                       Don't Know                     Don't Know
## 389                   Quite Disagree                 Quite Disagree
## 390                   Quite Disagree              Strongly Disagree
## 391                     Partly Agree                 Quite Disagree
## 392                   Quite Disagree                 Quite Disagree
## 393                       Don't Know                     Don't Know
## 394                       Don't Know                     Don't Know
## 395                   Quite Disagree                 Strongly Agree
## 396                   Quite Disagree                 Quite Disagree
## 397                   Quite Disagree                 Quite Disagree
## 398                   Quite Disagree                 Quite Disagree
## 399                       Don't Know                     Don't Know
## 400                   Quite Disagree                 Quite Disagree
## 401                   Quite Disagree                 Quite Disagree
## 402                Strongly Disagree              Strongly Disagree
## 403                Strongly Disagree                   Partly Agree
## 404                       Don't Know                 Quite Disagree
## 405                Strongly Disagree              Strongly Disagree
## 406                Strongly Disagree              Strongly Disagree
## 407                Strongly Disagree              Strongly Disagree
## 408                Strongly Disagree              Strongly Disagree
## 409                   Strongly Agree                 Strongly Agree
## 410                Strongly Disagree              Strongly Disagree
## 411                Strongly Disagree              Strongly Disagree
## 412                Strongly Disagree              Strongly Disagree
## 413                Strongly Disagree              Strongly Disagree
## 414                             <NA>                   Partly Agree
## 415                       Don't Know                     Don't Know
## 416                Strongly Disagree              Strongly Disagree
## 417                       Don't Know                           <NA>
## 418                Strongly Disagree              Strongly Disagree
## 419                Strongly Disagree              Strongly Disagree
## 420                   Strongly Agree                   Partly Agree
## 421                Strongly Disagree              Strongly Disagree
## 422                       Don't Know                     Don't Know
## 423                Strongly Disagree              Strongly Disagree
## 424                Strongly Disagree              Strongly Disagree
## 425                Strongly Disagree              Strongly Disagree
## 426                Strongly Disagree              Strongly Disagree
## 427                Strongly Disagree              Strongly Disagree
## 428                       Don't Know                     Don't Know
## 429                   Quite Disagree                 Quite Disagree
## 430                Strongly Disagree              Strongly Disagree
## 431                   Quite Disagree                 Quite Disagree
## 432                       Don't Know                     Don't Know
## 433                   Quite Disagree                 Quite Disagree
## 434                Strongly Disagree              Strongly Disagree
## 435                   Quite Disagree                 Quite Disagree
## 436                Strongly Disagree              Strongly Disagree
## 437                Strongly Disagree              Strongly Disagree
## 438                     Partly Agree                   Partly Agree
## 439                Strongly Disagree              Strongly Disagree
## 440                Strongly Disagree              Strongly Disagree
## 441                   Quite Disagree                 Quite Disagree
## 442                             <NA>                           <NA>
## 443                Strongly Disagree              Strongly Disagree
## 444                Strongly Disagree              Strongly Disagree
## 445                Strongly Disagree              Strongly Disagree
## 446                Strongly Disagree              Strongly Disagree
## 447                       Don't Know                     Don't Know
## 448                Strongly Disagree              Strongly Disagree
## 449                Strongly Disagree              Strongly Disagree
## 450                             <NA>                           <NA>
## 451                Strongly Disagree              Strongly Disagree
## 452                Strongly Disagree              Strongly Disagree
## 453                     Partly Agree                   Partly Agree
## 454                Strongly Disagree              Strongly Disagree
## 455                Strongly Disagree                   Partly Agree
## 456                Strongly Disagree              Strongly Disagree
## 457                Strongly Disagree                   Partly Agree
## 458                Strongly Disagree                   Partly Agree
## 459                Strongly Disagree                 Strongly Agree
## 460                     Partly Agree                 Strongly Agree
## 461                Strongly Disagree                           <NA>
## 462                Strongly Disagree              Strongly Disagree
## 463                Strongly Disagree                 Quite Disagree
## 464                Strongly Disagree                 Quite Disagree
## 465                Strongly Disagree                 Quite Disagree
## 466                   Strongly Agree              Strongly Disagree
## 467                   Strongly Agree                 Strongly Agree
## 468                     Partly Agree                 Strongly Agree
## 469                   Strongly Agree              Strongly Disagree
## 470                       Don't Know                   Partly Agree
## 471                   Quite Disagree                 Strongly Agree
## 472                     Partly Agree                           <NA>
## 473                Strongly Disagree                 Quite Disagree
## 474                Strongly Disagree              Strongly Disagree
## 475                     Partly Agree                 Strongly Agree
## 476                       Don't Know                     Don't Know
## 477                     Partly Agree                 Strongly Agree
## 478                Strongly Disagree              Strongly Disagree
## 479                       Don't Know                     Don't Know
## 480                Strongly Disagree              Strongly Disagree
## 481                Strongly Disagree              Strongly Disagree
## 482                Strongly Disagree              Strongly Disagree
## 483                     Partly Agree                   Partly Agree
## 484                Strongly Disagree              Strongly Disagree
## 485                Strongly Disagree                   Partly Agree
## 486                Strongly Disagree              Strongly Disagree
## 487                   Quite Disagree                 Quite Disagree
## 488                   Strongly Agree                   Partly Agree
## 489                Strongly Disagree              Strongly Disagree
## 490                Strongly Disagree                 Strongly Agree
## 491                Strongly Disagree                 Strongly Agree
## 492                Strongly Disagree              Strongly Disagree
## 493                Strongly Disagree                 Strongly Agree
## 494                     Partly Agree                 Quite Disagree
## 495                Strongly Disagree                   Partly Agree
## 496                Strongly Disagree              Strongly Disagree
##      Governing.System..The.Monarchy
## 1                 Strongly Disagree
## 2                      Partly Agree
## 3                 Strongly Disagree
## 4                    Strongly Agree
## 5                        Don't Know
## 6                        Don't Know
## 7                        Don't Know
## 8                 Strongly Disagree
## 9                 Strongly Disagree
## 10                     Partly Agree
## 11                             <NA>
## 12                Strongly Disagree
## 13                Strongly Disagree
## 14                     Partly Agree
## 15                Strongly Disagree
## 16                Strongly Disagree
## 17                   Quite Disagree
## 18                   Quite Disagree
## 19                     Partly Agree
## 20                   Quite Disagree
## 21                     Partly Agree
## 22                Strongly Disagree
## 23                Strongly Disagree
## 24                     Partly Agree
## 25                     Partly Agree
## 26                       Don't Know
## 27                   Quite Disagree
## 28                       Don't Know
## 29                       Don't Know
## 30                Strongly Disagree
## 31                   Quite Disagree
## 32                       Don't Know
## 33                   Quite Disagree
## 34                Strongly Disagree
## 35                     Partly Agree
## 36                   Quite Disagree
## 37                   Quite Disagree
## 38                Strongly Disagree
## 39                Strongly Disagree
## 40                Strongly Disagree
## 41                   Quite Disagree
## 42                Strongly Disagree
## 43                Strongly Disagree
## 44                     Partly Agree
## 45                   Quite Disagree
## 46                     Partly Agree
## 47                Strongly Disagree
## 48                Strongly Disagree
## 49                Strongly Disagree
## 50                     Partly Agree
## 51                     Partly Agree
## 52                   Quite Disagree
## 53                   Strongly Agree
## 54                   Strongly Agree
## 55                Strongly Disagree
## 56                   Quite Disagree
## 57                   Strongly Agree
## 58                     Partly Agree
## 59                   Strongly Agree
## 60                     Partly Agree
## 61                   Quite Disagree
## 62                   Quite Disagree
## 63                     Partly Agree
## 64                   Quite Disagree
## 65                   Quite Disagree
## 66                   Quite Disagree
## 67                     Partly Agree
## 68                     Partly Agree
## 69                   Quite Disagree
## 70                   Quite Disagree
## 71                   Quite Disagree
## 72                     Partly Agree
## 73                   Quite Disagree
## 74                   Quite Disagree
## 75                     Partly Agree
## 76                     Partly Agree
## 77                     Partly Agree
## 78                     Partly Agree
## 79                   Quite Disagree
## 80                   Quite Disagree
## 81                   Quite Disagree
## 82                   Quite Disagree
## 83                     Partly Agree
## 84                   Quite Disagree
## 85                   Quite Disagree
## 86                   Quite Disagree
## 87                     Partly Agree
## 88                   Quite Disagree
## 89                   Quite Disagree
## 90                     Partly Agree
## 91                     Partly Agree
## 92                     Partly Agree
## 93                     Partly Agree
## 94                     Partly Agree
## 95                Strongly Disagree
## 96                     Partly Agree
## 97                     Partly Agree
## 98                     Partly Agree
## 99                     Partly Agree
## 100                  Quite Disagree
## 101               Strongly Disagree
## 102                    Partly Agree
## 103               Strongly Disagree
## 104               Strongly Disagree
## 105               Strongly Disagree
## 106               Strongly Disagree
## 107                  Quite Disagree
## 108                    Partly Agree
## 109                  Strongly Agree
## 110                    Partly Agree
## 111                    Partly Agree
## 112                  Strongly Agree
## 113                  Quite Disagree
## 114                  Strongly Agree
## 115                    Partly Agree
## 116                  Quite Disagree
## 117                      Don't Know
## 118                  Strongly Agree
## 119                  Strongly Agree
## 120                  Strongly Agree
## 121                  Quite Disagree
## 122                  Strongly Agree
## 123                  Quite Disagree
## 124                  Strongly Agree
## 125                  Strongly Agree
## 126                  Strongly Agree
## 127                  Strongly Agree
## 128                    Partly Agree
## 129                    Partly Agree
## 130               Strongly Disagree
## 131                      Don't Know
## 132                    Partly Agree
## 133                  Strongly Agree
## 134                    Partly Agree
## 135                    Partly Agree
## 136                      Don't Know
## 137               Strongly Disagree
## 138                    Partly Agree
## 139                    Partly Agree
## 140                  Strongly Agree
## 141                    Partly Agree
## 142                  Strongly Agree
## 143                    Partly Agree
## 144                  Strongly Agree
## 145                  Strongly Agree
## 146                  Strongly Agree
## 147                  Quite Disagree
## 148                  Quite Disagree
## 149                  Strongly Agree
## 150                    Partly Agree
## 151                    Partly Agree
## 152                    Partly Agree
## 153                      Don't Know
## 154                  Strongly Agree
## 155                    Partly Agree
## 156                    Partly Agree
## 157                      Don't Know
## 158               Strongly Disagree
## 159               Strongly Disagree
## 160                  Quite Disagree
## 161                  Strongly Agree
## 162                    Partly Agree
## 163                      Don't Know
## 164                      Don't Know
## 165               Strongly Disagree
## 166               Strongly Disagree
## 167               Strongly Disagree
## 168                  Quite Disagree
## 169                    Partly Agree
## 170                      Don't Know
## 171                      Don't Know
## 172                      Don't Know
## 173                      Don't Know
## 174                    Partly Agree
## 175               Strongly Disagree
## 176                    Partly Agree
## 177                      Don't Know
## 178               Strongly Disagree
## 179                      Don't Know
## 180                  Quite Disagree
## 181                    Partly Agree
## 182                    Partly Agree
## 183                      Don't Know
## 184                  Strongly Agree
## 185                    Partly Agree
## 186                    Partly Agree
## 187                  Quite Disagree
## 188                      Don't Know
## 189                      Don't Know
## 190                      Don't Know
## 191                      Don't Know
## 192                    Partly Agree
## 193               Strongly Disagree
## 194                    Partly Agree
## 195                    Partly Agree
## 196                  Quite Disagree
## 197                    Partly Agree
## 198                            <NA>
## 199                            <NA>
## 200                  Quite Disagree
## 201                    Partly Agree
## 202                    Partly Agree
## 203                  Quite Disagree
## 204                  Quite Disagree
## 205                  Strongly Agree
## 206                    Partly Agree
## 207                    Partly Agree
## 208                  Strongly Agree
## 209                    Partly Agree
## 210                    Partly Agree
## 211                  Strongly Agree
## 212                  Strongly Agree
## 213                  Strongly Agree
## 214                  Strongly Agree
## 215                  Strongly Agree
## 216                  Strongly Agree
## 217                    Partly Agree
## 218                    Partly Agree
## 219               Strongly Disagree
## 220                    Partly Agree
## 221                    Partly Agree
## 222                    Partly Agree
## 223                  Strongly Agree
## 224               Strongly Disagree
## 225               Strongly Disagree
## 226                  Quite Disagree
## 227                  Strongly Agree
## 228                    Partly Agree
## 229                    Partly Agree
## 230                  Quite Disagree
## 231                    Partly Agree
## 232                  Quite Disagree
## 233                    Partly Agree
## 234                    Partly Agree
## 235                    Partly Agree
## 236                    Partly Agree
## 237                  Strongly Agree
## 238                    Partly Agree
## 239                    Partly Agree
## 240                    Partly Agree
## 241                    Partly Agree
## 242                  Quite Disagree
## 243                    Partly Agree
## 244                    Partly Agree
## 245                    Partly Agree
## 246                    Partly Agree
## 247                    Partly Agree
## 248                    Partly Agree
## 249                    Partly Agree
## 250                  Quite Disagree
## 251               Strongly Disagree
## 252               Strongly Disagree
## 253                  Strongly Agree
## 254               Strongly Disagree
## 255                  Strongly Agree
## 256                  Quite Disagree
## 257               Strongly Disagree
## 258                  Strongly Agree
## 259                  Strongly Agree
## 260               Strongly Disagree
## 261                  Quite Disagree
## 262               Strongly Disagree
## 263                  Strongly Agree
## 264               Strongly Disagree
## 265                  Strongly Agree
## 266                  Strongly Agree
## 267                            <NA>
## 268                      Don't Know
## 269               Strongly Disagree
## 270                  Strongly Agree
## 271                  Strongly Agree
## 272                  Strongly Agree
## 273                  Quite Disagree
## 274                    Partly Agree
## 275                            <NA>
## 276                    Partly Agree
## 277                  Strongly Agree
## 278               Strongly Disagree
## 279               Strongly Disagree
## 280                  Quite Disagree
## 281               Strongly Disagree
## 282               Strongly Disagree
## 283                  Strongly Agree
## 284                  Quite Disagree
## 285                  Strongly Agree
## 286               Strongly Disagree
## 287               Strongly Disagree
## 288                      Don't Know
## 289               Strongly Disagree
## 290               Strongly Disagree
## 291               Strongly Disagree
## 292                    Partly Agree
## 293               Strongly Disagree
## 294               Strongly Disagree
## 295               Strongly Disagree
## 296               Strongly Disagree
## 297               Strongly Disagree
## 298               Strongly Disagree
## 299                  Strongly Agree
## 300               Strongly Disagree
## 302               Strongly Disagree
## 303                  Quite Disagree
## 304               Strongly Disagree
## 305                  Strongly Agree
## 306               Strongly Disagree
## 307               Strongly Disagree
## 308               Strongly Disagree
## 309               Strongly Disagree
## 310                  Quite Disagree
## 311               Strongly Disagree
## 312               Strongly Disagree
## 313               Strongly Disagree
## 314                  Strongly Agree
## 315                  Strongly Agree
## 316               Strongly Disagree
## 317                    Partly Agree
## 318                  Strongly Agree
## 319                  Strongly Agree
## 320               Strongly Disagree
## 321                  Quite Disagree
## 322                      Don't Know
## 323                  Strongly Agree
## 324               Strongly Disagree
## 325               Strongly Disagree
## 326               Strongly Disagree
## 327               Strongly Disagree
## 328               Strongly Disagree
## 329                  Quite Disagree
## 330                    Partly Agree
## 331                  Quite Disagree
## 332                  Strongly Agree
## 333                      Don't Know
## 334                      Don't Know
## 335                    Partly Agree
## 336               Strongly Disagree
## 337                  Strongly Agree
## 338                  Strongly Agree
## 339                      Don't Know
## 340                  Strongly Agree
## 341               Strongly Disagree
## 342               Strongly Disagree
## 343               Strongly Disagree
## 344                  Strongly Agree
## 345                    Partly Agree
## 346                  Quite Disagree
## 347                    Partly Agree
## 348               Strongly Disagree
## 349                  Strongly Agree
## 350               Strongly Disagree
## 351                  Strongly Agree
## 352                    Partly Agree
## 353                  Quite Disagree
## 354                    Partly Agree
## 355                  Quite Disagree
## 356                    Partly Agree
## 357                    Partly Agree
## 358                    Partly Agree
## 359                  Quite Disagree
## 360                  Quite Disagree
## 361                    Partly Agree
## 362                    Partly Agree
## 363                    Partly Agree
## 364                  Quite Disagree
## 365                    Partly Agree
## 366                  Strongly Agree
## 367                    Partly Agree
## 368                    Partly Agree
## 369                    Partly Agree
## 370                  Strongly Agree
## 371                    Partly Agree
## 372                  Quite Disagree
## 373                    Partly Agree
## 374                    Partly Agree
## 375                    Partly Agree
## 376                  Strongly Agree
## 377                  Quite Disagree
## 378                  Strongly Agree
## 379                    Partly Agree
## 380                      Don't Know
## 381                    Partly Agree
## 382                    Partly Agree
## 383                    Partly Agree
## 384                    Partly Agree
## 385                    Partly Agree
## 386                    Partly Agree
## 387                    Partly Agree
## 388                    Partly Agree
## 389                    Partly Agree
## 390                    Partly Agree
## 391               Strongly Disagree
## 392                    Partly Agree
## 393                    Partly Agree
## 394                    Partly Agree
## 395                  Strongly Agree
## 396                    Partly Agree
## 397                    Partly Agree
## 398                    Partly Agree
## 399                    Partly Agree
## 400                    Partly Agree
## 401                    Partly Agree
## 402               Strongly Disagree
## 403               Strongly Disagree
## 404                      Don't Know
## 405                  Quite Disagree
## 406               Strongly Disagree
## 407               Strongly Disagree
## 408               Strongly Disagree
## 409                    Partly Agree
## 410               Strongly Disagree
## 411               Strongly Disagree
## 412               Strongly Disagree
## 413               Strongly Disagree
## 414                    Partly Agree
## 415                      Don't Know
## 416               Strongly Disagree
## 417                      Don't Know
## 418               Strongly Disagree
## 419               Strongly Disagree
## 420                  Strongly Agree
## 421               Strongly Disagree
## 422                      Don't Know
## 423               Strongly Disagree
## 424               Strongly Disagree
## 425               Strongly Disagree
## 426               Strongly Disagree
## 427               Strongly Disagree
## 428                      Don't Know
## 429                  Quite Disagree
## 430               Strongly Disagree
## 431                  Quite Disagree
## 432                      Don't Know
## 433                  Quite Disagree
## 434               Strongly Disagree
## 435                  Quite Disagree
## 436               Strongly Disagree
## 437               Strongly Disagree
## 438                  Quite Disagree
## 439               Strongly Disagree
## 440               Strongly Disagree
## 441                  Quite Disagree
## 442                            <NA>
## 443               Strongly Disagree
## 444               Strongly Disagree
## 445               Strongly Disagree
## 446               Strongly Disagree
## 447                      Don't Know
## 448               Strongly Disagree
## 449               Strongly Disagree
## 450                  Strongly Agree
## 451               Strongly Disagree
## 452               Strongly Disagree
## 453                  Quite Disagree
## 454               Strongly Disagree
## 455                    Partly Agree
## 456                      Don't Know
## 457                      Don't Know
## 458               Strongly Disagree
## 459               Strongly Disagree
## 460                      Don't Know
## 461                    Partly Agree
## 462               Strongly Disagree
## 463                  Strongly Agree
## 464               Strongly Disagree
## 465                    Partly Agree
## 466                  Strongly Agree
## 467                  Strongly Agree
## 468                    Partly Agree
## 469                    Partly Agree
## 470                      Don't Know
## 471                  Quite Disagree
## 472               Strongly Disagree
## 473               Strongly Disagree
## 474               Strongly Disagree
## 475               Strongly Disagree
## 476                      Don't Know
## 477               Strongly Disagree
## 478               Strongly Disagree
## 479               Strongly Disagree
## 480               Strongly Disagree
## 481                  Strongly Agree
## 482               Strongly Disagree
## 483                  Quite Disagree
## 484               Strongly Disagree
## 485               Strongly Disagree
## 486               Strongly Disagree
## 487               Strongly Disagree
## 488                  Strongly Agree
## 489               Strongly Disagree
## 490               Strongly Disagree
## 491                  Strongly Agree
## 492               Strongly Disagree
## 493               Strongly Disagree
## 494                  Strongly Agree
## 495                  Quite Disagree
## 496               Strongly Disagree
##      Opinion..No.point.in.voting..partied.do.whatever.they.want
## 1                                                Strongly Agree
## 2                                                Strongly Agree
## 3                                             Strongly Disagree
## 4                                                Strongly Agree
## 5                                             Strongly Disagree
## 6                                                Quite Disagree
## 7                                                Strongly Agree
## 8                                                Quite Disagree
## 9                                                  Partly Agree
## 10                                               Quite Disagree
## 11                                               Quite Disagree
## 12                                               Quite Disagree
## 13                                            Strongly Disagree
## 14                                               Quite Disagree
## 15                                               Strongly Agree
## 16                                                 Partly Agree
## 17                                               Quite Disagree
## 18                                            Strongly Disagree
## 19                                            Strongly Disagree
## 20                                               Quite Disagree
## 21                                                 Partly Agree
## 22                                               Strongly Agree
## 23                                                 Partly Agree
## 24                                               Quite Disagree
## 25                                               Strongly Agree
## 26                                                 Partly Agree
## 27                                               Quite Disagree
## 28                                            Strongly Disagree
## 29                                                 Partly Agree
## 30                                            Strongly Disagree
## 31                                                 Partly Agree
## 32                                               Strongly Agree
## 33                                               Strongly Agree
## 34                                            Strongly Disagree
## 35                                               Strongly Agree
## 36                                               Quite Disagree
## 37                                               Quite Disagree
## 38                                            Strongly Disagree
## 39                                            Strongly Disagree
## 40                                            Strongly Disagree
## 41                                               Quite Disagree
## 42                                            Strongly Disagree
## 43                                            Strongly Disagree
## 44                                               Strongly Agree
## 45                                                 Partly Agree
## 46                                               Quite Disagree
## 47                                               Strongly Agree
## 48                                                 Partly Agree
## 49                                               Quite Disagree
## 50                                               Quite Disagree
## 51                                                 Partly Agree
## 52                                               Quite Disagree
## 53                                                 Partly Agree
## 54                                                 Partly Agree
## 55                                               Strongly Agree
## 56                                               Quite Disagree
## 57                                                 Partly Agree
## 58                                               Quite Disagree
## 59                                                 Partly Agree
## 60                                                 Partly Agree
## 61                                                 Partly Agree
## 62                                               Strongly Agree
## 63                                                 Partly Agree
## 64                                               Quite Disagree
## 65                                                 Partly Agree
## 66                                               Quite Disagree
## 67                                                 Partly Agree
## 68                                                 Partly Agree
## 69                                               Quite Disagree
## 70                                               Quite Disagree
## 71                                               Quite Disagree
## 72                                               Quite Disagree
## 73                                               Quite Disagree
## 74                                               Quite Disagree
## 75                                               Quite Disagree
## 76                                               Quite Disagree
## 77                                               Quite Disagree
## 78                                               Quite Disagree
## 79                                               Quite Disagree
## 80                                                 Partly Agree
## 81                                               Quite Disagree
## 82                                               Quite Disagree
## 83                                               Quite Disagree
## 84                                               Quite Disagree
## 85                                                 Partly Agree
## 86                                               Quite Disagree
## 87                                                 Partly Agree
## 88                                               Quite Disagree
## 89                                                 Partly Agree
## 90                                                 Partly Agree
## 91                                               Quite Disagree
## 92                                                 Partly Agree
## 93                                                 Partly Agree
## 94                                                 Partly Agree
## 95                                               Quite Disagree
## 96                                                 Partly Agree
## 97                                                 Partly Agree
## 98                                               Quite Disagree
## 99                                               Quite Disagree
## 100                                                Partly Agree
## 101                                              Strongly Agree
## 102                                              Quite Disagree
## 103                                           Strongly Disagree
## 104                                           Strongly Disagree
## 105                                              Quite Disagree
## 106                                              Quite Disagree
## 107                                           Strongly Disagree
## 108                                           Strongly Disagree
## 109                                                Partly Agree
## 110                                                Partly Agree
## 111                                                Partly Agree
## 112                                              Quite Disagree
## 113                                                Partly Agree
## 114                                           Strongly Disagree
## 115                                           Strongly Disagree
## 116                                                Partly Agree
## 117                                           Strongly Disagree
## 118                                           Strongly Disagree
## 119                                              Quite Disagree
## 120                                              Quite Disagree
## 121                                           Strongly Disagree
## 122                                           Strongly Disagree
## 123                                           Strongly Disagree
## 124                                           Strongly Disagree
## 125                                              Quite Disagree
## 126                                                Partly Agree
## 127                                              Quite Disagree
## 128                                                Partly Agree
## 129                                              Quite Disagree
## 130                                              Strongly Agree
## 131                                           Strongly Disagree
## 132                                                Partly Agree
## 133                                           Strongly Disagree
## 134                                           Strongly Disagree
## 135                                           Strongly Disagree
## 136                                                  Don't Know
## 137                                           Strongly Disagree
## 138                                                Partly Agree
## 139                                           Strongly Disagree
## 140                                           Strongly Disagree
## 141                                           Strongly Disagree
## 142                                                Partly Agree
## 143                                                Partly Agree
## 144                                                Partly Agree
## 145                                              Quite Disagree
## 146                                           Strongly Disagree
## 147                                           Strongly Disagree
## 148                                                Partly Agree
## 149                                              Quite Disagree
## 150                                           Strongly Disagree
## 151                                              Strongly Agree
## 152                                              Strongly Agree
## 153                                              Strongly Agree
## 154                                              Strongly Agree
## 155                                                Partly Agree
## 156                                              Strongly Agree
## 157                                                Partly Agree
## 158                                              Strongly Agree
## 159                                              Strongly Agree
## 160                                              Strongly Agree
## 161                                                Partly Agree
## 162                                              Strongly Agree
## 163                                                Partly Agree
## 164                                              Strongly Agree
## 165                                              Strongly Agree
## 166                                              Strongly Agree
## 167                                              Strongly Agree
## 168                                                Partly Agree
## 169                                                Partly Agree
## 170                                              Strongly Agree
## 171                                              Strongly Agree
## 172                                              Strongly Agree
## 173                                                Partly Agree
## 174                                              Strongly Agree
## 175                                                Partly Agree
## 176                                              Strongly Agree
## 177                                              Strongly Agree
## 178                                              Strongly Agree
## 179                                              Strongly Agree
## 180                                                Partly Agree
## 181                                                Partly Agree
## 182                                                Partly Agree
## 183                                                Partly Agree
## 184                                                Partly Agree
## 185                                                Partly Agree
## 186                                              Strongly Agree
## 187                                                Partly Agree
## 188                                                Partly Agree
## 189                                                Partly Agree
## 190                                              Strongly Agree
## 191                                              Strongly Agree
## 192                                                Partly Agree
## 193                                                Partly Agree
## 194                                                Partly Agree
## 195                                              Strongly Agree
## 196                                              Strongly Agree
## 197                                              Strongly Agree
## 198                                                Partly Agree
## 199                                              Strongly Agree
## 200                                              Strongly Agree
## 201                                              Quite Disagree
## 202                                                Partly Agree
## 203                                                Partly Agree
## 204                                                Partly Agree
## 205                                                Partly Agree
## 206                                                Partly Agree
## 207                                                Partly Agree
## 208                                                Partly Agree
## 209                                              Strongly Agree
## 210                                                Partly Agree
## 211                                              Strongly Agree
## 212                                              Strongly Agree
## 213                                              Strongly Agree
## 214                                              Strongly Agree
## 215                                              Strongly Agree
## 216                                              Strongly Agree
## 217                                              Quite Disagree
## 218                                              Quite Disagree
## 219                                              Quite Disagree
## 220                                                Partly Agree
## 221                                                Partly Agree
## 222                                              Quite Disagree
## 223                                                Partly Agree
## 224                                              Quite Disagree
## 225                                                Partly Agree
## 226                                                Partly Agree
## 227                                              Quite Disagree
## 228                                              Quite Disagree
## 229                                                Partly Agree
## 230                                              Strongly Agree
## 231                                                Partly Agree
## 232                                                Partly Agree
## 233                                              Quite Disagree
## 234                                              Quite Disagree
## 235                                                Partly Agree
## 236                                              Quite Disagree
## 237                                                Partly Agree
## 238                                           Strongly Disagree
## 239                                              Quite Disagree
## 240                                              Quite Disagree
## 241                                              Quite Disagree
## 242                                              Quite Disagree
## 243                                              Quite Disagree
## 244                                              Quite Disagree
## 245                                                Partly Agree
## 246                                              Quite Disagree
## 247                                                Partly Agree
## 248                                                Partly Agree
## 249                                                Partly Agree
## 250                                                Partly Agree
## 251                                                Partly Agree
## 252                                                Partly Agree
## 253                                                Partly Agree
## 254                                                Partly Agree
## 255                                                        <NA>
## 256                                           Strongly Disagree
## 257                                                Partly Agree
## 258                                                  Don't Know
## 259                                                Partly Agree
## 260                                           Strongly Disagree
## 261                                              Strongly Agree
## 262                                           Strongly Disagree
## 263                                              Strongly Agree
## 264                                           Strongly Disagree
## 265                                              Strongly Agree
## 266                                              Strongly Agree
## 267                                              Strongly Agree
## 268                                                Partly Agree
## 269                                                  Don't Know
## 270                                                Partly Agree
## 271                                                Partly Agree
## 272                                              Strongly Agree
## 273                                              Quite Disagree
## 274                                              Quite Disagree
## 275                                                Partly Agree
## 276                                              Quite Disagree
## 277                                                Partly Agree
## 278                                              Quite Disagree
## 279                                              Quite Disagree
## 280                                                Partly Agree
## 281                                              Quite Disagree
## 282                                              Quite Disagree
## 283                                           Strongly Disagree
## 284                                                Partly Agree
## 285                                                Partly Agree
## 286                                              Strongly Agree
## 287                                                Partly Agree
## 288                                                  Don't Know
## 289                                              Strongly Agree
## 290                                                Partly Agree
## 291                                              Quite Disagree
## 292                                              Strongly Agree
## 293                                                Partly Agree
## 294                                                Partly Agree
## 295                                                Partly Agree
## 296                                                Partly Agree
## 297                                                Partly Agree
## 298                                                Partly Agree
## 299                                              Strongly Agree
## 300                                              Quite Disagree
## 302                                              Quite Disagree
## 303                                              Quite Disagree
## 304                                                Partly Agree
## 305                                              Strongly Agree
## 306                                              Quite Disagree
## 307                                                Partly Agree
## 308                                              Quite Disagree
## 309                                              Quite Disagree
## 310                                                Partly Agree
## 311                                                Partly Agree
## 312                                              Quite Disagree
## 313                                              Quite Disagree
## 314                                                Partly Agree
## 315                                                Partly Agree
## 316                                                Partly Agree
## 317                                           Strongly Disagree
## 318                                                Partly Agree
## 319                                           Strongly Disagree
## 320                                              Quite Disagree
## 321                                           Strongly Disagree
## 322                                                Partly Agree
## 323                                                Partly Agree
## 324                                                Partly Agree
## 325                                              Quite Disagree
## 326                                              Quite Disagree
## 327                                              Quite Disagree
## 328                                                Partly Agree
## 329                                                Partly Agree
## 330                                           Strongly Disagree
## 331                                           Strongly Disagree
## 332                                           Strongly Disagree
## 333                                              Quite Disagree
## 334                                           Strongly Disagree
## 335                                              Strongly Agree
## 336                                              Quite Disagree
## 337                                              Quite Disagree
## 338                                                Partly Agree
## 339                                           Strongly Disagree
## 340                                           Strongly Disagree
## 341                                           Strongly Disagree
## 342                                           Strongly Disagree
## 343                                           Strongly Disagree
## 344                                              Strongly Agree
## 345                                                Partly Agree
## 346                                              Quite Disagree
## 347                                                Partly Agree
## 348                                              Quite Disagree
## 349                                              Quite Disagree
## 350                                                Partly Agree
## 351                                                Partly Agree
## 352                                                Partly Agree
## 353                                                Partly Agree
## 354                                                Partly Agree
## 355                                                Partly Agree
## 356                                                Partly Agree
## 357                                                Partly Agree
## 358                                                Partly Agree
## 359                                                Partly Agree
## 360                                                Partly Agree
## 361                                                Partly Agree
## 362                                                Partly Agree
## 363                                                Partly Agree
## 364                                                Partly Agree
## 365                                                Partly Agree
## 366                                                Partly Agree
## 367                                                Partly Agree
## 368                                                Partly Agree
## 369                                                Partly Agree
## 370                                              Quite Disagree
## 371                                                Partly Agree
## 372                                              Quite Disagree
## 373                                              Quite Disagree
## 374                                                Partly Agree
## 375                                              Strongly Agree
## 376                                                Partly Agree
## 377                                              Quite Disagree
## 378                                                Partly Agree
## 379                                                Partly Agree
## 380                                                Partly Agree
## 381                                                Partly Agree
## 382                                                Partly Agree
## 383                                                Partly Agree
## 384                                                Partly Agree
## 385                                                Partly Agree
## 386                                                Partly Agree
## 387                                                Partly Agree
## 388                                                Partly Agree
## 389                                                Partly Agree
## 390                                                Partly Agree
## 391                                                Partly Agree
## 392                                                Partly Agree
## 393                                                Partly Agree
## 394                                                Partly Agree
## 395                                                Partly Agree
## 396                                                Partly Agree
## 397                                                Partly Agree
## 398                                                Partly Agree
## 399                                                Partly Agree
## 400                                                Partly Agree
## 401                                                Partly Agree
## 402                                                Partly Agree
## 403                                              Strongly Agree
## 404                                           Strongly Disagree
## 405                                              Quite Disagree
## 406                                                Partly Agree
## 407                                                Partly Agree
## 408                                              Quite Disagree
## 409                                                Partly Agree
## 410                                              Quite Disagree
## 411                                              Quite Disagree
## 412                                              Quite Disagree
## 413                                              Quite Disagree
## 414                                                Partly Agree
## 415                                                  Don't Know
## 416                                                Partly Agree
## 417                                              Strongly Agree
## 418                                              Quite Disagree
## 419                                              Quite Disagree
## 420                                                Partly Agree
## 421                                              Quite Disagree
## 422                                                  Don't Know
## 423                                                  Don't Know
## 424                                              Quite Disagree
## 425                                              Quite Disagree
## 426                                                Partly Agree
## 427                                                Partly Agree
## 428                                                  Don't Know
## 429                                                Partly Agree
## 430                                                Partly Agree
## 431                                              Quite Disagree
## 432                                                  Don't Know
## 433                                                Partly Agree
## 434                                                Partly Agree
## 435                                                Partly Agree
## 436                                                Partly Agree
## 437                                                Partly Agree
## 438                                                Partly Agree
## 439                                              Quite Disagree
## 440                                              Strongly Agree
## 441                                                Partly Agree
## 442                                                Partly Agree
## 443                                              Strongly Agree
## 444                                                Partly Agree
## 445                                                Partly Agree
## 446                                                Partly Agree
## 447                                                Partly Agree
## 448                                              Strongly Agree
## 449                                                Partly Agree
## 450                                                Partly Agree
## 451                                                Partly Agree
## 452                                                Partly Agree
## 453                                                Partly Agree
## 454                                              Quite Disagree
## 455                                              Strongly Agree
## 456                                           Strongly Disagree
## 457                                              Quite Disagree
## 458                                              Strongly Agree
## 459                                              Quite Disagree
## 460                                           Strongly Disagree
## 461                                                Partly Agree
## 462                                           Strongly Disagree
## 463                                              Strongly Agree
## 464                                              Strongly Agree
## 465                                              Strongly Agree
## 466                                              Strongly Agree
## 467                                                Partly Agree
## 468                                                Partly Agree
## 469                                           Strongly Disagree
## 470                                                Partly Agree
## 471                                              Quite Disagree
## 472                                              Strongly Agree
## 473                                              Strongly Agree
## 474                                              Strongly Agree
## 475                                           Strongly Disagree
## 476                                              Strongly Agree
## 477                                           Strongly Disagree
## 478                                              Quite Disagree
## 479                                              Strongly Agree
## 480                                              Strongly Agree
## 481                                              Strongly Agree
## 482                                              Strongly Agree
## 483                                                Partly Agree
## 484                                              Quite Disagree
## 485                                           Strongly Disagree
## 486                                           Strongly Disagree
## 487                                              Strongly Agree
## 488                                              Quite Disagree
## 489                                              Quite Disagree
## 490                                           Strongly Disagree
## 491                                              Quite Disagree
## 492                                           Strongly Disagree
## 493                                                Partly Agree
## 494                                              Strongly Agree
## 495                                              Quite Disagree
## 496                                                Partly Agree
##      Opinion..People.like.me.has.no.possibility.in.influencing.politics
## 1                                                        Quite Disagree
## 2                                                          Partly Agree
## 3                                                     Strongly Disagree
## 4                                                     Strongly Disagree
## 5                                                     Strongly Disagree
## 6                                                        Quite Disagree
## 7                                                     Strongly Disagree
## 8                                                        Quite Disagree
## 9                                                     Strongly Disagree
## 10                                                       Strongly Agree
## 11                                                         Partly Agree
## 12                                                         Partly Agree
## 13                                                    Strongly Disagree
## 14                                                         Partly Agree
## 15                                                         Partly Agree
## 16                                                         Partly Agree
## 17                                                         Partly Agree
## 18                                                       Quite Disagree
## 19                                                       Quite Disagree
## 20                                                         Partly Agree
## 21                                                       Quite Disagree
## 22                                                       Quite Disagree
## 23                                                       Strongly Agree
## 24                                                    Strongly Disagree
## 25                                                           Don't Know
## 26                                                           Don't Know
## 27                                                    Strongly Disagree
## 28                                                           Don't Know
## 29                                                           Don't Know
## 30                                                       Quite Disagree
## 31                                                    Strongly Disagree
## 32                                                           Don't Know
## 33                                                           Don't Know
## 34                                                       Quite Disagree
## 35                                                       Quite Disagree
## 36                                                         Partly Agree
## 37                                                       Quite Disagree
## 38                                                         Partly Agree
## 39                                                       Quite Disagree
## 40                                                       Quite Disagree
## 41                                                       Quite Disagree
## 42                                                       Quite Disagree
## 43                                                    Strongly Disagree
## 44                                                         Partly Agree
## 45                                                         Partly Agree
## 46                                                    Strongly Disagree
## 47                                                       Quite Disagree
## 48                                                         Partly Agree
## 49                                                       Quite Disagree
## 50                                                       Quite Disagree
## 51                                                         Partly Agree
## 52                                                       Quite Disagree
## 53                                                       Quite Disagree
## 54                                                         Partly Agree
## 55                                                       Quite Disagree
## 56                                                         Partly Agree
## 57                                                       Quite Disagree
## 58                                                           Don't Know
## 59                                                       Quite Disagree
## 60                                                       Quite Disagree
## 61                                                         Partly Agree
## 62                                                       Quite Disagree
## 63                                                         Partly Agree
## 64                                                       Quite Disagree
## 65                                                       Quite Disagree
## 66                                                       Quite Disagree
## 67                                                         Partly Agree
## 68                                                         Partly Agree
## 69                                                       Quite Disagree
## 70                                                       Quite Disagree
## 71                                                       Quite Disagree
## 72                                                       Quite Disagree
## 73                                                       Quite Disagree
## 74                                                       Quite Disagree
## 75                                                       Quite Disagree
## 76                                                       Quite Disagree
## 77                                                       Quite Disagree
## 78                                                       Quite Disagree
## 79                                                       Quite Disagree
## 80                                                       Quite Disagree
## 81                                                       Quite Disagree
## 82                                                       Quite Disagree
## 83                                                       Quite Disagree
## 84                                                       Quite Disagree
## 85                                                         Partly Agree
## 86                                                         Partly Agree
## 87                                                       Quite Disagree
## 88                                                       Quite Disagree
## 89                                                         Partly Agree
## 90                                                         Partly Agree
## 91                                                       Quite Disagree
## 92                                                         Partly Agree
## 93                                                         Partly Agree
## 94                                                         Partly Agree
## 95                                                       Quite Disagree
## 96                                                         Partly Agree
## 97                                                         Partly Agree
## 98                                                       Quite Disagree
## 99                                                       Quite Disagree
## 100                                                        Partly Agree
## 101                                                        Partly Agree
## 102                                                      Quite Disagree
## 103                                                        Partly Agree
## 104                                                   Strongly Disagree
## 105                                                        Partly Agree
## 106                                                      Quite Disagree
## 107                                                   Strongly Disagree
## 108                                                   Strongly Disagree
## 109                                                        Partly Agree
## 110                                                        Partly Agree
## 111                                                      Quite Disagree
## 112                                                        Partly Agree
## 113                                                        Partly Agree
## 114                                                      Quite Disagree
## 115                                                   Strongly Disagree
## 116                                                        Partly Agree
## 117                                                        Partly Agree
## 118                                                        Partly Agree
## 119                                                        Partly Agree
## 120                                                   Strongly Disagree
## 121                                                   Strongly Disagree
## 122                                                      Quite Disagree
## 123                                                      Quite Disagree
## 124                                                      Quite Disagree
## 125                                                   Strongly Disagree
## 126                                                        Partly Agree
## 127                                                        Partly Agree
## 128                                                      Quite Disagree
## 129                                                      Quite Disagree
## 130                                                        Partly Agree
## 131                                                   Strongly Disagree
## 132                                                        Partly Agree
## 133                                                   Strongly Disagree
## 134                                                   Strongly Disagree
## 135                                                      Quite Disagree
## 136                                                          Don't Know
## 137                                                   Strongly Disagree
## 138                                                        Partly Agree
## 139                                                   Strongly Disagree
## 140                                                      Quite Disagree
## 141                                                      Quite Disagree
## 142                                                        Partly Agree
## 143                                                        Partly Agree
## 144                                                        Partly Agree
## 145                                                   Strongly Disagree
## 146                                                   Strongly Disagree
## 147                                                      Strongly Agree
## 148                                                        Partly Agree
## 149                                                      Quite Disagree
## 150                                                   Strongly Disagree
## 151                                                      Strongly Agree
## 152                                                        Partly Agree
## 153                                                        Partly Agree
## 154                                                      Strongly Agree
## 155                                                      Quite Disagree
## 156                                                      Strongly Agree
## 157                                                        Partly Agree
## 158                                                      Quite Disagree
## 159                                                      Quite Disagree
## 160                                                      Quite Disagree
## 161                                                      Strongly Agree
## 162                                                        Partly Agree
## 163                                                        Partly Agree
## 164                                                      Strongly Agree
## 165                                                      Quite Disagree
## 166                                                      Quite Disagree
## 167                                                      Quite Disagree
## 168                                                        Partly Agree
## 169                                                        Partly Agree
## 170                                                        Partly Agree
## 171                                                      Strongly Agree
## 172                                                      Strongly Agree
## 173                                                      Strongly Agree
## 174                                                        Partly Agree
## 175                                                      Strongly Agree
## 176                                                      Strongly Agree
## 177                                                        Partly Agree
## 178                                                      Strongly Agree
## 179                                                        Partly Agree
## 180                                                      Strongly Agree
## 181                                                        Partly Agree
## 182                                                        Partly Agree
## 183                                                      Strongly Agree
## 184                                                      Strongly Agree
## 185                                                        Partly Agree
## 186                                                        Partly Agree
## 187                                                      Strongly Agree
## 188                                                      Strongly Agree
## 189                                                      Strongly Agree
## 190                                                      Strongly Agree
## 191                                                      Strongly Agree
## 192                                                      Strongly Agree
## 193                                                      Strongly Agree
## 194                                                      Strongly Agree
## 195                                                        Partly Agree
## 196                                                        Partly Agree
## 197                                                        Partly Agree
## 198                                                      Strongly Agree
## 199                                                      Quite Disagree
## 200                                                        Partly Agree
## 201                                                      Quite Disagree
## 202                                                        Partly Agree
## 203                                                      Quite Disagree
## 204                                                      Quite Disagree
## 205                                                      Quite Disagree
## 206                                                      Quite Disagree
## 207                                                      Quite Disagree
## 208                                                      Quite Disagree
## 209                                                        Partly Agree
## 210                                                      Quite Disagree
## 211                                                        Partly Agree
## 212                                                        Partly Agree
## 213                                                        Partly Agree
## 214                                                        Partly Agree
## 215                                                        Partly Agree
## 216                                                        Partly Agree
## 217                                                        Partly Agree
## 218                                                      Quite Disagree
## 219                                                        Partly Agree
## 220                                                      Strongly Agree
## 221                                                      Quite Disagree
## 222                                                        Partly Agree
## 223                                                      Quite Disagree
## 224                                                        Partly Agree
## 225                                                        Partly Agree
## 226                                                      Quite Disagree
## 227                                                        Partly Agree
## 228                                                        Partly Agree
## 229                                                      Quite Disagree
## 230                                                        Partly Agree
## 231                                                      Quite Disagree
## 232                                                      Quite Disagree
## 233                                                      Quite Disagree
## 234                                                      Quite Disagree
## 235                                                      Quite Disagree
## 236                                                      Quite Disagree
## 237                                                        Partly Agree
## 238                                                      Quite Disagree
## 239                                                      Quite Disagree
## 240                                                      Quite Disagree
## 241                                                      Quite Disagree
## 242                                                      Quite Disagree
## 243                                                      Quite Disagree
## 244                                                      Quite Disagree
## 245                                                        Partly Agree
## 246                                                        Partly Agree
## 247                                                      Quite Disagree
## 248                                                      Quite Disagree
## 249                                                        Partly Agree
## 250                                                      Quite Disagree
## 251                                                   Strongly Disagree
## 252                                                   Strongly Disagree
## 253                                                        Partly Agree
## 254                                                        Partly Agree
## 255                                                      Quite Disagree
## 256                                                   Strongly Disagree
## 257                                                        Partly Agree
## 258                                                          Don't Know
## 259                                                        Partly Agree
## 260                                                   Strongly Disagree
## 261                                                      Strongly Agree
## 262                                                   Strongly Disagree
## 263                                                      Strongly Agree
## 264                                                   Strongly Disagree
## 265                                                      Strongly Agree
## 266                                                      Strongly Agree
## 267                                                      Strongly Agree
## 268                                                        Partly Agree
## 269                                                          Don't Know
## 270                                                        Partly Agree
## 271                                                        Partly Agree
## 272                                                      Quite Disagree
## 273                                                      Quite Disagree
## 274                                                      Strongly Agree
## 275                                                      Quite Disagree
## 276                                                   Strongly Disagree
## 277                                                        Partly Agree
## 278                                                      Quite Disagree
## 279                                                      Quite Disagree
## 280                                                      Quite Disagree
## 281                                                      Quite Disagree
## 282                                                   Strongly Disagree
## 283                                                      Quite Disagree
## 284                                                   Strongly Disagree
## 285                                                        Partly Agree
## 286                                                      Quite Disagree
## 287                                                      Quite Disagree
## 288                                                          Don't Know
## 289                                                      Quite Disagree
## 290                                                      Quite Disagree
## 291                                                      Quite Disagree
## 292                                                        Partly Agree
## 293                                                      Quite Disagree
## 294                                                      Quite Disagree
## 295                                                      Quite Disagree
## 296                                                        Partly Agree
## 297                                                        Partly Agree
## 298                                                      Quite Disagree
## 299                                                      Strongly Agree
## 300                                                   Strongly Disagree
## 302                                                      Quite Disagree
## 303                                                      Quite Disagree
## 304                                                        Partly Agree
## 305                                                      Strongly Agree
## 306                                                   Strongly Disagree
## 307                                                        Partly Agree
## 308                                                      Quite Disagree
## 309                                                        Partly Agree
## 310                                                      Quite Disagree
## 311                                                        Partly Agree
## 312                                                      Quite Disagree
## 313                                                      Quite Disagree
## 314                                                        Partly Agree
## 315                                                        Partly Agree
## 316                                                   Strongly Disagree
## 317                                                   Strongly Disagree
## 318                                                   Strongly Disagree
## 319                                                   Strongly Disagree
## 320                                                      Quite Disagree
## 321                                                      Quite Disagree
## 322                                                        Partly Agree
## 323                                                        Partly Agree
## 324                                                        Partly Agree
## 325                                                      Quite Disagree
## 326                                                      Quite Disagree
## 327                                                      Quite Disagree
## 328                                                        Partly Agree
## 329                                                      Quite Disagree
## 330                                                        Partly Agree
## 331                                                      Quite Disagree
## 332                                                      Quite Disagree
## 333                                                        Partly Agree
## 334                                                        Partly Agree
## 335                                                   Strongly Disagree
## 336                                                      Quite Disagree
## 337                                                        Partly Agree
## 338                                                        Partly Agree
## 339                                                   Strongly Disagree
## 340                                                      Quite Disagree
## 341                                                   Strongly Disagree
## 342                                                   Strongly Disagree
## 343                                                      Quite Disagree
## 344                                                        Partly Agree
## 345                                                        Partly Agree
## 346                                                   Strongly Disagree
## 347                                                        Partly Agree
## 348                                                      Quite Disagree
## 349                                                      Quite Disagree
## 350                                                        Partly Agree
## 351                                                          Don't Know
## 352                                                        Partly Agree
## 353                                                        Partly Agree
## 354                                                        Partly Agree
## 355                                                      Quite Disagree
## 356                                                          Don't Know
## 357                                                        Partly Agree
## 358                                                        Partly Agree
## 359                                                        Partly Agree
## 360                                                        Partly Agree
## 361                                                        Partly Agree
## 362                                                      Quite Disagree
## 363                                                        Partly Agree
## 364                                                        Partly Agree
## 365                                                        Partly Agree
## 366                                                      Strongly Agree
## 367                                                        Partly Agree
## 368                                                        Partly Agree
## 369                                                        Partly Agree
## 370                                                        Partly Agree
## 371                                                        Partly Agree
## 372                                                      Quite Disagree
## 373                                                      Quite Disagree
## 374                                                        Partly Agree
## 375                                                      Strongly Agree
## 376                                                        Partly Agree
## 377                                                      Quite Disagree
## 378                                                        Partly Agree
## 379                                                        Partly Agree
## 380                                                        Partly Agree
## 381                                                          Don't Know
## 382                                                        Partly Agree
## 383                                                        Partly Agree
## 384                                                        Partly Agree
## 385                                                        Partly Agree
## 386                                                        Partly Agree
## 387                                                        Partly Agree
## 388                                                          Don't Know
## 389                                                        Partly Agree
## 390                                                        Partly Agree
## 391                                                        Partly Agree
## 392                                                        Partly Agree
## 393                                                        Partly Agree
## 394                                                        Partly Agree
## 395                                                        Partly Agree
## 396                                                        Partly Agree
## 397                                                        Partly Agree
## 398                                                        Partly Agree
## 399                                                        Partly Agree
## 400                                                          Don't Know
## 401                                                        Partly Agree
## 402                                                        Partly Agree
## 403                                                      Quite Disagree
## 404                                                   Strongly Disagree
## 405                                                        Partly Agree
## 406                                                   Strongly Disagree
## 407                                                      Strongly Agree
## 408                                                   Strongly Disagree
## 409                                                        Partly Agree
## 410                                                      Quite Disagree
## 411                                                      Quite Disagree
## 412                                                   Strongly Disagree
## 413                                                      Quite Disagree
## 414                                                      Quite Disagree
## 415                                                          Don't Know
## 416                                                      Quite Disagree
## 417                                                          Don't Know
## 418                                                      Quite Disagree
## 419                                                   Strongly Disagree
## 420                                                        Partly Agree
## 421                                                   Strongly Disagree
## 422                                                          Don't Know
## 423                                                          Don't Know
## 424                                                   Strongly Disagree
## 425                                                   Strongly Disagree
## 426                                                   Strongly Disagree
## 427                                                      Quite Disagree
## 428                                                          Don't Know
## 429                                                        Partly Agree
## 430                                                      Quite Disagree
## 431                                                      Quite Disagree
## 432                                                          Don't Know
## 433                                                      Quite Disagree
## 434                                                      Quite Disagree
## 435                                                      Quite Disagree
## 436                                                        Partly Agree
## 437                                                        Partly Agree
## 438                                                      Quite Disagree
## 439                                                      Quite Disagree
## 440                                                      Quite Disagree
## 441                                                      Quite Disagree
## 442                                                        Partly Agree
## 443                                                      Quite Disagree
## 444                                                      Quite Disagree
## 445                                                      Quite Disagree
## 446                                                      Quite Disagree
## 447                                                      Quite Disagree
## 448                                                        Partly Agree
## 449                                                      Quite Disagree
## 450                                                        Partly Agree
## 451                                                        Partly Agree
## 452                                                      Quite Disagree
## 453                                                      Quite Disagree
## 454                                                   Strongly Disagree
## 455                                                      Strongly Agree
## 456                                                   Strongly Disagree
## 457                                                      Quite Disagree
## 458                                                      Strongly Agree
## 459                                                      Quite Disagree
## 460                                                      Quite Disagree
## 461                                                   Strongly Disagree
## 462                                                      Quite Disagree
## 463                                                      Quite Disagree
## 464                                                   Strongly Disagree
## 465                                                      Strongly Agree
## 466                                                   Strongly Disagree
## 467                                                        Partly Agree
## 468                                                        Partly Agree
## 469                                                   Strongly Disagree
## 470                                                      Quite Disagree
## 471                                                   Strongly Disagree
## 472                                                        Partly Agree
## 473                                                          Don't Know
## 474                                                          Don't Know
## 475                                                   Strongly Disagree
## 476                                                          Don't Know
## 477                                                   Strongly Disagree
## 478                                                      Quite Disagree
## 479                                                          Don't Know
## 480                                                        Partly Agree
## 481                                                      Strongly Agree
## 482                                                   Strongly Disagree
## 483                                                      Quite Disagree
## 484                                                      Quite Disagree
## 485                                                   Strongly Disagree
## 486                                                   Strongly Disagree
## 487                                                        Partly Agree
## 488                                                      Quite Disagree
## 489                                                      Quite Disagree
## 490                                                   Strongly Disagree
## 491                                                      Strongly Agree
## 492                                                      Quite Disagree
## 493                                                   Strongly Disagree
## 494                                                   Strongly Disagree
## 495                                                        Partly Agree
## 496                                                   Strongly Disagree
##      Opinion..Politicians.promise.a.lot..but.do.nothing
## 1                                        Strongly Agree
## 2                                        Strongly Agree
## 3                                          Partly Agree
## 4                                        Strongly Agree
## 5                                          Partly Agree
## 6                                        Quite Disagree
## 7                                          Partly Agree
## 8                                        Quite Disagree
## 9                                          Partly Agree
## 10                                       Strongly Agree
## 11                                         Partly Agree
## 12                                         Partly Agree
## 13                                         Partly Agree
## 14                                       Strongly Agree
## 15                                       Strongly Agree
## 16                                       Quite Disagree
## 17                                    Strongly Disagree
## 18                                    Strongly Disagree
## 19                                         Partly Agree
## 20                                       Quite Disagree
## 21                                       Strongly Agree
## 22                                       Strongly Agree
## 23                                         Partly Agree
## 24                                       Quite Disagree
## 25                                       Strongly Agree
## 26                                         Partly Agree
## 27                                       Quite Disagree
## 28                                       Quite Disagree
## 29                                         Partly Agree
## 30                                    Strongly Disagree
## 31                                         Partly Agree
## 32                                         Partly Agree
## 33                                       Quite Disagree
## 34                                       Strongly Agree
## 35                                       Strongly Agree
## 36                                         Partly Agree
## 37                                         Partly Agree
## 38                                         Partly Agree
## 39                                       Quite Disagree
## 40                                         Partly Agree
## 41                                         Partly Agree
## 42                                         Partly Agree
## 43                                         Partly Agree
## 44                                         Partly Agree
## 45                                         Partly Agree
## 46                                       Quite Disagree
## 47                                         Partly Agree
## 48                                         Partly Agree
## 49                                         Partly Agree
## 50                                         Partly Agree
## 51                                         Partly Agree
## 52                                         Partly Agree
## 53                                         Partly Agree
## 54                                       Strongly Agree
## 55                                       Strongly Agree
## 56                                         Partly Agree
## 57                                       Quite Disagree
## 58                                         Partly Agree
## 59                                         Partly Agree
## 60                                       Strongly Agree
## 61                                         Partly Agree
## 62                                       Strongly Agree
## 63                                         Partly Agree
## 64                                         Partly Agree
## 65                                         Partly Agree
## 66                                         Partly Agree
## 67                                         Partly Agree
## 68                                       Strongly Agree
## 69                                       Strongly Agree
## 70                                       Strongly Agree
## 71                                       Quite Disagree
## 72                                       Quite Disagree
## 73                                         Partly Agree
## 74                                         Partly Agree
## 75                                       Strongly Agree
## 76                                       Strongly Agree
## 77                                       Strongly Agree
## 78                                       Strongly Agree
## 79                                       Strongly Agree
## 80                                       Strongly Agree
## 81                                       Strongly Agree
## 82                                       Strongly Agree
## 83                                       Strongly Agree
## 84                                       Strongly Agree
## 85                                       Strongly Agree
## 86                                         Partly Agree
## 87                                         Partly Agree
## 88                                         Partly Agree
## 89                                         Partly Agree
## 90                                         Partly Agree
## 91                                         Partly Agree
## 92                                         Partly Agree
## 93                                       Strongly Agree
## 94                                       Strongly Agree
## 95                                         Partly Agree
## 96                                         Partly Agree
## 97                                         Partly Agree
## 98                                         Partly Agree
## 99                                         Partly Agree
## 100                                        Partly Agree
## 101                                      Strongly Agree
## 102                                      Strongly Agree
## 103                                        Partly Agree
## 104                                        Partly Agree
## 105                                        Partly Agree
## 106                                        Partly Agree
## 107                                      Quite Disagree
## 108                                      Quite Disagree
## 109                                        Partly Agree
## 110                                      Strongly Agree
## 111                                      Quite Disagree
## 112                                      Quite Disagree
## 113                                        Partly Agree
## 114                                        Partly Agree
## 115                                      Strongly Agree
## 116                                        Partly Agree
## 117                                      Strongly Agree
## 118                                        Partly Agree
## 119                                      Quite Disagree
## 120                                      Quite Disagree
## 121                                        Partly Agree
## 122                                   Strongly Disagree
## 123                                        Partly Agree
## 124                                        Partly Agree
## 125                                                <NA>
## 126                                        Partly Agree
## 127                                   Strongly Disagree
## 128                                        Partly Agree
## 129                                        Partly Agree
## 130                                      Strongly Agree
## 131                                      Quite Disagree
## 132                                      Quite Disagree
## 133                                      Quite Disagree
## 134                                      Quite Disagree
## 135                                        Partly Agree
## 136                                          Don't Know
## 137                                   Strongly Disagree
## 138                                        Partly Agree
## 139                                   Strongly Disagree
## 140                                      Quite Disagree
## 141                                        Partly Agree
## 142                                      Quite Disagree
## 143                                      Quite Disagree
## 144                                      Quite Disagree
## 145                                        Partly Agree
## 146                                   Strongly Disagree
## 147                                      Quite Disagree
## 148                                        Partly Agree
## 149                                      Quite Disagree
## 150                                      Strongly Agree
## 151                                      Strongly Agree
## 152                                      Quite Disagree
## 153                                          Don't Know
## 154                                      Strongly Agree
## 155                                        Partly Agree
## 156                                      Strongly Agree
## 157                                          Don't Know
## 158                                      Strongly Agree
## 159                                      Strongly Agree
## 160                                      Strongly Agree
## 161                                      Strongly Agree
## 162                                      Strongly Agree
## 163                                        Partly Agree
## 164                                      Strongly Agree
## 165                                      Strongly Agree
## 166                                      Strongly Agree
## 167                                      Strongly Agree
## 168                                      Strongly Agree
## 169                                      Strongly Agree
## 170                                      Strongly Agree
## 171                                        Partly Agree
## 172                                        Partly Agree
## 173                                        Partly Agree
## 174                                      Strongly Agree
## 175                                        Partly Agree
## 176                                        Partly Agree
## 177                                          Don't Know
## 178                                      Strongly Agree
## 179                                                <NA>
## 180                                      Strongly Agree
## 181                                      Strongly Agree
## 182                                      Strongly Agree
## 183                                        Partly Agree
## 184                                      Strongly Agree
## 185                                      Strongly Agree
## 186                                      Strongly Agree
## 187                                        Partly Agree
## 188                                      Strongly Agree
## 189                                        Partly Agree
## 190                                      Strongly Agree
## 191                                      Strongly Agree
## 192                                        Partly Agree
## 193                                        Partly Agree
## 194                                      Strongly Agree
## 195                                        Partly Agree
## 196                                      Strongly Agree
## 197                                      Strongly Agree
## 198                                        Partly Agree
## 199                                      Strongly Agree
## 200                                      Quite Disagree
## 201                                        Partly Agree
## 202                                        Partly Agree
## 203                                        Partly Agree
## 204                                        Partly Agree
## 205                                        Partly Agree
## 206                                      Quite Disagree
## 207                                        Partly Agree
## 208                                        Partly Agree
## 209                                      Strongly Agree
## 210                                        Partly Agree
## 211                                      Strongly Agree
## 212                                      Strongly Agree
## 213                                      Strongly Agree
## 214                                      Strongly Agree
## 215                                      Strongly Agree
## 216                                      Strongly Agree
## 217                                      Quite Disagree
## 218                                        Partly Agree
## 219                                      Quite Disagree
## 220                                        Partly Agree
## 221                                      Strongly Agree
## 222                                        Partly Agree
## 223                                        Partly Agree
## 224                                      Quite Disagree
## 225                                      Strongly Agree
## 226                                        Partly Agree
## 227                                      Quite Disagree
## 228                                      Quite Disagree
## 229                                        Partly Agree
## 230                                      Strongly Agree
## 231                                      Quite Disagree
## 232                                        Partly Agree
## 233                                        Partly Agree
## 234                                        Partly Agree
## 235                                        Partly Agree
## 236                                   Strongly Disagree
## 237                                      Strongly Agree
## 238                                      Quite Disagree
## 239                                        Partly Agree
## 240                                        Partly Agree
## 241                                        Partly Agree
## 242                                        Partly Agree
## 243                                        Partly Agree
## 244                                        Partly Agree
## 245                                      Quite Disagree
## 246                                      Strongly Agree
## 247                                        Partly Agree
## 248                                        Partly Agree
## 249                                      Quite Disagree
## 250                                        Partly Agree
## 251                                      Quite Disagree
## 252                                                <NA>
## 253                                        Partly Agree
## 254                                      Strongly Agree
## 255                                      Quite Disagree
## 256                                   Strongly Disagree
## 257                                        Partly Agree
## 258                                          Don't Know
## 259                                        Partly Agree
## 260                                      Quite Disagree
## 261                                      Strongly Agree
## 262                                      Quite Disagree
## 263                                      Strongly Agree
## 264                                        Partly Agree
## 265                                      Strongly Agree
## 266                                      Strongly Agree
## 267                                      Strongly Agree
## 268                                        Partly Agree
## 269                                      Strongly Agree
## 270                                        Partly Agree
## 271                                        Partly Agree
## 272                                      Quite Disagree
## 273                                      Quite Disagree
## 274                                        Partly Agree
## 275                                        Partly Agree
## 276                                   Strongly Disagree
## 277                                        Partly Agree
## 278                                      Quite Disagree
## 279                                      Quite Disagree
## 280                                        Partly Agree
## 281                                      Quite Disagree
## 282                                      Quite Disagree
## 283                                      Quite Disagree
## 284                                        Partly Agree
## 285                                      Quite Disagree
## 286                                      Quite Disagree
## 287                                        Partly Agree
## 288                                      Strongly Agree
## 289                                      Strongly Agree
## 290                                      Strongly Agree
## 291                                      Quite Disagree
## 292                                      Strongly Agree
## 293                                                <NA>
## 294                                      Strongly Agree
## 295                                        Partly Agree
## 296                                        Partly Agree
## 297                                        Partly Agree
## 298                                                <NA>
## 299                                      Strongly Agree
## 300                                        Partly Agree
## 302                                      Quite Disagree
## 303                                   Strongly Disagree
## 304                                      Strongly Agree
## 305                                      Strongly Agree
## 306                                      Strongly Agree
## 307                                        Partly Agree
## 308                                        Partly Agree
## 309                                        Partly Agree
## 310                                      Strongly Agree
## 311                                      Quite Disagree
## 312                                        Partly Agree
## 313                                        Partly Agree
## 314                                        Partly Agree
## 315                                        Partly Agree
## 316                                      Strongly Agree
## 317                                      Strongly Agree
## 318                                        Partly Agree
## 319                                        Partly Agree
## 320                                      Quite Disagree
## 321                                   Strongly Disagree
## 322                                        Partly Agree
## 323                                        Partly Agree
## 324                                        Partly Agree
## 325                                      Quite Disagree
## 326                                        Partly Agree
## 327                                        Partly Agree
## 328                                        Partly Agree
## 329                                      Strongly Agree
## 330                                      Quite Disagree
## 331                                        Partly Agree
## 332                                        Partly Agree
## 333                                          Don't Know
## 334                                      Strongly Agree
## 335                                      Strongly Agree
## 336                                        Partly Agree
## 337                                      Strongly Agree
## 338                                      Quite Disagree
## 339                                        Partly Agree
## 340                                      Strongly Agree
## 341                                   Strongly Disagree
## 342                                        Partly Agree
## 343                                      Quite Disagree
## 344                                        Partly Agree
## 345                                        Partly Agree
## 346                                      Strongly Agree
## 347                                        Partly Agree
## 348                                      Quite Disagree
## 349                                        Partly Agree
## 350                                      Strongly Agree
## 351                                      Strongly Agree
## 352                                        Partly Agree
## 353                                        Partly Agree
## 354                                        Partly Agree
## 355                                      Quite Disagree
## 356                                        Partly Agree
## 357                                        Partly Agree
## 358                                        Partly Agree
## 359                                        Partly Agree
## 360                                        Partly Agree
## 361                                      Strongly Agree
## 362                                        Partly Agree
## 363                                        Partly Agree
## 364                                        Partly Agree
## 365                                        Partly Agree
## 366                                      Strongly Agree
## 367                                        Partly Agree
## 368                                        Partly Agree
## 369                                        Partly Agree
## 370                                        Partly Agree
## 371                                        Partly Agree
## 372                                        Partly Agree
## 373                                      Quite Disagree
## 374                                        Partly Agree
## 375                                      Strongly Agree
## 376                                        Partly Agree
## 377                                        Partly Agree
## 378                                        Partly Agree
## 379                                        Partly Agree
## 380                                        Partly Agree
## 381                                        Partly Agree
## 382                                        Partly Agree
## 383                                        Partly Agree
## 384                                        Partly Agree
## 385                                        Partly Agree
## 386                                        Partly Agree
## 387                                        Partly Agree
## 388                                        Partly Agree
## 389                                        Partly Agree
## 390                                      Strongly Agree
## 391                                        Partly Agree
## 392                                        Partly Agree
## 393                                        Partly Agree
## 394                                        Partly Agree
## 395                                        Partly Agree
## 396                                        Partly Agree
## 397                                        Partly Agree
## 398                                        Partly Agree
## 399                                        Partly Agree
## 400                                        Partly Agree
## 401                                        Partly Agree
## 402                                        Partly Agree
## 403                                      Strongly Agree
## 404                                      Strongly Agree
## 405                                        Partly Agree
## 406                                      Strongly Agree
## 407                                      Strongly Agree
## 408                                      Quite Disagree
## 409                                        Partly Agree
## 410                                        Partly Agree
## 411                                        Partly Agree
## 412                                        Partly Agree
## 413                                        Partly Agree
## 414                                        Partly Agree
## 415                                          Don't Know
## 416                                        Partly Agree
## 417                                          Don't Know
## 418                                          Don't Know
## 419                                        Partly Agree
## 420                                      Strongly Agree
## 421                                      Quite Disagree
## 422                                          Don't Know
## 423                                          Don't Know
## 424                                        Partly Agree
## 425                                      Quite Disagree
## 426                                        Partly Agree
## 427                                        Partly Agree
## 428                                          Don't Know
## 429                                        Partly Agree
## 430                                        Partly Agree
## 431                                      Quite Disagree
## 432                                          Don't Know
## 433                                        Partly Agree
## 434                                        Partly Agree
## 435                                        Partly Agree
## 436                                        Partly Agree
## 437                                        Partly Agree
## 438                                        Partly Agree
## 439                                        Partly Agree
## 440                                      Strongly Agree
## 441                                      Quite Disagree
## 442                                        Partly Agree
## 443                                        Partly Agree
## 444                                        Partly Agree
## 445                                        Partly Agree
## 446                                        Partly Agree
## 447                                        Partly Agree
## 448                                        Partly Agree
## 449                                        Partly Agree
## 450                                        Partly Agree
## 451                                      Quite Disagree
## 452                                        Partly Agree
## 453                                        Partly Agree
## 454                                        Partly Agree
## 455                                   Strongly Disagree
## 456                                      Quite Disagree
## 457                                      Quite Disagree
## 458                                      Strongly Agree
## 459                                      Strongly Agree
## 460                                                <NA>
## 461                                      Strongly Agree
## 462                                      Strongly Agree
## 463                                      Strongly Agree
## 464                                        Partly Agree
## 465                                      Strongly Agree
## 466                                   Strongly Disagree
## 467                                      Strongly Agree
## 468                                      Strongly Agree
## 469                                      Strongly Agree
## 470                                        Partly Agree
## 471                                        Partly Agree
## 472                                        Partly Agree
## 473                                      Strongly Agree
## 474                                      Strongly Agree
## 475                                      Quite Disagree
## 476                                      Strongly Agree
## 477                                      Strongly Agree
## 478                                      Quite Disagree
## 479                                      Strongly Agree
## 480                                      Strongly Agree
## 481                                      Strongly Agree
## 482                                      Strongly Agree
## 483                                      Strongly Agree
## 484                                        Partly Agree
## 485                                      Quite Disagree
## 486                                      Quite Disagree
## 487                                      Quite Disagree
## 488                                      Quite Disagree
## 489                                        Partly Agree
## 490                                      Quite Disagree
## 491                                      Strongly Agree
## 492                                      Quite Disagree
## 493                                      Strongly Agree
## 494                                      Strongly Agree
## 495                                                <NA>
## 496                                      Strongly Agree
##      Opinion..Politicians.are.more.corrupt
## 1                           Strongly Agree
## 2                           Strongly Agree
## 3                             Partly Agree
## 4                           Strongly Agree
## 5                             Partly Agree
## 6                             Partly Agree
## 7                           Strongly Agree
## 8                             Partly Agree
## 9                           Strongly Agree
## 10                          Strongly Agree
## 11                            Partly Agree
## 12                            Partly Agree
## 13                            Partly Agree
## 14                          Strongly Agree
## 15                          Strongly Agree
## 16                          Quite Disagree
## 17                       Strongly Disagree
## 18                       Strongly Disagree
## 19                            Partly Agree
## 20                          Quite Disagree
## 21                          Strongly Agree
## 22                          Strongly Agree
## 23                          Strongly Agree
## 24                            Partly Agree
## 25                            Partly Agree
## 26                            Partly Agree
## 27                          Quite Disagree
## 28                            Partly Agree
## 29                            Partly Agree
## 30                            Partly Agree
## 31                            Partly Agree
## 32                            Partly Agree
## 33                            Partly Agree
## 34                          Strongly Agree
## 35                          Strongly Agree
## 36                            Partly Agree
## 37                            Partly Agree
## 38                          Quite Disagree
## 39                          Strongly Agree
## 40                            Partly Agree
## 41                            Partly Agree
## 42                          Strongly Agree
## 43                            Partly Agree
## 44                            Partly Agree
## 45                            Partly Agree
## 46                          Quite Disagree
## 47                            Partly Agree
## 48                            Partly Agree
## 49                            Partly Agree
## 50                          Strongly Agree
## 51                            Partly Agree
## 52                            Partly Agree
## 53                          Strongly Agree
## 54                            Partly Agree
## 55                            Partly Agree
## 56                            Partly Agree
## 57                          Quite Disagree
## 58                          Quite Disagree
## 59                            Partly Agree
## 60                            Partly Agree
## 61                            Partly Agree
## 62                          Strongly Agree
## 63                            Partly Agree
## 64                            Partly Agree
## 65                            Partly Agree
## 66                            Partly Agree
## 67                            Partly Agree
## 68                          Strongly Agree
## 69                          Strongly Agree
## 70                          Strongly Agree
## 71                            Partly Agree
## 72                            Partly Agree
## 73                            Partly Agree
## 74                            Partly Agree
## 75                          Strongly Agree
## 76                          Strongly Agree
## 77                          Strongly Agree
## 78                          Strongly Agree
## 79                          Strongly Agree
## 80                          Strongly Agree
## 81                          Strongly Agree
## 82                          Strongly Agree
## 83                          Strongly Agree
## 84                          Strongly Agree
## 85                          Strongly Agree
## 86                          Quite Disagree
## 87                            Partly Agree
## 88                            Partly Agree
## 89                            Partly Agree
## 90                            Partly Agree
## 91                            Partly Agree
## 92                            Partly Agree
## 93                            Partly Agree
## 94                          Strongly Agree
## 95                            Partly Agree
## 96                            Partly Agree
## 97                            Partly Agree
## 98                            Partly Agree
## 99                            Partly Agree
## 100                           Partly Agree
## 101                         Strongly Agree
## 102                         Strongly Agree
## 103                           Partly Agree
## 104                           Partly Agree
## 105                           Partly Agree
## 106                           Partly Agree
## 107                           Partly Agree
## 108                         Quite Disagree
## 109                           Partly Agree
## 110                         Strongly Agree
## 111                           Partly Agree
## 112                           Partly Agree
## 113                           Partly Agree
## 114                           Partly Agree
## 115                           Partly Agree
## 116                         Quite Disagree
## 117                           Partly Agree
## 118                         Quite Disagree
## 119                         Quite Disagree
## 120                         Strongly Agree
## 121                           Partly Agree
## 122                         Quite Disagree
## 123                           Partly Agree
## 124                             Don't Know
## 125                         Quite Disagree
## 126                         Quite Disagree
## 127                         Quite Disagree
## 128                             Don't Know
## 129                         Quite Disagree
## 130                           Partly Agree
## 131                           Partly Agree
## 132                           Partly Agree
## 133                           Partly Agree
## 134                           Partly Agree
## 135                         Quite Disagree
## 136                             Don't Know
## 137                         Quite Disagree
## 138                           Partly Agree
## 139                      Strongly Disagree
## 140                           Partly Agree
## 141                         Quite Disagree
## 142                         Quite Disagree
## 143                         Quite Disagree
## 144                           Partly Agree
## 145                      Strongly Disagree
## 146                             Don't Know
## 147                           Partly Agree
## 148                         Quite Disagree
## 149                           Partly Agree
## 150                           Partly Agree
## 151                         Strongly Agree
## 152                         Strongly Agree
## 153                           Partly Agree
## 154                         Strongly Agree
## 155                         Quite Disagree
## 156                         Strongly Agree
## 157                             Don't Know
## 158                         Strongly Agree
## 159                         Strongly Agree
## 160                           Partly Agree
## 161                         Strongly Agree
## 162                         Strongly Agree
## 163                             Don't Know
## 164                         Strongly Agree
## 165                         Strongly Agree
## 166                         Strongly Agree
## 167                         Strongly Agree
## 168                         Strongly Agree
## 169                         Strongly Agree
## 170                           Partly Agree
## 171                         Strongly Agree
## 172                         Strongly Agree
## 173                         Strongly Agree
## 174                         Strongly Agree
## 175                         Strongly Agree
## 176                         Quite Disagree
## 177                         Quite Disagree
## 178                         Strongly Agree
## 179                         Strongly Agree
## 180                         Strongly Agree
## 181                         Strongly Agree
## 182                           Partly Agree
## 183                         Strongly Agree
## 184                           Partly Agree
## 185                         Strongly Agree
## 186                         Strongly Agree
## 187                           Partly Agree
## 188                         Strongly Agree
## 189                           Partly Agree
## 190                           Partly Agree
## 191                           Partly Agree
## 192                         Strongly Agree
## 193                         Strongly Agree
## 194                         Strongly Agree
## 195                         Strongly Agree
## 196                         Strongly Agree
## 197                         Strongly Agree
## 198                           Partly Agree
## 199                         Strongly Agree
## 200                         Strongly Agree
## 201                         Quite Disagree
## 202                         Strongly Agree
## 203                         Quite Disagree
## 204                           Partly Agree
## 205                           Partly Agree
## 206                           Partly Agree
## 207                           Partly Agree
## 208                           Partly Agree
## 209                         Strongly Agree
## 210                           Partly Agree
## 211                         Strongly Agree
## 212                         Strongly Agree
## 213                         Strongly Agree
## 214                         Strongly Agree
## 215                         Strongly Agree
## 216                         Strongly Agree
## 217                         Strongly Agree
## 218                         Strongly Agree
## 219                           Partly Agree
## 220                         Quite Disagree
## 221                           Partly Agree
## 222                         Quite Disagree
## 223                           Partly Agree
## 224                      Strongly Disagree
## 225                           Partly Agree
## 226                         Strongly Agree
## 227                           Partly Agree
## 228                           Partly Agree
## 229                           Partly Agree
## 230                         Strongly Agree
## 231                         Strongly Agree
## 232                         Strongly Agree
## 233                         Strongly Agree
## 234                         Strongly Agree
## 235                         Strongly Agree
## 236                         Quite Disagree
## 237                         Strongly Agree
## 238                           Partly Agree
## 239                         Strongly Agree
## 240                         Strongly Agree
## 241                         Strongly Agree
## 242                         Strongly Agree
## 243                         Strongly Agree
## 244                         Strongly Agree
## 245                         Quite Disagree
## 246                         Strongly Agree
## 247                           Partly Agree
## 248                         Strongly Agree
## 249                      Strongly Disagree
## 250                           Partly Agree
## 251                         Quite Disagree
## 252                           Partly Agree
## 253                           Partly Agree
## 254                         Quite Disagree
## 255                         Quite Disagree
## 256                      Strongly Disagree
## 257                           Partly Agree
## 258                             Don't Know
## 259                           Partly Agree
## 260                         Quite Disagree
## 261                         Strongly Agree
## 262                         Quite Disagree
## 263                         Strongly Agree
## 264                           Partly Agree
## 265                             Don't Know
## 266                         Strongly Agree
## 267                           Partly Agree
## 268                         Strongly Agree
## 269                                   <NA>
## 270                           Partly Agree
## 271                         Quite Disagree
## 272                         Quite Disagree
## 273                         Quite Disagree
## 274                         Quite Disagree
## 275                           Partly Agree
## 276                      Strongly Disagree
## 277                         Quite Disagree
## 278                         Quite Disagree
## 279                         Quite Disagree
## 280                         Quite Disagree
## 281                         Quite Disagree
## 282                         Quite Disagree
## 283                      Strongly Disagree
## 284                         Quite Disagree
## 285                           Partly Agree
## 286                         Quite Disagree
## 287                         Quite Disagree
## 288                         Strongly Agree
## 289                         Quite Disagree
## 290                         Quite Disagree
## 291                         Quite Disagree
## 292                         Quite Disagree
## 293                         Quite Disagree
## 294                         Quite Disagree
## 295                           Partly Agree
## 296                         Quite Disagree
## 297                         Strongly Agree
## 298                         Quite Disagree
## 299                         Strongly Agree
## 300                         Quite Disagree
## 302                           Partly Agree
## 303                         Quite Disagree
## 304                           Partly Agree
## 305                         Strongly Agree
## 306                         Strongly Agree
## 307                           Partly Agree
## 308                           Partly Agree
## 309                           Partly Agree
## 310                         Strongly Agree
## 311                         Quite Disagree
## 312                         Quite Disagree
## 313                           Partly Agree
## 314                           Partly Agree
## 315                           Partly Agree
## 316                         Strongly Agree
## 317                         Strongly Agree
## 318                           Partly Agree
## 319                         Strongly Agree
## 320                         Quite Disagree
## 321                         Strongly Agree
## 322                             Don't Know
## 323                         Quite Disagree
## 324                         Quite Disagree
## 325                         Quite Disagree
## 326                         Quite Disagree
## 327                         Quite Disagree
## 328                           Partly Agree
## 329                         Strongly Agree
## 330                         Strongly Agree
## 331                             Don't Know
## 332                         Strongly Agree
## 333                           Partly Agree
## 334                             Don't Know
## 335                         Quite Disagree
## 336                         Strongly Agree
## 337                             Don't Know
## 338                         Quite Disagree
## 339                         Quite Disagree
## 340                         Strongly Agree
## 341                      Strongly Disagree
## 342                           Partly Agree
## 343                      Strongly Disagree
## 344                         Quite Disagree
## 345                           Partly Agree
## 346                         Strongly Agree
## 347                             Don't Know
## 348                         Quite Disagree
## 349                           Partly Agree
## 350                           Partly Agree
## 351                           Partly Agree
## 352                           Partly Agree
## 353                           Partly Agree
## 354                           Partly Agree
## 355                         Quite Disagree
## 356                           Partly Agree
## 357                           Partly Agree
## 358                           Partly Agree
## 359                           Partly Agree
## 360                           Partly Agree
## 361                           Partly Agree
## 362                           Partly Agree
## 363                         Strongly Agree
## 364                           Partly Agree
## 365                             Don't Know
## 366                         Strongly Agree
## 367                           Partly Agree
## 368                           Partly Agree
## 369                           Partly Agree
## 370                           Partly Agree
## 371                           Partly Agree
## 372                           Partly Agree
## 373                         Quite Disagree
## 374                           Partly Agree
## 375                         Strongly Agree
## 376                           Partly Agree
## 377                           Partly Agree
## 378                           Partly Agree
## 379                           Partly Agree
## 380                           Partly Agree
## 381                           Partly Agree
## 382                           Partly Agree
## 383                           Partly Agree
## 384                           Partly Agree
## 385                           Partly Agree
## 386                           Partly Agree
## 387                           Partly Agree
## 388                           Partly Agree
## 389                           Partly Agree
## 390                           Partly Agree
## 391                           Partly Agree
## 392                           Partly Agree
## 393                           Partly Agree
## 394                           Partly Agree
## 395                           Partly Agree
## 396                           Partly Agree
## 397                           Partly Agree
## 398                           Partly Agree
## 399                           Partly Agree
## 400                         Strongly Agree
## 401                           Partly Agree
## 402                           Partly Agree
## 403                           Partly Agree
## 404                         Strongly Agree
## 405                           Partly Agree
## 406                         Quite Disagree
## 407                         Quite Disagree
## 408                         Quite Disagree
## 409                         Strongly Agree
## 410                           Partly Agree
## 411                           Partly Agree
## 412                           Partly Agree
## 413                         Quite Disagree
## 414                         Strongly Agree
## 415                             Don't Know
## 416                         Quite Disagree
## 417                           Partly Agree
## 418                             Don't Know
## 419                         Quite Disagree
## 420                         Strongly Agree
## 421                           Partly Agree
## 422                             Don't Know
## 423                             Don't Know
## 424                         Quite Disagree
## 425                           Partly Agree
## 426                         Quite Disagree
## 427                           Partly Agree
## 428                             Don't Know
## 429                           Partly Agree
## 430                           Partly Agree
## 431                         Quite Disagree
## 432                             Don't Know
## 433                         Quite Disagree
## 434                         Quite Disagree
## 435                         Quite Disagree
## 436                           Partly Agree
## 437                           Partly Agree
## 438                           Partly Agree
## 439                           Partly Agree
## 440                         Quite Disagree
## 441                         Quite Disagree
## 442                         Quite Disagree
## 443                         Quite Disagree
## 444                         Quite Disagree
## 445                         Quite Disagree
## 446                         Quite Disagree
## 447                         Quite Disagree
## 448                           Partly Agree
## 449                         Quite Disagree
## 450                                   <NA>
## 451                           Partly Agree
## 452                         Quite Disagree
## 453                           Partly Agree
## 454                           Partly Agree
## 455                           Partly Agree
## 456                         Quite Disagree
## 457                         Quite Disagree
## 458                         Strongly Agree
## 459                         Strongly Agree
## 460                           Partly Agree
## 461                         Quite Disagree
## 462                         Strongly Agree
## 463                         Strongly Agree
## 464                           Partly Agree
## 465                         Strongly Agree
## 466                      Strongly Disagree
## 467                           Partly Agree
## 468                           Partly Agree
## 469                      Strongly Disagree
## 470                             Don't Know
## 471                      Strongly Disagree
## 472                           Partly Agree
## 473                         Strongly Agree
## 474                         Strongly Agree
## 475                         Strongly Agree
## 476                         Strongly Agree
## 477                         Strongly Agree
## 478                           Partly Agree
## 479                         Strongly Agree
## 480                         Strongly Agree
## 481                         Strongly Agree
## 482                         Strongly Agree
## 483                         Strongly Agree
## 484                         Quite Disagree
## 485                         Quite Disagree
## 486                           Partly Agree
## 487                         Quite Disagree
## 488                         Quite Disagree
## 489                           Partly Agree
## 490                         Quite Disagree
## 491                         Strongly Agree
## 492                         Quite Disagree
## 493                         Strongly Agree
## 494                         Strongly Agree
## 495                             Don't Know
## 496                         Strongly Agree
##      Opinion..Politicians.are.competent.and.know.what.they.are.doing
## 1                                                  Strongly Disagree
## 2                                                     Quite Disagree
## 3                                                     Quite Disagree
## 4                                                  Strongly Disagree
## 5                                                     Quite Disagree
## 6                                                     Quite Disagree
## 7                                                     Quite Disagree
## 8                                                     Quite Disagree
## 9                                                     Quite Disagree
## 10                                                    Strongly Agree
## 11                                                    Quite Disagree
## 12                                                    Quite Disagree
## 13                                                    Quite Disagree
## 14                                                      Partly Agree
## 15                                                    Quite Disagree
## 16                                                    Strongly Agree
## 17                                                    Quite Disagree
## 18                                                    Quite Disagree
## 19                                                      Partly Agree
## 20                                                    Quite Disagree
## 21                                                    Quite Disagree
## 22                                                 Strongly Disagree
## 23                                                      Partly Agree
## 24                                                      Partly Agree
## 25                                                      Partly Agree
## 26                                                      Partly Agree
## 27                                                    Quite Disagree
## 28                                                      Partly Agree
## 29                                                      Partly Agree
## 30                                                    Quite Disagree
## 31                                                              <NA>
## 32                                                      Partly Agree
## 33                                                      Partly Agree
## 34                                                 Strongly Disagree
## 35                                                    Quite Disagree
## 36                                                    Quite Disagree
## 37                                                    Quite Disagree
## 38                                                    Quite Disagree
## 39                                                    Strongly Agree
## 40                                                    Quite Disagree
## 41                                                      Partly Agree
## 42                                                    Quite Disagree
## 43                                                    Quite Disagree
## 44                                                    Quite Disagree
## 45                                                    Quite Disagree
## 46                                                 Strongly Disagree
## 47                                                    Quite Disagree
## 48                                                    Quite Disagree
## 49                                                    Quite Disagree
## 50                                                      Partly Agree
## 51                                                      Partly Agree
## 52                                                    Quite Disagree
## 53                                                    Quite Disagree
## 54                                                    Quite Disagree
## 55                                                      Partly Agree
## 56                                                    Quite Disagree
## 57                                                    Quite Disagree
## 58                                                    Quite Disagree
## 59                                                    Quite Disagree
## 60                                                    Quite Disagree
## 61                                                    Quite Disagree
## 62                                                    Quite Disagree
## 63                                                    Quite Disagree
## 64                                                    Quite Disagree
## 65                                                    Quite Disagree
## 66                                                    Quite Disagree
## 67                                                    Quite Disagree
## 68                                                    Quite Disagree
## 69                                                    Quite Disagree
## 70                                                    Quite Disagree
## 71                                                      Partly Agree
## 72                                                    Quite Disagree
## 73                                                    Quite Disagree
## 74                                                    Quite Disagree
## 75                                                    Quite Disagree
## 76                                                    Quite Disagree
## 77                                                    Quite Disagree
## 78                                                    Quite Disagree
## 79                                                    Quite Disagree
## 80                                                    Quite Disagree
## 81                                                    Quite Disagree
## 82                                                    Quite Disagree
## 83                                                 Strongly Disagree
## 84                                                 Strongly Disagree
## 85                                                 Strongly Disagree
## 86                                                    Quite Disagree
## 87                                                    Quite Disagree
## 88                                                    Quite Disagree
## 89                                                    Quite Disagree
## 90                                                    Quite Disagree
## 91                                                    Quite Disagree
## 92                                                    Quite Disagree
## 93                                                    Quite Disagree
## 94                                                    Quite Disagree
## 95                                                    Quite Disagree
## 96                                                    Quite Disagree
## 97                                                    Quite Disagree
## 98                                                    Quite Disagree
## 99                                                    Quite Disagree
## 100                                                   Quite Disagree
## 101                                                     Partly Agree
## 102                                                   Quite Disagree
## 103                                                     Partly Agree
## 104                                                     Partly Agree
## 105                                                     Partly Agree
## 106                                                   Quite Disagree
## 107                                                   Quite Disagree
## 108                                                     Partly Agree
## 109                                                     Partly Agree
## 110                                                   Strongly Agree
## 111                                                             <NA>
## 112                                                     Partly Agree
## 113                                                     Partly Agree
## 114                                                   Quite Disagree
## 115                                                     Partly Agree
## 116                                                     Partly Agree
## 117                                                   Strongly Agree
## 118                                                     Partly Agree
## 119                                                     Partly Agree
## 120                                                   Quite Disagree
## 121                                                   Quite Disagree
## 122                                                     Partly Agree
## 123                                                   Quite Disagree
## 124                                                     Partly Agree
## 125                                                     Partly Agree
## 126                                                     Partly Agree
## 127                                                     Partly Agree
## 128                                                   Quite Disagree
## 129                                                     Partly Agree
## 130                                                             <NA>
## 131                                                     Partly Agree
## 132                                                   Quite Disagree
## 133                                                   Quite Disagree
## 134                                                     Partly Agree
## 135                                                     Partly Agree
## 136                                                       Don't Know
## 137                                                   Quite Disagree
## 138                                                   Quite Disagree
## 139                                                   Quite Disagree
## 140                                                   Quite Disagree
## 141                                                     Partly Agree
## 142                                                     Partly Agree
## 143                                                     Partly Agree
## 144                                                   Quite Disagree
## 145                                                     Partly Agree
## 146                                                       Don't Know
## 147                                                     Partly Agree
## 148                                                   Strongly Agree
## 149                                                   Quite Disagree
## 150                                                   Strongly Agree
## 151                                                   Strongly Agree
## 152                                                   Quite Disagree
## 153                                                   Strongly Agree
## 154                                                   Strongly Agree
## 155                                                Strongly Disagree
## 156                                                   Strongly Agree
## 157                                                   Quite Disagree
## 158                                                   Quite Disagree
## 159                                                   Quite Disagree
## 160                                                   Quite Disagree
## 161                                                     Partly Agree
## 162                                                   Strongly Agree
## 163                                                       Don't Know
## 164                                                   Strongly Agree
## 165                                                   Quite Disagree
## 166                                                   Quite Disagree
## 167                                                   Quite Disagree
## 168                                                     Partly Agree
## 169                                                     Partly Agree
## 170                                                       Don't Know
## 171                                                   Quite Disagree
## 172                                                       Don't Know
## 173                                                       Don't Know
## 174                                                     Partly Agree
## 175                                                     Partly Agree
## 176                                                     Partly Agree
## 177                                                       Don't Know
## 178                                                   Strongly Agree
## 179                                                   Strongly Agree
## 180                                                     Partly Agree
## 181                                                     Partly Agree
## 182                                                   Strongly Agree
## 183                                                     Partly Agree
## 184                                                   Strongly Agree
## 185                                                     Partly Agree
## 186                                                   Quite Disagree
## 187                                                     Partly Agree
## 188                                                   Quite Disagree
## 189                                                   Quite Disagree
## 190                                                   Quite Disagree
## 191                                                   Strongly Agree
## 192                                                   Quite Disagree
## 193                                                     Partly Agree
## 194                                                       Don't Know
## 195                                                       Don't Know
## 196                                                   Quite Disagree
## 197                                                   Quite Disagree
## 198                                                   Quite Disagree
## 199                                                   Quite Disagree
## 200                                                   Quite Disagree
## 201                                                   Strongly Agree
## 202                                                   Quite Disagree
## 203                                                   Quite Disagree
## 204                                                   Quite Disagree
## 205                                                   Quite Disagree
## 206                                                     Partly Agree
## 207                                                   Quite Disagree
## 208                                                   Quite Disagree
## 209                                                Strongly Disagree
## 210                                                   Quite Disagree
## 211                                                Strongly Disagree
## 212                                                Strongly Disagree
## 213                                                Strongly Disagree
## 214                                                Strongly Disagree
## 215                                                Strongly Disagree
## 216                                                Strongly Disagree
## 217                                                   Quite Disagree
## 218                                                   Quite Disagree
## 219                                                   Quite Disagree
## 220                                                   Quite Disagree
## 221                                                     Partly Agree
## 222                                                Strongly Disagree
## 223                                                   Quite Disagree
## 224                                                     Partly Agree
## 225                                                   Quite Disagree
## 226                                                     Partly Agree
## 227                                                   Strongly Agree
## 228                                                   Strongly Agree
## 229                                                   Strongly Agree
## 230                                                   Strongly Agree
## 231                                                     Partly Agree
## 232                                                     Partly Agree
## 233                                                   Quite Disagree
## 234                                                   Quite Disagree
## 235                                                   Quite Disagree
## 236                                                     Partly Agree
## 237                                                   Quite Disagree
## 238                                                   Quite Disagree
## 239                                                   Quite Disagree
## 240                                                   Quite Disagree
## 241                                                   Quite Disagree
## 242                                                   Quite Disagree
## 243                                                   Quite Disagree
## 244                                                   Quite Disagree
## 245                                                Strongly Disagree
## 246                                                   Quite Disagree
## 247                                                   Quite Disagree
## 248                                                     Partly Agree
## 249                                                   Strongly Agree
## 250                                                   Strongly Agree
## 251                                                   Quite Disagree
## 252                                                   Quite Disagree
## 253                                                       Don't Know
## 254                                                     Partly Agree
## 255                                                   Quite Disagree
## 256                                                     Partly Agree
## 257                                                   Strongly Agree
## 258                                                   Strongly Agree
## 259                                                     Partly Agree
## 260                                                   Quite Disagree
## 261                                                   Strongly Agree
## 262                                                   Quite Disagree
## 263                                                   Strongly Agree
## 264                                                     Partly Agree
## 265                                                   Strongly Agree
## 266                                                   Strongly Agree
## 267                                                   Strongly Agree
## 268                                                     Partly Agree
## 269                                                       Don't Know
## 270                                                   Quite Disagree
## 271                                                     Partly Agree
## 272                                                   Quite Disagree
## 273                                                   Quite Disagree
## 274                                                     Partly Agree
## 275                                                Strongly Disagree
## 276                                                Strongly Disagree
## 277                                                     Partly Agree
## 278                                                   Quite Disagree
## 279                                                   Quite Disagree
## 280                                                   Quite Disagree
## 281                                                   Quite Disagree
## 282                                                   Quite Disagree
## 283                                                   Quite Disagree
## 284                                                     Partly Agree
## 285                                                             <NA>
## 286                                                   Quite Disagree
## 287                                                             <NA>
## 288                                                   Quite Disagree
## 289                                                       Don't Know
## 290                                                   Quite Disagree
## 291                                                   Quite Disagree
## 292                                                   Quite Disagree
## 293                                                   Quite Disagree
## 294                                                   Quite Disagree
## 295                                                   Quite Disagree
## 296                                                   Quite Disagree
## 297                                                       Don't Know
## 298                                                   Quite Disagree
## 299                                                     Partly Agree
## 300                                                   Quite Disagree
## 302                                                   Quite Disagree
## 303                                                   Quite Disagree
## 304                                                   Quite Disagree
## 305                                                   Quite Disagree
## 306                                                   Quite Disagree
## 307                                                   Quite Disagree
## 308                                                   Quite Disagree
## 309                                                   Quite Disagree
## 310                                                       Don't Know
## 311                                                   Quite Disagree
## 312                                                   Quite Disagree
## 313                                                   Quite Disagree
## 314                                                   Quite Disagree
## 315                                                   Quite Disagree
## 316                                                     Partly Agree
## 317                                                   Quite Disagree
## 318                                                     Partly Agree
## 319                                                Strongly Disagree
## 320                                                   Quite Disagree
## 321                                                     Partly Agree
## 322                                                     Partly Agree
## 323                                                   Quite Disagree
## 324                                                   Quite Disagree
## 325                                                   Quite Disagree
## 326                                                   Quite Disagree
## 327                                                   Quite Disagree
## 328                                                     Partly Agree
## 329                                                     Partly Agree
## 330                                                   Quite Disagree
## 331                                                   Strongly Agree
## 332                                                       Don't Know
## 333                                                       Don't Know
## 334                                                   Strongly Agree
## 335                                                Strongly Disagree
## 336                                                     Partly Agree
## 337                                                   Strongly Agree
## 338                                                   Strongly Agree
## 339                                                   Quite Disagree
## 340                                                     Partly Agree
## 341                                                     Partly Agree
## 342                                                   Quite Disagree
## 343                                                   Quite Disagree
## 344                                                Strongly Disagree
## 345                                                     Partly Agree
## 346                                                   Quite Disagree
## 347                                                     Partly Agree
## 348                                                   Quite Disagree
## 349                                                     Partly Agree
## 350                                                Strongly Disagree
## 351                                                   Quite Disagree
## 352                                                       Don't Know
## 353                                                   Quite Disagree
## 354                                                       Don't Know
## 355                                                   Quite Disagree
## 356                                                       Don't Know
## 357                                                     Partly Agree
## 358                                                     Partly Agree
## 359                                                   Quite Disagree
## 360                                                     Partly Agree
## 361                                                     Partly Agree
## 362                                                   Quite Disagree
## 363                                                   Quite Disagree
## 364                                                   Quite Disagree
## 365                                                       Don't Know
## 366                                                   Quite Disagree
## 367                                                     Partly Agree
## 368                                                   Quite Disagree
## 369                                                   Quite Disagree
## 370                                                     Partly Agree
## 371                                                   Quite Disagree
## 372                                                   Quite Disagree
## 373                                                     Partly Agree
## 374                                                   Quite Disagree
## 375                                                     Partly Agree
## 376                                                   Quite Disagree
## 377                                                   Quite Disagree
## 378                                                     Partly Agree
## 379                                                   Quite Disagree
## 380                                                   Quite Disagree
## 381                                                       Don't Know
## 382                                                       Don't Know
## 383                                                   Quite Disagree
## 384                                                       Don't Know
## 385                                                   Quite Disagree
## 386                                                   Quite Disagree
## 387                                                     Partly Agree
## 388                                                     Partly Agree
## 389                                                     Partly Agree
## 390                                                   Quite Disagree
## 391                                                   Quite Disagree
## 392                                                     Partly Agree
## 393                                                       Don't Know
## 394                                                       Don't Know
## 395                                                   Quite Disagree
## 396                                                   Quite Disagree
## 397                                                Strongly Disagree
## 398                                                   Quite Disagree
## 399                                                       Don't Know
## 400                                                       Don't Know
## 401                                                       Don't Know
## 402                                                     Partly Agree
## 403                                                     Partly Agree
## 404                                                       Don't Know
## 405                                                   Quite Disagree
## 406                                                     Partly Agree
## 407                                                             <NA>
## 408                                                     Partly Agree
## 409                                                   Strongly Agree
## 410                                                   Quite Disagree
## 411                                                   Quite Disagree
## 412                                                     Partly Agree
## 413                                                     Partly Agree
## 414                                                     Partly Agree
## 415                                                       Don't Know
## 416                                                     Partly Agree
## 417                                                       Don't Know
## 418                                                     Partly Agree
## 419                                                     Partly Agree
## 420                                                             <NA>
## 421                                                     Partly Agree
## 422                                                       Don't Know
## 423                                                       Don't Know
## 424                                                     Partly Agree
## 425                                                     Partly Agree
## 426                                                   Quite Disagree
## 427                                                     Partly Agree
## 428                                                       Don't Know
## 429                                                     Partly Agree
## 430                                                     Partly Agree
## 431                                                   Quite Disagree
## 432                                                       Don't Know
## 433                                                     Partly Agree
## 434                                                     Partly Agree
## 435                                                     Partly Agree
## 436                                                     Partly Agree
## 437                                                     Partly Agree
## 438                                                     Partly Agree
## 439                                                     Partly Agree
## 440                                                   Strongly Agree
## 441                                                     Partly Agree
## 442                                                     Partly Agree
## 443                                                     Partly Agree
## 444                                                   Quite Disagree
## 445                                                     Partly Agree
## 446                                                     Partly Agree
## 447                                                     Partly Agree
## 448                                                     Partly Agree
## 449                                                     Partly Agree
## 450                                                             <NA>
## 451                                                   Quite Disagree
## 452                                                   Quite Disagree
## 453                                                     Partly Agree
## 454                                                   Quite Disagree
## 455                                                   Quite Disagree
## 456                                                     Partly Agree
## 457                                                   Quite Disagree
## 458                                                Strongly Disagree
## 459                                                Strongly Disagree
## 460                                                             <NA>
## 461                                                   Quite Disagree
## 462                                                             <NA>
## 463                                                             <NA>
## 464                                                Strongly Disagree
## 465                                                   Strongly Agree
## 466                                                Strongly Disagree
## 467                                                     Partly Agree
## 468                                                   Quite Disagree
## 469                                                Strongly Disagree
## 470                                                   Quite Disagree
## 471                                                   Quite Disagree
## 472                                                   Quite Disagree
## 473                                                Strongly Disagree
## 474                                                Strongly Disagree
## 475                                                   Quite Disagree
## 476                                                       Don't Know
## 477                                                   Quite Disagree
## 478                                                   Quite Disagree
## 479                                                Strongly Disagree
## 480                                                   Quite Disagree
## 481                                                Strongly Disagree
## 482                                                Strongly Disagree
## 483                                                   Quite Disagree
## 484                                                Strongly Disagree
## 485                                                     Partly Agree
## 486                                                Strongly Disagree
## 487                                                   Quite Disagree
## 488                                                   Quite Disagree
## 489                                                   Quite Disagree
## 490                                                     Partly Agree
## 491                                                Strongly Disagree
## 492                                                     Partly Agree
## 493                                                Strongly Disagree
## 494                                                Strongly Disagree
## 495                                                   Quite Disagree
## 496                                                       Don't Know
##      Opinion..Politicians.serve.own.interests
## 1                              Strongly Agree
## 2                                Partly Agree
## 3                                Partly Agree
## 4                              Strongly Agree
## 5                                Partly Agree
## 6                              Strongly Agree
## 7                                Partly Agree
## 8                                Partly Agree
## 9                              Quite Disagree
## 10                               Partly Agree
## 11                               Partly Agree
## 12                             Strongly Agree
## 13                               Partly Agree
## 14                             Strongly Agree
## 15                             Strongly Agree
## 16                             Quite Disagree
## 17                             Quite Disagree
## 18                             Quite Disagree
## 19                               Partly Agree
## 20                             Quite Disagree
## 21                             Strongly Agree
## 22                             Strongly Agree
## 23                               Partly Agree
## 24                               Partly Agree
## 25                               Partly Agree
## 26                                       <NA>
## 27                             Quite Disagree
## 28                             Quite Disagree
## 29                               Partly Agree
## 30                             Quite Disagree
## 31                               Partly Agree
## 32                               Partly Agree
## 33                               Partly Agree
## 34                             Strongly Agree
## 35                             Strongly Agree
## 36                               Partly Agree
## 37                               Partly Agree
## 38                               Partly Agree
## 39                               Partly Agree
## 40                             Quite Disagree
## 41                               Partly Agree
## 42                               Partly Agree
## 43                             Quite Disagree
## 44                               Partly Agree
## 45                               Partly Agree
## 46                             Quite Disagree
## 47                               Partly Agree
## 48                               Partly Agree
## 49                               Partly Agree
## 50                               Partly Agree
## 51                             Strongly Agree
## 52                               Partly Agree
## 53                             Strongly Agree
## 54                               Partly Agree
## 55                             Strongly Agree
## 56                               Partly Agree
## 57                               Partly Agree
## 58                               Partly Agree
## 59                               Partly Agree
## 60                               Partly Agree
## 61                               Partly Agree
## 62                             Strongly Agree
## 63                               Partly Agree
## 64                               Partly Agree
## 65                               Partly Agree
## 66                               Partly Agree
## 67                               Partly Agree
## 68                               Partly Agree
## 69                             Strongly Agree
## 70                               Partly Agree
## 71                               Partly Agree
## 72                               Partly Agree
## 73                               Partly Agree
## 74                             Strongly Agree
## 75                             Strongly Agree
## 76                             Strongly Agree
## 77                             Strongly Agree
## 78                             Strongly Agree
## 79                             Strongly Agree
## 80                             Strongly Agree
## 81                             Strongly Agree
## 82                             Strongly Agree
## 83                             Strongly Agree
## 84                             Strongly Agree
## 85                             Strongly Agree
## 86                               Partly Agree
## 87                               Partly Agree
## 88                               Partly Agree
## 89                               Partly Agree
## 90                               Partly Agree
## 91                               Partly Agree
## 92                               Partly Agree
## 93                               Partly Agree
## 94                               Partly Agree
## 95                               Partly Agree
## 96                               Partly Agree
## 97                               Partly Agree
## 98                               Partly Agree
## 99                               Partly Agree
## 100                              Partly Agree
## 101                            Strongly Agree
## 102                              Partly Agree
## 103                              Partly Agree
## 104                              Partly Agree
## 105                            Quite Disagree
## 106                            Quite Disagree
## 107                              Partly Agree
## 108                              Partly Agree
## 109                              Partly Agree
## 110                              Partly Agree
## 111                              Partly Agree
## 112                            Quite Disagree
## 113                              Partly Agree
## 114                              Partly Agree
## 115                            Strongly Agree
## 116                            Quite Disagree
## 117                              Partly Agree
## 118                              Partly Agree
## 119                              Partly Agree
## 120                            Quite Disagree
## 121                            Quite Disagree
## 122                            Quite Disagree
## 123                              Partly Agree
## 124                            Quite Disagree
## 125                            Strongly Agree
## 126                              Partly Agree
## 127                            Quite Disagree
## 128                              Partly Agree
## 129                              Partly Agree
## 130                              Partly Agree
## 131                            Quite Disagree
## 132                              Partly Agree
## 133                              Partly Agree
## 134                              Partly Agree
## 135                            Quite Disagree
## 136                                Don't Know
## 137                              Partly Agree
## 138                              Partly Agree
## 139                            Quite Disagree
## 140                              Partly Agree
## 141                            Quite Disagree
## 142                            Quite Disagree
## 143                            Quite Disagree
## 144                              Partly Agree
## 145                            Quite Disagree
## 146                                Don't Know
## 147                            Quite Disagree
## 148                              Partly Agree
## 149                              Partly Agree
## 150                              Partly Agree
## 151                            Strongly Agree
## 152                              Partly Agree
## 153                              Partly Agree
## 154                            Strongly Agree
## 155                              Partly Agree
## 156                            Strongly Agree
## 157                              Partly Agree
## 158                              Partly Agree
## 159                              Partly Agree
## 160                              Partly Agree
## 161                            Strongly Agree
## 162                            Strongly Agree
## 163                            Strongly Agree
## 164                            Strongly Agree
## 165                              Partly Agree
## 166                              Partly Agree
## 167                              Partly Agree
## 168                            Strongly Agree
## 169                              Partly Agree
## 170                                Don't Know
## 171                            Strongly Agree
## 172                            Quite Disagree
## 173                            Quite Disagree
## 174                            Strongly Agree
## 175                              Partly Agree
## 176                              Partly Agree
## 177                                Don't Know
## 178                            Strongly Agree
## 179                            Strongly Agree
## 180                              Partly Agree
## 181                            Strongly Agree
## 182                            Strongly Agree
## 183                              Partly Agree
## 184                              Partly Agree
## 185                            Strongly Agree
## 186                              Partly Agree
## 187                              Partly Agree
## 188                              Partly Agree
## 189                              Partly Agree
## 190                              Partly Agree
## 191                              Partly Agree
## 192                              Partly Agree
## 193                            Strongly Agree
## 194                                Don't Know
## 195                            Strongly Agree
## 196                              Partly Agree
## 197                              Partly Agree
## 198                              Partly Agree
## 199                              Partly Agree
## 200                              Partly Agree
## 201                              Partly Agree
## 202                            Strongly Agree
## 203                              Partly Agree
## 204                              Partly Agree
## 205                         Strongly Disagree
## 206                              Partly Agree
## 207                         Strongly Disagree
## 208                         Strongly Disagree
## 209                         Strongly Disagree
## 210                         Strongly Disagree
## 211                            Strongly Agree
## 212                            Strongly Agree
## 213                            Strongly Agree
## 214                            Strongly Agree
## 215                            Strongly Agree
## 216                            Strongly Agree
## 217                            Strongly Agree
## 218                         Strongly Disagree
## 219                              Partly Agree
## 220                              Partly Agree
## 221                            Strongly Agree
## 222                         Strongly Disagree
## 223                         Strongly Disagree
## 224                            Strongly Agree
## 225                              Partly Agree
## 226                            Quite Disagree
## 227                              Partly Agree
## 228                              Partly Agree
## 229                            Strongly Agree
## 230                              Partly Agree
## 231                            Strongly Agree
## 232                            Quite Disagree
## 233                            Strongly Agree
## 234                            Strongly Agree
## 235                            Strongly Agree
## 236                            Strongly Agree
## 237                            Quite Disagree
## 238                            Strongly Agree
## 239                            Strongly Agree
## 240                            Strongly Agree
## 241                            Strongly Agree
## 242                            Strongly Agree
## 243                            Strongly Agree
## 244                            Strongly Agree
## 245                         Strongly Disagree
## 246                              Partly Agree
## 247                              Partly Agree
## 248                         Strongly Disagree
## 249                            Strongly Agree
## 250                            Quite Disagree
## 251                            Quite Disagree
## 252                            Quite Disagree
## 253                                Don't Know
## 254                              Partly Agree
## 255                            Quite Disagree
## 256                         Strongly Disagree
## 257                              Partly Agree
## 258                            Strongly Agree
## 259                              Partly Agree
## 260                            Quite Disagree
## 261                            Strongly Agree
## 262                            Quite Disagree
## 263                              Partly Agree
## 264                              Partly Agree
## 265                            Strongly Agree
## 266                              Partly Agree
## 267                              Partly Agree
## 268                            Strongly Agree
## 269                              Partly Agree
## 270                              Partly Agree
## 271                              Partly Agree
## 272                            Quite Disagree
## 273                            Quite Disagree
## 274                            Quite Disagree
## 275                              Partly Agree
## 276                            Quite Disagree
## 277                              Partly Agree
## 278                            Quite Disagree
## 279                            Quite Disagree
## 280                              Partly Agree
## 281                              Partly Agree
## 282                            Quite Disagree
## 283                            Quite Disagree
## 284                            Quite Disagree
## 285                            Quite Disagree
## 286                            Quite Disagree
## 287                            Quite Disagree
## 288                            Quite Disagree
## 289                            Strongly Agree
## 290                            Quite Disagree
## 291                            Quite Disagree
## 292                            Strongly Agree
## 293                            Quite Disagree
## 294                            Quite Disagree
## 295                              Partly Agree
## 296                              Partly Agree
## 297                            Quite Disagree
## 298                            Quite Disagree
## 299                            Strongly Agree
## 300                            Quite Disagree
## 302                            Strongly Agree
## 303                         Strongly Disagree
## 304                            Strongly Agree
## 305                         Strongly Disagree
## 306                              Partly Agree
## 307                            Quite Disagree
## 308                              Partly Agree
## 309                              Partly Agree
## 310                            Strongly Agree
## 311                            Quite Disagree
## 312                              Partly Agree
## 313                              Partly Agree
## 314                              Partly Agree
## 315                              Partly Agree
## 316                            Strongly Agree
## 317                            Strongly Agree
## 318                              Partly Agree
## 319                            Strongly Agree
## 320                              Partly Agree
## 321                         Strongly Disagree
## 322                                Don't Know
## 323                            Quite Disagree
## 324                            Quite Disagree
## 325                            Quite Disagree
## 326                              Partly Agree
## 327                              Partly Agree
## 328                              Partly Agree
## 329                            Quite Disagree
## 330                         Strongly Disagree
## 331                              Partly Agree
## 332                            Strongly Agree
## 333                              Partly Agree
## 334                              Partly Agree
## 335                              Partly Agree
## 336                            Strongly Agree
## 337                              Partly Agree
## 338                            Quite Disagree
## 339                            Quite Disagree
## 340                              Partly Agree
## 341                         Strongly Disagree
## 342                            Quite Disagree
## 343                            Quite Disagree
## 344                              Partly Agree
## 345                              Partly Agree
## 346                              Partly Agree
## 347                              Partly Agree
## 348                            Quite Disagree
## 349                              Partly Agree
## 350                            Strongly Agree
## 351                              Partly Agree
## 352                              Partly Agree
## 353                              Partly Agree
## 354                              Partly Agree
## 355                            Quite Disagree
## 356                              Partly Agree
## 357                              Partly Agree
## 358                              Partly Agree
## 359                              Partly Agree
## 360                              Partly Agree
## 361                              Partly Agree
## 362                              Partly Agree
## 363                              Partly Agree
## 364                              Partly Agree
## 365                              Partly Agree
## 366                            Strongly Agree
## 367                              Partly Agree
## 368                              Partly Agree
## 369                              Partly Agree
## 370                              Partly Agree
## 371                              Partly Agree
## 372                              Partly Agree
## 373                            Quite Disagree
## 374                            Strongly Agree
## 375                            Strongly Agree
## 376                              Partly Agree
## 377                              Partly Agree
## 378                              Partly Agree
## 379                              Partly Agree
## 380                              Partly Agree
## 381                              Partly Agree
## 382                              Partly Agree
## 383                              Partly Agree
## 384                              Partly Agree
## 385                              Partly Agree
## 386                              Partly Agree
## 387                              Partly Agree
## 388                              Partly Agree
## 389                              Partly Agree
## 390                              Partly Agree
## 391                              Partly Agree
## 392                              Partly Agree
## 393                              Partly Agree
## 394                              Partly Agree
## 395                              Partly Agree
## 396                              Partly Agree
## 397                              Partly Agree
## 398                              Partly Agree
## 399                              Partly Agree
## 400                              Partly Agree
## 401                              Partly Agree
## 402                              Partly Agree
## 403                            Strongly Agree
## 404                                Don't Know
## 405                              Partly Agree
## 406                            Quite Disagree
## 407                            Quite Disagree
## 408                            Quite Disagree
## 409                              Partly Agree
## 410                            Quite Disagree
## 411                              Partly Agree
## 412                              Partly Agree
## 413                              Partly Agree
## 414                              Partly Agree
## 415                                Don't Know
## 416                              Partly Agree
## 417                                Don't Know
## 418                              Partly Agree
## 419                            Quite Disagree
## 420                              Partly Agree
## 421                              Partly Agree
## 422                                Don't Know
## 423                                Don't Know
## 424                              Partly Agree
## 425                            Quite Disagree
## 426                            Quite Disagree
## 427                              Partly Agree
## 428                                Don't Know
## 429                              Partly Agree
## 430                              Partly Agree
## 431                              Partly Agree
## 432                                Don't Know
## 433                              Partly Agree
## 434                            Quite Disagree
## 435                              Partly Agree
## 436                              Partly Agree
## 437                              Partly Agree
## 438                              Partly Agree
## 439                            Quite Disagree
## 440                            Strongly Agree
## 441                            Quite Disagree
## 442                              Partly Agree
## 443                              Partly Agree
## 444                            Quite Disagree
## 445                            Quite Disagree
## 446                              Partly Agree
## 447                              Partly Agree
## 448                            Strongly Agree
## 449                            Quite Disagree
## 450                                      <NA>
## 451                              Partly Agree
## 452                            Quite Disagree
## 453                              Partly Agree
## 454                            Strongly Agree
## 455                              Partly Agree
## 456                              Partly Agree
## 457                              Partly Agree
## 458                            Strongly Agree
## 459                            Strongly Agree
## 460                            Strongly Agree
## 461                                Don't Know
## 462                            Strongly Agree
## 463                            Strongly Agree
## 464                            Strongly Agree
## 465                              Partly Agree
## 466                            Strongly Agree
## 467                            Strongly Agree
## 468                            Strongly Agree
## 469                            Strongly Agree
## 470                              Partly Agree
## 471                         Strongly Disagree
## 472                              Partly Agree
## 473                            Strongly Agree
## 474                            Strongly Agree
## 475                            Strongly Agree
## 476                                Don't Know
## 477                            Strongly Agree
## 478                            Quite Disagree
## 479                            Strongly Agree
## 480                            Strongly Agree
## 481                            Strongly Agree
## 482                            Strongly Agree
## 483                              Partly Agree
## 484                              Partly Agree
## 485                            Quite Disagree
## 486                            Strongly Agree
## 487                              Partly Agree
## 488                            Quite Disagree
## 489                              Partly Agree
## 490                            Strongly Agree
## 491                            Strongly Agree
## 492                            Quite Disagree
## 493                            Strongly Agree
## 494                            Strongly Agree
## 495                                      <NA>
## 496                              Partly Agree
##      Opinion..Politicians.do.what.is.right
## 1                           Quite Disagree
## 2                           Quite Disagree
## 3                           Quite Disagree
## 4                           Quite Disagree
## 5                           Quite Disagree
## 6                        Strongly Disagree
## 7                        Strongly Disagree
## 8                        Strongly Disagree
## 9                        Strongly Disagree
## 10                          Strongly Agree
## 11                            Partly Agree
## 12                          Quite Disagree
## 13                          Quite Disagree
## 14                          Quite Disagree
## 15                                    <NA>
## 16                          Quite Disagree
## 17                            Partly Agree
## 18                            Partly Agree
## 19                            Partly Agree
## 20                            Partly Agree
## 21                          Quite Disagree
## 22                       Strongly Disagree
## 23                          Quite Disagree
## 24                          Quite Disagree
## 25                            Partly Agree
## 26                            Partly Agree
## 27                          Quite Disagree
## 28                          Strongly Agree
## 29                            Partly Agree
## 30                            Partly Agree
## 31                          Quite Disagree
## 32                            Partly Agree
## 33                          Quite Disagree
## 34                          Quite Disagree
## 35                          Quite Disagree
## 36                          Quite Disagree
## 37                          Quite Disagree
## 38                          Quite Disagree
## 39                          Quite Disagree
## 40                          Quite Disagree
## 41                                    <NA>
## 42                          Quite Disagree
## 43                            Partly Agree
## 44                          Quite Disagree
## 45                          Quite Disagree
## 46                          Quite Disagree
## 47                            Partly Agree
## 48                          Quite Disagree
## 49                          Quite Disagree
## 50                            Partly Agree
## 51                          Quite Disagree
## 52                          Quite Disagree
## 53                          Quite Disagree
## 54                          Quite Disagree
## 55                       Strongly Disagree
## 56                          Quite Disagree
## 57                          Quite Disagree
## 58                          Quite Disagree
## 59                            Partly Agree
## 60                          Quite Disagree
## 61                          Quite Disagree
## 62                          Quite Disagree
## 63                          Quite Disagree
## 64                          Quite Disagree
## 65                          Quite Disagree
## 66                          Quite Disagree
## 67                          Quite Disagree
## 68                          Quite Disagree
## 69                          Quite Disagree
## 70                          Quite Disagree
## 71                          Quite Disagree
## 72                          Quite Disagree
## 73                          Quite Disagree
## 74                          Quite Disagree
## 75                          Quite Disagree
## 76                          Quite Disagree
## 77                          Quite Disagree
## 78                          Quite Disagree
## 79                          Quite Disagree
## 80                          Quite Disagree
## 81                          Quite Disagree
## 82                          Quite Disagree
## 83                          Quite Disagree
## 84                          Quite Disagree
## 85                       Strongly Disagree
## 86                       Strongly Disagree
## 87                          Quite Disagree
## 88                          Quite Disagree
## 89                          Quite Disagree
## 90                          Quite Disagree
## 91                          Quite Disagree
## 92                          Quite Disagree
## 93                          Quite Disagree
## 94                          Quite Disagree
## 95                          Quite Disagree
## 96                          Quite Disagree
## 97                          Quite Disagree
## 98                          Quite Disagree
## 99                          Quite Disagree
## 100                           Partly Agree
## 101                           Partly Agree
## 102                         Quite Disagree
## 103                           Partly Agree
## 104                         Quite Disagree
## 105                         Quite Disagree
## 106                           Partly Agree
## 107                           Partly Agree
## 108                         Quite Disagree
## 109                         Quite Disagree
## 110                           Partly Agree
## 111                         Quite Disagree
## 112                           Partly Agree
## 113                           Partly Agree
## 114                         Quite Disagree
## 115                         Strongly Agree
## 116                           Partly Agree
## 117                           Partly Agree
## 118                         Quite Disagree
## 119                         Quite Disagree
## 120                         Quite Disagree
## 121                           Partly Agree
## 122                           Partly Agree
## 123                         Quite Disagree
## 124                           Partly Agree
## 125                           Partly Agree
## 126                         Quite Disagree
## 127                         Quite Disagree
## 128                         Quite Disagree
## 129                         Quite Disagree
## 130                         Strongly Agree
## 131                         Strongly Agree
## 132                         Quite Disagree
## 133                         Quite Disagree
## 134                           Partly Agree
## 135                           Partly Agree
## 136                             Don't Know
## 137                      Strongly Disagree
## 138                         Quite Disagree
## 139                           Partly Agree
## 140                         Quite Disagree
## 141                           Partly Agree
## 142                           Partly Agree
## 143                           Partly Agree
## 144                           Partly Agree
## 145                           Partly Agree
## 146                             Don't Know
## 147                           Partly Agree
## 148                         Strongly Agree
## 149                         Quite Disagree
## 150                         Strongly Agree
## 151                           Partly Agree
## 152                         Quite Disagree
## 153                         Strongly Agree
## 154                         Quite Disagree
## 155                         Strongly Agree
## 156                           Partly Agree
## 157                           Partly Agree
## 158                         Quite Disagree
## 159                         Quite Disagree
## 160                         Quite Disagree
## 161                           Partly Agree
## 162                         Strongly Agree
## 163                             Don't Know
## 164                         Strongly Agree
## 165                         Quite Disagree
## 166                         Quite Disagree
## 167                         Quite Disagree
## 168                         Quite Disagree
## 169                             Don't Know
## 170                             Don't Know
## 171                             Don't Know
## 172                      Strongly Disagree
## 173                           Partly Agree
## 174                           Partly Agree
## 175                         Quite Disagree
## 176                         Strongly Agree
## 177                             Don't Know
## 178                         Strongly Agree
## 179                         Strongly Agree
## 180                           Partly Agree
## 181                           Partly Agree
## 182                           Partly Agree
## 183                             Don't Know
## 184                           Partly Agree
## 185                         Quite Disagree
## 186                         Quite Disagree
## 187                         Quite Disagree
## 188                                   <NA>
## 189                           Partly Agree
## 190                         Quite Disagree
## 191                             Don't Know
## 192                         Strongly Agree
## 193                           Partly Agree
## 194                             Don't Know
## 195                             Don't Know
## 196                         Strongly Agree
## 197                           Partly Agree
## 198                         Quite Disagree
## 199                         Quite Disagree
## 200                             Don't Know
## 201                         Quite Disagree
## 202                      Strongly Disagree
## 203                         Quite Disagree
## 204                         Quite Disagree
## 205                         Quite Disagree
## 206                           Partly Agree
## 207                      Strongly Disagree
## 208                         Quite Disagree
## 209                      Strongly Disagree
## 210                         Quite Disagree
## 211                         Quite Disagree
## 212                         Quite Disagree
## 213                         Quite Disagree
## 214                         Quite Disagree
## 215                         Quite Disagree
## 216                         Strongly Agree
## 217                           Partly Agree
## 218                         Quite Disagree
## 219                         Quite Disagree
## 220                         Quite Disagree
## 221                         Strongly Agree
## 222                         Quite Disagree
## 223                         Quite Disagree
## 224                           Partly Agree
## 225                         Strongly Agree
## 226                           Partly Agree
## 227                           Partly Agree
## 228                         Quite Disagree
## 229                           Partly Agree
## 230                         Strongly Agree
## 231                      Strongly Disagree
## 232                      Strongly Disagree
## 233                         Quite Disagree
## 234                      Strongly Disagree
## 235                      Strongly Disagree
## 236                         Strongly Agree
## 237                           Partly Agree
## 238                           Partly Agree
## 239                      Strongly Disagree
## 240                         Quite Disagree
## 241                      Strongly Disagree
## 242                         Quite Disagree
## 243                      Strongly Disagree
## 244                      Strongly Disagree
## 245                         Quite Disagree
## 246                      Strongly Disagree
## 247                         Strongly Agree
## 248                         Quite Disagree
## 249                           Partly Agree
## 250                      Strongly Disagree
## 251                           Partly Agree
## 252                         Quite Disagree
## 253                           Partly Agree
## 254                           Partly Agree
## 255                         Quite Disagree
## 256                           Partly Agree
## 257                         Strongly Agree
## 258                             Don't Know
## 259                           Partly Agree
## 260                         Quite Disagree
## 261                         Strongly Agree
## 262                         Quite Disagree
## 263                                   <NA>
## 264                         Strongly Agree
## 265                         Strongly Agree
## 266                         Strongly Agree
## 267                         Strongly Agree
## 268                           Partly Agree
## 269                                   <NA>
## 270                         Quite Disagree
## 271                           Partly Agree
## 272                           Partly Agree
## 273                         Quite Disagree
## 274                           Partly Agree
## 275                           Partly Agree
## 276                         Quite Disagree
## 277                           Partly Agree
## 278                         Quite Disagree
## 279                         Quite Disagree
## 280                         Quite Disagree
## 281                           Partly Agree
## 282                         Quite Disagree
## 283                         Strongly Agree
## 284                           Partly Agree
## 285                           Partly Agree
## 286                         Quite Disagree
## 287                         Quite Disagree
## 288                         Quite Disagree
## 289                         Quite Disagree
## 290                         Quite Disagree
## 291                         Quite Disagree
## 292                         Quite Disagree
## 293                         Quite Disagree
## 294                         Quite Disagree
## 295                           Partly Agree
## 296                         Quite Disagree
## 297                         Quite Disagree
## 298                         Quite Disagree
## 299                           Partly Agree
## 300                         Quite Disagree
## 302                         Quite Disagree
## 303                         Quite Disagree
## 304                         Quite Disagree
## 305                      Strongly Disagree
## 306                           Partly Agree
## 307                         Quite Disagree
## 308                         Quite Disagree
## 309                           Partly Agree
## 310                           Partly Agree
## 311                         Quite Disagree
## 312                           Partly Agree
## 313                         Quite Disagree
## 314                         Quite Disagree
## 315                         Quite Disagree
## 316                           Partly Agree
## 317                         Quite Disagree
## 318                      Strongly Disagree
## 319                         Quite Disagree
## 320                         Quite Disagree
## 321                           Partly Agree
## 322                           Partly Agree
## 323                         Quite Disagree
## 324                         Quite Disagree
## 325                         Quite Disagree
## 326                         Quite Disagree
## 327                         Quite Disagree
## 328                           Partly Agree
## 329                         Strongly Agree
## 330                           Partly Agree
## 331                         Quite Disagree
## 332                           Partly Agree
## 333                         Strongly Agree
## 334                         Quite Disagree
## 335                      Strongly Disagree
## 336                         Quite Disagree
## 337                         Quite Disagree
## 338                         Strongly Agree
## 339                         Quite Disagree
## 340                         Quite Disagree
## 341                           Partly Agree
## 342                           Partly Agree
## 343                         Quite Disagree
## 344                         Quite Disagree
## 345                         Quite Disagree
## 346                         Quite Disagree
## 347                           Partly Agree
## 348                           Partly Agree
## 349                           Partly Agree
## 350                      Strongly Disagree
## 351                         Quite Disagree
## 352                             Don't Know
## 353                         Quite Disagree
## 354                             Don't Know
## 355                         Quite Disagree
## 356                             Don't Know
## 357                           Partly Agree
## 358                         Quite Disagree
## 359                         Quite Disagree
## 360                           Partly Agree
## 361                           Partly Agree
## 362                           Partly Agree
## 363                           Partly Agree
## 364                         Quite Disagree
## 365                         Quite Disagree
## 366                           Partly Agree
## 367                           Partly Agree
## 368                           Partly Agree
## 369                         Quite Disagree
## 370                         Quite Disagree
## 371                         Quite Disagree
## 372                         Quite Disagree
## 373                           Partly Agree
## 374                         Quite Disagree
## 375                           Partly Agree
## 376                         Quite Disagree
## 377                         Quite Disagree
## 378                           Partly Agree
## 379                         Quite Disagree
## 380                           Partly Agree
## 381                           Partly Agree
## 382                           Partly Agree
## 383                           Partly Agree
## 384                           Partly Agree
## 385                           Partly Agree
## 386                           Partly Agree
## 387                           Partly Agree
## 388                           Partly Agree
## 389                           Partly Agree
## 390                      Strongly Disagree
## 391                           Partly Agree
## 392                             Don't Know
## 393                           Partly Agree
## 394                           Partly Agree
## 395                           Partly Agree
## 396                           Partly Agree
## 397                         Quite Disagree
## 398                           Partly Agree
## 399                           Partly Agree
## 400                           Partly Agree
## 401                           Partly Agree
## 402                           Partly Agree
## 403                           Partly Agree
## 404                             Don't Know
## 405                         Quite Disagree
## 406                         Quite Disagree
## 407                         Quite Disagree
## 408                         Quite Disagree
## 409                           Partly Agree
## 410                         Quite Disagree
## 411                         Quite Disagree
## 412                         Quite Disagree
## 413                         Quite Disagree
## 414                         Strongly Agree
## 415                             Don't Know
## 416                         Quite Disagree
## 417                           Partly Agree
## 418                           Partly Agree
## 419                         Quite Disagree
## 420                           Partly Agree
## 421                           Partly Agree
## 422                             Don't Know
## 423                             Don't Know
## 424                           Partly Agree
## 425                           Partly Agree
## 426                           Partly Agree
## 427                           Partly Agree
## 428                             Don't Know
## 429                           Partly Agree
## 430                           Partly Agree
## 431                           Partly Agree
## 432                             Don't Know
## 433                                   <NA>
## 434                           Partly Agree
## 435                           Partly Agree
## 436                           Partly Agree
## 437                           Partly Agree
## 438                           Partly Agree
## 439                                   <NA>
## 440                         Quite Disagree
## 441                           Partly Agree
## 442                           Partly Agree
## 443                           Partly Agree
## 444                         Quite Disagree
## 445                           Partly Agree
## 446                           Partly Agree
## 447                           Partly Agree
## 448                         Strongly Agree
## 449                           Partly Agree
## 450                                   <NA>
## 451                           Partly Agree
## 452                           Partly Agree
## 453                           Partly Agree
## 454                         Quite Disagree
## 455                      Strongly Disagree
## 456                         Quite Disagree
## 457                         Quite Disagree
## 458                      Strongly Disagree
## 459                      Strongly Disagree
## 460                             Don't Know
## 461                         Quite Disagree
## 462                      Strongly Disagree
## 463                           Partly Agree
## 464                      Strongly Disagree
## 465                           Partly Agree
## 466                         Quite Disagree
## 467                         Quite Disagree
## 468                         Quite Disagree
## 469                         Quite Disagree
## 470                         Quite Disagree
## 471                           Partly Agree
## 472                         Quite Disagree
## 473                      Strongly Disagree
## 474                         Quite Disagree
## 475                         Quite Disagree
## 476                             Don't Know
## 477                         Quite Disagree
## 478                           Partly Agree
## 479                             Don't Know
## 480                      Strongly Disagree
## 481                      Strongly Disagree
## 482                      Strongly Disagree
## 483                         Quite Disagree
## 484                      Strongly Disagree
## 485                           Partly Agree
## 486                         Quite Disagree
## 487                         Quite Disagree
## 488                             Don't Know
## 489                           Partly Agree
## 490                         Quite Disagree
## 491                      Strongly Disagree
## 492                           Partly Agree
## 493                      Strongly Disagree
## 494                      Strongly Disagree
## 495                      Strongly Disagree
## 496                         Quite Disagree
##      Opinion..When.citizens.don.t.trust.the.government..things.go.wrong
## 1                                                        Quite Disagree
## 2                                                        Quite Disagree
## 3                                                          Partly Agree
## 4                                                          Partly Agree
## 5                                                        Quite Disagree
## 6                                                          Partly Agree
## 7                                                     Strongly Disagree
## 8                                                          Partly Agree
## 9                                                          Partly Agree
## 10                                                                 <NA>
## 11                                                       Quite Disagree
## 12                                                         Partly Agree
## 13                                                         Partly Agree
## 14                                                         Partly Agree
## 15                                                    Strongly Disagree
## 16                                                         Partly Agree
## 17                                                         Partly Agree
## 18                                                         Partly Agree
## 19                                                       Strongly Agree
## 20                                                         Partly Agree
## 21                                                       Quite Disagree
## 22                                                       Quite Disagree
## 23                                                         Partly Agree
## 24                                                         Partly Agree
## 25                                                         Partly Agree
## 26                                                       Quite Disagree
## 27                                                       Quite Disagree
## 28                                                       Quite Disagree
## 29                                                         Partly Agree
## 30                                                         Partly Agree
## 31                                                       Quite Disagree
## 32                                                           Don't Know
## 33                                                       Quite Disagree
## 34                                                         Partly Agree
## 35                                                       Quite Disagree
## 36                                                         Partly Agree
## 37                                                         Partly Agree
## 38                                                         Partly Agree
## 39                                                       Quite Disagree
## 40                                                         Partly Agree
## 41                                                         Partly Agree
## 42                                                       Quite Disagree
## 43                                                       Quite Disagree
## 44                                                                 <NA>
## 45                                                         Partly Agree
## 46                                                    Strongly Disagree
## 47                                                         Partly Agree
## 48                                                       Quite Disagree
## 49                                                       Quite Disagree
## 50                                                       Quite Disagree
## 51                                                         Partly Agree
## 52                                                       Quite Disagree
## 53                                                       Quite Disagree
## 54                                                       Quite Disagree
## 55                                                       Quite Disagree
## 56                                                         Partly Agree
## 57                                                         Partly Agree
## 58                                                         Partly Agree
## 59                                                         Partly Agree
## 60                                                         Partly Agree
## 61                                                         Partly Agree
## 62                                                       Quite Disagree
## 63                                                         Partly Agree
## 64                                                         Partly Agree
## 65                                                         Partly Agree
## 66                                                       Quite Disagree
## 67                                                         Partly Agree
## 68                                                         Partly Agree
## 69                                                       Quite Disagree
## 70                                                         Partly Agree
## 71                                                       Quite Disagree
## 72                                                       Quite Disagree
## 73                                                       Quite Disagree
## 74                                                       Quite Disagree
## 75                                                       Quite Disagree
## 76                                                       Quite Disagree
## 77                                                         Partly Agree
## 78                                                       Quite Disagree
## 79                                                       Quite Disagree
## 80                                                       Quite Disagree
## 81                                                       Quite Disagree
## 82                                                       Quite Disagree
## 83                                                       Quite Disagree
## 84                                                       Quite Disagree
## 85                                                    Strongly Disagree
## 86                                                         Partly Agree
## 87                                                       Quite Disagree
## 88                                                       Quite Disagree
## 89                                                         Partly Agree
## 90                                                       Quite Disagree
## 91                                                         Partly Agree
## 92                                                         Partly Agree
## 93                                                         Partly Agree
## 94                                                         Partly Agree
## 95                                                         Partly Agree
## 96                                                         Partly Agree
## 97                                                         Partly Agree
## 98                                                         Partly Agree
## 99                                                         Partly Agree
## 100                                                        Partly Agree
## 101                                                      Strongly Agree
## 102                                                   Strongly Disagree
## 103                                                      Quite Disagree
## 104                                                      Quite Disagree
## 105                                                   Strongly Disagree
## 106                                                        Partly Agree
## 107                                                      Quite Disagree
## 108                                                      Quite Disagree
## 109                                                      Quite Disagree
## 110                                                      Strongly Agree
## 111                                                      Strongly Agree
## 112                                                                <NA>
## 113                                                      Quite Disagree
## 114                                                        Partly Agree
## 115                                                      Quite Disagree
## 116                                                      Quite Disagree
## 117                                                      Strongly Agree
## 118                                                        Partly Agree
## 119                                                      Quite Disagree
## 120                                                                <NA>
## 121                                                      Quite Disagree
## 122                                                                <NA>
## 123                                                        Partly Agree
## 124                                                      Strongly Agree
## 125                                                      Strongly Agree
## 126                                                        Partly Agree
## 127                                                   Strongly Disagree
## 128                                                        Partly Agree
## 129                                                        Partly Agree
## 130                                                        Partly Agree
## 131                                                        Partly Agree
## 132                                                        Partly Agree
## 133                                                        Partly Agree
## 134                                                      Quite Disagree
## 135                                                      Quite Disagree
## 136                                                          Don't Know
## 137                                                        Partly Agree
## 138                                                      Strongly Agree
## 139                                                      Quite Disagree
## 140                                                        Partly Agree
## 141                                                      Quite Disagree
## 142                                                        Partly Agree
## 143                                                      Quite Disagree
## 144                                                      Quite Disagree
## 145                                                      Quite Disagree
## 146                                                          Don't Know
## 147                                                      Quite Disagree
## 148                                                      Quite Disagree
## 149                                                        Partly Agree
## 150                                                      Quite Disagree
## 151                                                        Partly Agree
## 152                                                        Partly Agree
## 153                                                          Don't Know
## 154                                                      Strongly Agree
## 155                                                        Partly Agree
## 156                                                        Partly Agree
## 157                                                          Don't Know
## 158                                                        Partly Agree
## 159                                                        Partly Agree
## 160                                                        Partly Agree
## 161                                                        Partly Agree
## 162                                                        Partly Agree
## 163                                                        Partly Agree
## 164                                                      Strongly Agree
## 165                                                        Partly Agree
## 166                                                        Partly Agree
## 167                                                        Partly Agree
## 168                                                        Partly Agree
## 169                                                          Don't Know
## 170                                                        Partly Agree
## 171                                                      Strongly Agree
## 172                                                        Partly Agree
## 173                                                          Don't Know
## 174                                                      Strongly Agree
## 175                                                        Partly Agree
## 176                                                      Strongly Agree
## 177                                                          Don't Know
## 178                                                      Strongly Agree
## 179                                                      Strongly Agree
## 180                                                        Partly Agree
## 181                                                        Partly Agree
## 182                                                      Strongly Agree
## 183                                                          Don't Know
## 184                                                      Strongly Agree
## 185                                                        Partly Agree
## 186                                                        Partly Agree
## 187                                                        Partly Agree
## 188                                                        Partly Agree
## 189                                                      Strongly Agree
## 190                                                      Strongly Agree
## 191                                                          Don't Know
## 192                                                        Partly Agree
## 193                                                      Strongly Agree
## 194                                                        Partly Agree
## 195                                                          Don't Know
## 196                                                          Don't Know
## 197                                                        Partly Agree
## 198                                                        Partly Agree
## 199                                                        Partly Agree
## 200                                                                <NA>
## 201                                                        Partly Agree
## 202                                                      Quite Disagree
## 203                                                   Strongly Disagree
## 204                                                      Quite Disagree
## 205                                                        Partly Agree
## 206                                                      Quite Disagree
## 207                                                      Quite Disagree
## 208                                                        Partly Agree
## 209                                                      Quite Disagree
## 210                                                        Partly Agree
## 211                                                        Partly Agree
## 212                                                        Partly Agree
## 213                                                        Partly Agree
## 214                                                        Partly Agree
## 215                                                        Partly Agree
## 216                                                      Quite Disagree
## 217                                                      Quite Disagree
## 218                                                      Quite Disagree
## 219                                                      Quite Disagree
## 220                                                        Partly Agree
## 221                                                        Partly Agree
## 222                                                        Partly Agree
## 223                                                        Partly Agree
## 224                                                      Strongly Agree
## 225                                                        Partly Agree
## 226                                                        Partly Agree
## 227                                                      Quite Disagree
## 228                                                      Strongly Agree
## 229                                                      Quite Disagree
## 230                                                        Partly Agree
## 231                                                        Partly Agree
## 232                                                      Quite Disagree
## 233                                                      Strongly Agree
## 234                                                        Partly Agree
## 235                                                        Partly Agree
## 236                                                        Partly Agree
## 237                                                      Quite Disagree
## 238                                                        Partly Agree
## 239                                                        Partly Agree
## 240                                                   Strongly Disagree
## 241                                                        Partly Agree
## 242                                                      Strongly Agree
## 243                                                        Partly Agree
## 244                                                        Partly Agree
## 245                                                        Partly Agree
## 246                                                      Quite Disagree
## 247                                                      Quite Disagree
## 248                                                        Partly Agree
## 249                                                      Quite Disagree
## 250                                                      Quite Disagree
## 251                                                        Partly Agree
## 252                                                      Quite Disagree
## 253                                                        Partly Agree
## 254                                                      Strongly Agree
## 255                                                      Quite Disagree
## 256                                                      Strongly Agree
## 257                                                        Partly Agree
## 258                                                        Partly Agree
## 259                                                        Partly Agree
## 260                                                      Strongly Agree
## 261                                                        Partly Agree
## 262                                                      Quite Disagree
## 263                                                          Don't Know
## 264                                                        Partly Agree
## 265                                                        Partly Agree
## 266                                                        Partly Agree
## 267                                                        Partly Agree
## 268                                                      Strongly Agree
## 269                                                        Partly Agree
## 270                                                        Partly Agree
## 271                                                        Partly Agree
## 272                                                        Partly Agree
## 273                                                      Quite Disagree
## 274                                                      Quite Disagree
## 275                                                        Partly Agree
## 276                                                        Partly Agree
## 277                                                      Strongly Agree
## 278                                                        Partly Agree
## 279                                                        Partly Agree
## 280                                                        Partly Agree
## 281                                                        Partly Agree
## 282                                                        Partly Agree
## 283                                                      Quite Disagree
## 284                                                      Quite Disagree
## 285                                                      Strongly Agree
## 286                                                        Partly Agree
## 287                                                      Quite Disagree
## 288                                                      Strongly Agree
## 289                                                      Strongly Agree
## 290                                                      Quite Disagree
## 291                                                      Strongly Agree
## 292                                                      Strongly Agree
## 293                                                      Quite Disagree
## 294                                                      Quite Disagree
## 295                                                        Partly Agree
## 296                                                                <NA>
## 297                                                        Partly Agree
## 298                                                      Quite Disagree
## 299                                                      Strongly Agree
## 300                                                        Partly Agree
## 302                                                        Partly Agree
## 303                                                   Strongly Disagree
## 304                                                      Quite Disagree
## 305                                                        Partly Agree
## 306                                                      Strongly Agree
## 307                                                   Strongly Disagree
## 308                                                      Quite Disagree
## 309                                                        Partly Agree
## 310                                                      Strongly Agree
## 311                                                        Partly Agree
## 312                                                        Partly Agree
## 313                                                      Quite Disagree
## 314                                                        Partly Agree
## 315                                                      Quite Disagree
## 316                                                      Strongly Agree
## 317                                                      Quite Disagree
## 318                                                        Partly Agree
## 319                                                      Strongly Agree
## 320                                                        Partly Agree
## 321                                                      Quite Disagree
## 322                                                          Don't Know
## 323                                                      Quite Disagree
## 324                                                      Quite Disagree
## 325                                                        Partly Agree
## 326                                                      Quite Disagree
## 327                                                        Partly Agree
## 328                                                      Quite Disagree
## 329                                                      Strongly Agree
## 330                                                          Don't Know
## 331                                                   Strongly Disagree
## 332                                                      Quite Disagree
## 333                                                      Quite Disagree
## 334                                                   Strongly Disagree
## 335                                                        Partly Agree
## 336                                                      Strongly Agree
## 337                                                   Strongly Disagree
## 338                                                          Don't Know
## 339                                                        Partly Agree
## 340                                                        Partly Agree
## 341                                                        Partly Agree
## 342                                                      Strongly Agree
## 343                                                      Strongly Agree
## 344                                                        Partly Agree
## 345                                                        Partly Agree
## 346                                                      Strongly Agree
## 347                                                        Partly Agree
## 348                                                      Quite Disagree
## 349                                                      Quite Disagree
## 350                                                        Partly Agree
## 351                                                        Partly Agree
## 352                                                          Don't Know
## 353                                                      Quite Disagree
## 354                                                          Don't Know
## 355                                                        Partly Agree
## 356                                                        Partly Agree
## 357                                                        Partly Agree
## 358                                                        Partly Agree
## 359                                                        Partly Agree
## 360                                                        Partly Agree
## 361                                                        Partly Agree
## 362                                                        Partly Agree
## 363                                                        Partly Agree
## 364                                                      Quite Disagree
## 365                                                        Partly Agree
## 366                                                        Partly Agree
## 367                                                        Partly Agree
## 368                                                        Partly Agree
## 369                                                        Partly Agree
## 370                                                        Partly Agree
## 371                                                        Partly Agree
## 372                                                        Partly Agree
## 373                                                      Quite Disagree
## 374                                                        Partly Agree
## 375                                                        Partly Agree
## 376                                                        Partly Agree
## 377                                                        Partly Agree
## 378                                                        Partly Agree
## 379                                                        Partly Agree
## 380                                                        Partly Agree
## 381                                                          Don't Know
## 382                                                          Don't Know
## 383                                                        Partly Agree
## 384                                                        Partly Agree
## 385                                                        Partly Agree
## 386                                                        Partly Agree
## 387                                                        Partly Agree
## 388                                                          Don't Know
## 389                                                        Partly Agree
## 390                                                      Quite Disagree
## 391                                                        Partly Agree
## 392                                                        Partly Agree
## 393                                                          Don't Know
## 394                                                          Don't Know
## 395                                                        Partly Agree
## 396                                                        Partly Agree
## 397                                                        Partly Agree
## 398                                                        Partly Agree
## 399                                                          Don't Know
## 400                                                        Partly Agree
## 401                                                        Partly Agree
## 402                                                        Partly Agree
## 403                                                        Partly Agree
## 404                                                          Don't Know
## 405                                                      Quite Disagree
## 406                                                          Don't Know
## 407                                                   Strongly Disagree
## 408                                                   Strongly Disagree
## 409                                                      Strongly Agree
## 410                                                      Quite Disagree
## 411                                                      Quite Disagree
## 412                                                        Partly Agree
## 413                                                      Quite Disagree
## 414                                                        Partly Agree
## 415                                                          Don't Know
## 416                                                      Quite Disagree
## 417                                                          Don't Know
## 418                                                        Partly Agree
## 419                                                        Partly Agree
## 420                                                                <NA>
## 421                                                        Partly Agree
## 422                                                          Don't Know
## 423                                                          Don't Know
## 424                                                        Partly Agree
## 425                                                        Partly Agree
## 426                                                      Quite Disagree
## 427                                                        Partly Agree
## 428                                                          Don't Know
## 429                                                        Partly Agree
## 430                                                        Partly Agree
## 431                                                        Partly Agree
## 432                                                          Don't Know
## 433                                                      Quite Disagree
## 434                                                      Quite Disagree
## 435                                                        Partly Agree
## 436                                                        Partly Agree
## 437                                                        Partly Agree
## 438                                                        Partly Agree
## 439                                                        Partly Agree
## 440                                                      Quite Disagree
## 441                                                        Partly Agree
## 442                                                        Partly Agree
## 443                                                        Partly Agree
## 444                                                        Partly Agree
## 445                                                        Partly Agree
## 446                                                        Partly Agree
## 447                                                        Partly Agree
## 448                                                      Strongly Agree
## 449                                                      Quite Disagree
## 450                                                                <NA>
## 451                                                      Quite Disagree
## 452                                                        Partly Agree
## 453                                                        Partly Agree
## 454                                                      Strongly Agree
## 455                                                      Strongly Agree
## 456                                                          Don't Know
## 457                                                        Partly Agree
## 458                                                        Partly Agree
## 459                                                        Partly Agree
## 460                                                                <NA>
## 461                                                          Don't Know
## 462                                                        Partly Agree
## 463                                                                <NA>
## 464                                                        Partly Agree
## 465                                                        Partly Agree
## 466                                                   Strongly Disagree
## 467                                                      Strongly Agree
## 468                                                        Partly Agree
## 469                                                      Strongly Agree
## 470                                                      Strongly Agree
## 471                                                      Strongly Agree
## 472                                                        Partly Agree
## 473                                                        Partly Agree
## 474                                                        Partly Agree
## 475                                                   Strongly Disagree
## 476                                                          Don't Know
## 477                                                   Strongly Disagree
## 478                                                      Quite Disagree
## 479                                                          Don't Know
## 480                                                          Don't Know
## 481                                                        Partly Agree
## 482                                                   Strongly Disagree
## 483                                                        Partly Agree
## 484                                                      Strongly Agree
## 485                                                        Partly Agree
## 486                                                      Quite Disagree
## 487                                                          Don't Know
## 488                                                          Don't Know
## 489                                                        Partly Agree
## 490                                                      Strongly Agree
## 491                                                      Quite Disagree
## 492                                                      Quite Disagree
## 493                                                        Partly Agree
## 494                                                        Partly Agree
## 495                                                        Partly Agree
## 496                                                      Strongly Agree
##      Opinion..Political.system.is.rotten
## 1                         Strongly Agree
## 2                         Strongly Agree
## 3                           Partly Agree
## 4                         Strongly Agree
## 5                         Strongly Agree
## 6                           Partly Agree
## 7                         Strongly Agree
## 8                           Partly Agree
## 9                           Partly Agree
## 10                        Strongly Agree
## 11                          Partly Agree
## 12                          Partly Agree
## 13                          Partly Agree
## 14                        Strongly Agree
## 15                        Strongly Agree
## 16                          Partly Agree
## 17                        Quite Disagree
## 18                        Quite Disagree
## 19                        Strongly Agree
## 20                          Partly Agree
## 21                                  <NA>
## 22                        Strongly Agree
## 23                        Strongly Agree
## 24                        Quite Disagree
## 25                     Strongly Disagree
## 26                          Partly Agree
## 27                        Quite Disagree
## 28                          Partly Agree
## 29                            Don't Know
## 30                          Partly Agree
## 31                          Partly Agree
## 32                            Don't Know
## 33                        Strongly Agree
## 34                          Partly Agree
## 35                        Strongly Agree
## 36                          Partly Agree
## 37                          Partly Agree
## 38                          Partly Agree
## 39                          Partly Agree
## 40                          Partly Agree
## 41                          Partly Agree
## 42                        Quite Disagree
## 43                          Partly Agree
## 44                        Quite Disagree
## 45                          Partly Agree
## 46                        Strongly Agree
## 47                        Strongly Agree
## 48                          Partly Agree
## 49                          Partly Agree
## 50                        Quite Disagree
## 51                                  <NA>
## 52                          Partly Agree
## 53                        Strongly Agree
## 54                        Strongly Agree
## 55                        Quite Disagree
## 56                          Partly Agree
## 57                          Partly Agree
## 58                          Partly Agree
## 59                          Partly Agree
## 60                          Partly Agree
## 61                          Partly Agree
## 62                        Strongly Agree
## 63                          Partly Agree
## 64                        Strongly Agree
## 65                          Partly Agree
## 66                        Strongly Agree
## 67                          Partly Agree
## 68                          Partly Agree
## 69                          Partly Agree
## 70                          Partly Agree
## 71                          Partly Agree
## 72                          Partly Agree
## 73                          Partly Agree
## 74                        Strongly Agree
## 75                        Strongly Agree
## 76                        Strongly Agree
## 77                        Strongly Agree
## 78                        Strongly Agree
## 79                        Strongly Agree
## 80                        Strongly Agree
## 81                        Strongly Agree
## 82                        Strongly Agree
## 83                        Strongly Agree
## 84                        Strongly Agree
## 85                        Strongly Agree
## 86                          Partly Agree
## 87                        Quite Disagree
## 88                          Partly Agree
## 89                          Partly Agree
## 90                          Partly Agree
## 91                          Partly Agree
## 92                          Partly Agree
## 93                          Partly Agree
## 94                        Strongly Agree
## 95                          Partly Agree
## 96                          Partly Agree
## 97                          Partly Agree
## 98                          Partly Agree
## 99                          Partly Agree
## 100                         Partly Agree
## 101                         Partly Agree
## 102                    Strongly Disagree
## 103                         Partly Agree
## 104                       Quite Disagree
## 105                         Partly Agree
## 106                    Strongly Disagree
## 107                         Partly Agree
## 108                         Partly Agree
## 109                       Quite Disagree
## 110                       Strongly Agree
## 111                       Strongly Agree
## 112                       Quite Disagree
## 113                       Quite Disagree
## 114                       Strongly Agree
## 115                       Quite Disagree
## 116                         Partly Agree
## 117                         Partly Agree
## 118                         Partly Agree
## 119                         Partly Agree
## 120                         Partly Agree
## 121                         Partly Agree
## 122                       Strongly Agree
## 123                         Partly Agree
## 124                       Quite Disagree
## 125                         Partly Agree
## 126                         Partly Agree
## 127                         Partly Agree
## 128                         Partly Agree
## 129                       Quite Disagree
## 130                       Strongly Agree
## 131                         Partly Agree
## 132                       Quite Disagree
## 133                       Quite Disagree
## 134                         Partly Agree
## 135                         Partly Agree
## 136                           Don't Know
## 137                       Strongly Agree
## 138                         Partly Agree
## 139                         Partly Agree
## 140                       Quite Disagree
## 141                         Partly Agree
## 142                       Quite Disagree
## 143                         Partly Agree
## 144                         Partly Agree
## 145                         Partly Agree
## 146                           Don't Know
## 147                       Quite Disagree
## 148                       Quite Disagree
## 149                       Strongly Agree
## 150                       Quite Disagree
## 151                       Strongly Agree
## 152                       Strongly Agree
## 153                         Partly Agree
## 154                       Strongly Agree
## 155                         Partly Agree
## 156                       Strongly Agree
## 157                           Don't Know
## 158                         Partly Agree
## 159                         Partly Agree
## 160                         Partly Agree
## 161                       Strongly Agree
## 162                       Strongly Agree
## 163                         Partly Agree
## 164                       Strongly Agree
## 165                         Partly Agree
## 166                         Partly Agree
## 167                         Partly Agree
## 168                         Partly Agree
## 169                         Partly Agree
## 170                       Strongly Agree
## 171                         Partly Agree
## 172                       Strongly Agree
## 173                       Strongly Agree
## 174                         Partly Agree
## 175                       Strongly Agree
## 176                       Strongly Agree
## 177                           Don't Know
## 178                       Strongly Agree
## 179                       Strongly Agree
## 180                       Strongly Agree
## 181                         Partly Agree
## 182                         Partly Agree
## 183                       Strongly Agree
## 184                         Partly Agree
## 185                       Strongly Agree
## 186                       Strongly Agree
## 187                       Strongly Agree
## 188                       Strongly Agree
## 189                       Strongly Agree
## 190                       Strongly Agree
## 191                       Strongly Agree
## 192                       Strongly Agree
## 193                       Strongly Agree
## 194                       Strongly Agree
## 195                       Strongly Agree
## 196                       Strongly Agree
## 197                         Partly Agree
## 198                       Strongly Agree
## 199                         Partly Agree
## 200                    Strongly Disagree
## 201                         Partly Agree
## 202                         Partly Agree
## 203                       Strongly Agree
## 204                         Partly Agree
## 205                       Strongly Agree
## 206                       Quite Disagree
## 207                         Partly Agree
## 208                       Quite Disagree
## 209                       Strongly Agree
## 210                       Quite Disagree
## 211                       Strongly Agree
## 212                       Strongly Agree
## 213                       Strongly Agree
## 214                       Strongly Agree
## 215                       Strongly Agree
## 216                         Partly Agree
## 217                         Partly Agree
## 218                         Partly Agree
## 219                         Partly Agree
## 220                       Strongly Agree
## 221                       Strongly Agree
## 222                       Quite Disagree
## 223                       Quite Disagree
## 224                       Quite Disagree
## 225                       Strongly Agree
## 226                       Strongly Agree
## 227                       Strongly Agree
## 228                         Partly Agree
## 229                       Quite Disagree
## 230                         Partly Agree
## 231                         Partly Agree
## 232                         Partly Agree
## 233                    Strongly Disagree
## 234                         Partly Agree
## 235                         Partly Agree
## 236                         Partly Agree
## 237                    Strongly Disagree
## 238                       Strongly Agree
## 239                         Partly Agree
## 240                         Partly Agree
## 241                         Partly Agree
## 242                    Strongly Disagree
## 243                         Partly Agree
## 244                       Quite Disagree
## 245                         Partly Agree
## 246                         Partly Agree
## 247                       Strongly Agree
## 248                       Strongly Agree
## 249                       Quite Disagree
## 250                         Partly Agree
## 251                       Strongly Agree
## 252                         Partly Agree
## 253                           Don't Know
## 254                       Strongly Agree
## 255                       Strongly Agree
## 256                       Strongly Agree
## 257                       Strongly Agree
## 258                           Don't Know
## 259                         Partly Agree
## 260                       Strongly Agree
## 261                       Strongly Agree
## 262                       Strongly Agree
## 263                         Partly Agree
## 264                         Partly Agree
## 265                       Strongly Agree
## 266                       Strongly Agree
## 267                       Strongly Agree
## 268                         Partly Agree
## 269                         Partly Agree
## 270                       Quite Disagree
## 271                       Quite Disagree
## 272                       Strongly Agree
## 273                       Quite Disagree
## 274                       Quite Disagree
## 275                         Partly Agree
## 276                       Quite Disagree
## 277                       Strongly Agree
## 278                       Strongly Agree
## 279                         Partly Agree
## 280                       Quite Disagree
## 281                         Partly Agree
## 282                         Partly Agree
## 283                       Strongly Agree
## 284                         Partly Agree
## 285                       Strongly Agree
## 286                         Partly Agree
## 287                       Strongly Agree
## 288                       Strongly Agree
## 289                         Partly Agree
## 290                       Strongly Agree
## 291                                 <NA>
## 292                       Strongly Agree
## 293                       Strongly Agree
## 294                       Strongly Agree
## 295                       Strongly Agree
## 296                         Partly Agree
## 297                                 <NA>
## 298                       Strongly Agree
## 299                       Strongly Agree
## 300                       Strongly Agree
## 302                       Quite Disagree
## 303                       Quite Disagree
## 304                         Partly Agree
## 305                    Strongly Disagree
## 306                         Partly Agree
## 307                       Strongly Agree
## 308                         Partly Agree
## 309                         Partly Agree
## 310                       Quite Disagree
## 311                       Quite Disagree
## 312                         Partly Agree
## 313                         Partly Agree
## 314                         Partly Agree
## 315                         Partly Agree
## 316                       Strongly Agree
## 317                       Strongly Agree
## 318                           Don't Know
## 319                       Strongly Agree
## 320                       Quite Disagree
## 321                         Partly Agree
## 322                           Don't Know
## 323                         Partly Agree
## 324                       Quite Disagree
## 325                       Quite Disagree
## 326                       Quite Disagree
## 327                         Partly Agree
## 328                         Partly Agree
## 329                       Quite Disagree
## 330                    Strongly Disagree
## 331                    Strongly Disagree
## 332                    Strongly Disagree
## 333                       Strongly Agree
## 334                       Quite Disagree
## 335                    Strongly Disagree
## 336                         Partly Agree
## 337                       Quite Disagree
## 338                       Quite Disagree
## 339                    Strongly Disagree
## 340                       Quite Disagree
## 341                         Partly Agree
## 342                    Strongly Disagree
## 343                         Partly Agree
## 344                    Strongly Disagree
## 345                       Quite Disagree
## 346                         Partly Agree
## 347                       Quite Disagree
## 348                         Partly Agree
## 349                         Partly Agree
## 350                         Partly Agree
## 351                         Partly Agree
## 352                           Don't Know
## 353                         Partly Agree
## 354                         Partly Agree
## 355                       Quite Disagree
## 356                         Partly Agree
## 357                         Partly Agree
## 358                         Partly Agree
## 359                         Partly Agree
## 360                         Partly Agree
## 361                       Strongly Agree
## 362                         Partly Agree
## 363                         Partly Agree
## 364                         Partly Agree
## 365                         Partly Agree
## 366                         Partly Agree
## 367                         Partly Agree
## 368                         Partly Agree
## 369                         Partly Agree
## 370                         Partly Agree
## 371                         Partly Agree
## 372                         Partly Agree
## 373                         Partly Agree
## 374                         Partly Agree
## 375                         Partly Agree
## 376                         Partly Agree
## 377                         Partly Agree
## 378                         Partly Agree
## 379                         Partly Agree
## 380                         Partly Agree
## 381                         Partly Agree
## 382                         Partly Agree
## 383                         Partly Agree
## 384                         Partly Agree
## 385                         Partly Agree
## 386                         Partly Agree
## 387                         Partly Agree
## 388                         Partly Agree
## 389                         Partly Agree
## 390                         Partly Agree
## 391                         Partly Agree
## 392                         Partly Agree
## 393                         Partly Agree
## 394                         Partly Agree
## 395                         Partly Agree
## 396                         Partly Agree
## 397                         Partly Agree
## 398                         Partly Agree
## 399                         Partly Agree
## 400                         Partly Agree
## 401                         Partly Agree
## 402                         Partly Agree
## 403                         Partly Agree
## 404                         Partly Agree
## 405                         Partly Agree
## 406                         Partly Agree
## 407                    Strongly Disagree
## 408                       Strongly Agree
## 409                       Strongly Agree
## 410                         Partly Agree
## 411                         Partly Agree
## 412                         Partly Agree
## 413                         Partly Agree
## 414                       Strongly Agree
## 415                           Don't Know
## 416                         Partly Agree
## 417                       Strongly Agree
## 418                         Partly Agree
## 419                         Partly Agree
## 420                         Partly Agree
## 421                         Partly Agree
## 422                           Don't Know
## 423                           Don't Know
## 424                         Partly Agree
## 425                    Strongly Disagree
## 426                       Quite Disagree
## 427                       Quite Disagree
## 428                           Don't Know
## 429                         Partly Agree
## 430                         Partly Agree
## 431                         Partly Agree
## 432                           Don't Know
## 433                         Partly Agree
## 434                         Partly Agree
## 435                         Partly Agree
## 436                       Quite Disagree
## 437                         Partly Agree
## 438                         Partly Agree
## 439                         Partly Agree
## 440                       Quite Disagree
## 441                         Partly Agree
## 442                         Partly Agree
## 443                       Quite Disagree
## 444                         Partly Agree
## 445                         Partly Agree
## 446                         Partly Agree
## 447                         Partly Agree
## 448                         Partly Agree
## 449                         Partly Agree
## 450                                 <NA>
## 451                         Partly Agree
## 452                         Partly Agree
## 453                         Partly Agree
## 454                         Partly Agree
## 455                         Partly Agree
## 456                         Partly Agree
## 457                       Quite Disagree
## 458                       Strongly Agree
## 459                         Partly Agree
## 460                         Partly Agree
## 461                       Quite Disagree
## 462                       Strongly Agree
## 463                         Partly Agree
## 464                       Strongly Agree
## 465                       Strongly Agree
## 466                       Strongly Agree
## 467                       Strongly Agree
## 468                       Strongly Agree
## 469                       Strongly Agree
## 470                       Strongly Agree
## 471                         Partly Agree
## 472                    Strongly Disagree
## 473                       Strongly Agree
## 474                       Strongly Agree
## 475                       Strongly Agree
## 476                           Don't Know
## 477                       Strongly Agree
## 478                         Partly Agree
## 479                           Don't Know
## 480                       Strongly Agree
## 481                         Partly Agree
## 482                         Partly Agree
## 483                       Strongly Agree
## 484                       Strongly Agree
## 485                       Quite Disagree
## 486                         Partly Agree
## 487                           Don't Know
## 488                           Don't Know
## 489                         Partly Agree
## 490                       Quite Disagree
## 491                         Partly Agree
## 492                       Quite Disagree
## 493                       Quite Disagree
## 494                         Partly Agree
## 495                    Strongly Disagree
## 496                         Partly Agree
##      Opinion..Find.myself.as.outsider.of.the.political.system
## 1                                                Partly Agree
## 2                                              Strongly Agree
## 3                                           Strongly Disagree
## 4                                                Partly Agree
## 5                                           Strongly Disagree
## 6                                           Strongly Disagree
## 7                                           Strongly Disagree
## 8                                              Quite Disagree
## 9                                           Strongly Disagree
## 10                                                       <NA>
## 11                                                       <NA>
## 12                                             Quite Disagree
## 13                                               Partly Agree
## 14                                             Strongly Agree
## 15                                             Strongly Agree
## 16                                             Quite Disagree
## 17                                             Quite Disagree
## 18                                             Quite Disagree
## 19                                             Quite Disagree
## 20                                               Partly Agree
## 21                                               Partly Agree
## 22                                                 Don't Know
## 23                                               Partly Agree
## 24                                               Partly Agree
## 25                                                 Don't Know
## 26                                                 Don't Know
## 27                                             Quite Disagree
## 28                                               Partly Agree
## 29                                                 Don't Know
## 30                                               Partly Agree
## 31                                             Quite Disagree
## 32                                                 Don't Know
## 33                                             Quite Disagree
## 34                                               Partly Agree
## 35                                                 Don't Know
## 36                                             Quite Disagree
## 37                                          Strongly Disagree
## 38                                             Quite Disagree
## 39                                               Partly Agree
## 40                                             Quite Disagree
## 41                                             Quite Disagree
## 42                                             Quite Disagree
## 43                                             Quite Disagree
## 44                                             Strongly Agree
## 45                                               Partly Agree
## 46                                             Quite Disagree
## 47                                               Partly Agree
## 48                                               Partly Agree
## 49                                               Partly Agree
## 50                                                 Don't Know
## 51                                               Partly Agree
## 52                                               Partly Agree
## 53                                             Strongly Agree
## 54                                             Strongly Agree
## 55                                             Quite Disagree
## 56                                             Quite Disagree
## 57                                             Quite Disagree
## 58                                               Partly Agree
## 59                                             Quite Disagree
## 60                                             Quite Disagree
## 61                                               Partly Agree
## 62                                             Quite Disagree
## 63                                               Partly Agree
## 64                                               Partly Agree
## 65                                               Partly Agree
## 66                                             Quite Disagree
## 67                                             Quite Disagree
## 68                                               Partly Agree
## 69                                               Partly Agree
## 70                                               Partly Agree
## 71                                               Partly Agree
## 72                                             Quite Disagree
## 73                                             Quite Disagree
## 74                                             Quite Disagree
## 75                                             Quite Disagree
## 76                                             Quite Disagree
## 77                                             Quite Disagree
## 78                                             Quite Disagree
## 79                                             Quite Disagree
## 80                                             Quite Disagree
## 81                                               Partly Agree
## 82                                             Quite Disagree
## 83                                             Quite Disagree
## 84                                             Quite Disagree
## 85                                          Strongly Disagree
## 86                                               Partly Agree
## 87                                             Quite Disagree
## 88                                               Partly Agree
## 89                                               Partly Agree
## 90                                             Quite Disagree
## 91                                               Partly Agree
## 92                                             Quite Disagree
## 93                                             Quite Disagree
## 94                                             Quite Disagree
## 95                                             Quite Disagree
## 96                                             Quite Disagree
## 97                                             Quite Disagree
## 98                                             Quite Disagree
## 99                                             Quite Disagree
## 100                                              Partly Agree
## 101                                              Partly Agree
## 102                                            Quite Disagree
## 103                                            Quite Disagree
## 104                                         Strongly Disagree
## 105                                            Quite Disagree
## 106                                         Strongly Disagree
## 107                                            Quite Disagree
## 108                                              Partly Agree
## 109                                              Partly Agree
## 110                                            Strongly Agree
## 111                                              Partly Agree
## 112                                              Partly Agree
## 113                                              Partly Agree
## 114                                            Strongly Agree
## 115                                              Partly Agree
## 116                                            Quite Disagree
## 117                                            Strongly Agree
## 118                                              Partly Agree
## 119                                              Partly Agree
## 120                                              Partly Agree
## 121                                            Quite Disagree
## 122                                              Partly Agree
## 123                                            Quite Disagree
## 124                                            Strongly Agree
## 125                                            Strongly Agree
## 126                                                      <NA>
## 127                                            Quite Disagree
## 128                                            Quite Disagree
## 129                                              Partly Agree
## 130                                            Quite Disagree
## 131                                              Partly Agree
## 132                                              Partly Agree
## 133                                            Quite Disagree
## 134                                            Quite Disagree
## 135                                            Quite Disagree
## 136                                                Don't Know
## 137                                              Partly Agree
## 138                                                      <NA>
## 139                                            Quite Disagree
## 140                                              Partly Agree
## 141                                              Partly Agree
## 142                                              Partly Agree
## 143                                            Quite Disagree
## 144                                              Partly Agree
## 145                                            Quite Disagree
## 146                                                Don't Know
## 147                                              Partly Agree
## 148                                              Partly Agree
## 149                                            Strongly Agree
## 150                                              Partly Agree
## 151                                            Strongly Agree
## 152                                              Partly Agree
## 153                                              Partly Agree
## 154                                            Strongly Agree
## 155                                            Strongly Agree
## 156                                            Strongly Agree
## 157                                                Don't Know
## 158                                              Partly Agree
## 159                                              Partly Agree
## 160                                              Partly Agree
## 161                                            Strongly Agree
## 162                                            Strongly Agree
## 163                                                Don't Know
## 164                                                Don't Know
## 165                                              Partly Agree
## 166                                              Partly Agree
## 167                                              Partly Agree
## 168                                            Strongly Agree
## 169                                            Strongly Agree
## 170                                              Partly Agree
## 171                                            Strongly Agree
## 172                                              Partly Agree
## 173                                                Don't Know
## 174                                            Strongly Agree
## 175                                            Strongly Agree
## 176                                            Strongly Agree
## 177                                                Don't Know
## 178                                            Strongly Agree
## 179                                              Partly Agree
## 180                                            Strongly Agree
## 181                                            Strongly Agree
## 182                                            Strongly Agree
## 183                                            Strongly Agree
## 184                                            Strongly Agree
## 185                                              Partly Agree
## 186                                            Strongly Agree
## 187                                                      <NA>
## 188                                            Strongly Agree
## 189                                            Strongly Agree
## 190                                            Strongly Agree
## 191                                            Strongly Agree
## 192                                            Strongly Agree
## 193                                              Partly Agree
## 194                                            Strongly Agree
## 195                                            Strongly Agree
## 196                                            Strongly Agree
## 197                                              Partly Agree
## 198                                            Strongly Agree
## 199                                              Partly Agree
## 200                                              Partly Agree
## 201                                            Strongly Agree
## 202                                            Quite Disagree
## 203                                              Partly Agree
## 204                                              Partly Agree
## 205                                              Partly Agree
## 206                                            Quite Disagree
## 207                                            Strongly Agree
## 208                                              Partly Agree
## 209                                              Partly Agree
## 210                                              Partly Agree
## 211                                              Partly Agree
## 212                                              Partly Agree
## 213                                              Partly Agree
## 214                                              Partly Agree
## 215                                              Partly Agree
## 216                                            Strongly Agree
## 217                                            Strongly Agree
## 218                                            Quite Disagree
## 219                                              Partly Agree
## 220                                            Strongly Agree
## 221                                              Partly Agree
## 222                                              Partly Agree
## 223                                              Partly Agree
## 224                                              Partly Agree
## 225                                            Quite Disagree
## 226                                            Strongly Agree
## 227                                            Strongly Agree
## 228                                            Strongly Agree
## 229                                              Partly Agree
## 230                                            Strongly Agree
## 231                                            Quite Disagree
## 232                                            Quite Disagree
## 233                                              Partly Agree
## 234                                            Quite Disagree
## 235                                            Quite Disagree
## 236                                         Strongly Disagree
## 237                                         Strongly Disagree
## 238                                              Partly Agree
## 239                                              Partly Agree
## 240                                              Partly Agree
## 241                                            Quite Disagree
## 242                                              Partly Agree
## 243                                            Quite Disagree
## 244                                              Partly Agree
## 245                                            Quite Disagree
## 246                                            Quite Disagree
## 247                                         Strongly Disagree
## 248                                            Quite Disagree
## 249                                              Partly Agree
## 250                                            Quite Disagree
## 251                                            Quite Disagree
## 252                                            Quite Disagree
## 253                                                Don't Know
## 254                                            Strongly Agree
## 255                                            Strongly Agree
## 256                                            Strongly Agree
## 257                                              Partly Agree
## 258                                              Partly Agree
## 259                                              Partly Agree
## 260                                            Strongly Agree
## 261                                              Partly Agree
## 262                                            Strongly Agree
## 263                                              Partly Agree
## 264                                            Strongly Agree
## 265                                                Don't Know
## 266                                              Partly Agree
## 267                                                Don't Know
## 268                                            Strongly Agree
## 269                                              Partly Agree
## 270                                              Partly Agree
## 271                                            Quite Disagree
## 272                                            Strongly Agree
## 273                                            Strongly Agree
## 274                                              Partly Agree
## 275                                              Partly Agree
## 276                                              Partly Agree
## 277                                            Strongly Agree
## 278                                            Quite Disagree
## 279                                              Partly Agree
## 280                                              Partly Agree
## 281                                              Partly Agree
## 282                                            Quite Disagree
## 283                                            Strongly Agree
## 284                                            Quite Disagree
## 285                                            Strongly Agree
## 286                                            Quite Disagree
## 287                                            Quite Disagree
## 288                                            Strongly Agree
## 289                                                Don't Know
## 290                                         Strongly Disagree
## 291                                         Strongly Disagree
## 292                                            Strongly Agree
## 293                                         Strongly Disagree
## 294                                         Strongly Disagree
## 295                                            Quite Disagree
## 296                                            Quite Disagree
## 297                                            Quite Disagree
## 298                                         Strongly Disagree
## 299                                              Partly Agree
## 300                                            Quite Disagree
## 302                                            Strongly Agree
## 303                                                      <NA>
## 304                                            Quite Disagree
## 305                                            Quite Disagree
## 306                                              Partly Agree
## 307                                         Strongly Disagree
## 308                                            Quite Disagree
## 309                                            Quite Disagree
## 310                                                Don't Know
## 311                                            Quite Disagree
## 312                                            Quite Disagree
## 313                                            Quite Disagree
## 314                                            Quite Disagree
## 315                                            Quite Disagree
## 316                                            Strongly Agree
## 317                                            Strongly Agree
## 318                                                Don't Know
## 319                                            Quite Disagree
## 320                                            Quite Disagree
## 321                                            Quite Disagree
## 322                                                Don't Know
## 323                                            Quite Disagree
## 324                                            Quite Disagree
## 325                                            Quite Disagree
## 326                                            Quite Disagree
## 327                                            Quite Disagree
## 328                                              Partly Agree
## 329                                              Partly Agree
## 330                                            Strongly Agree
## 331                                            Quite Disagree
## 332                                            Quite Disagree
## 333                                              Partly Agree
## 334                                              Partly Agree
## 335                                            Strongly Agree
## 336                                              Partly Agree
## 337                                              Partly Agree
## 338                                                Don't Know
## 339                                         Strongly Disagree
## 340                                              Partly Agree
## 341                                              Partly Agree
## 342                                            Quite Disagree
## 343                                            Quite Disagree
## 344                                            Quite Disagree
## 345                                                Don't Know
## 346                                            Quite Disagree
## 347                                            Quite Disagree
## 348                                            Quite Disagree
## 349                                              Partly Agree
## 350                                              Partly Agree
## 351                                              Partly Agree
## 352                                                Don't Know
## 353                                              Partly Agree
## 354                                                Don't Know
## 355                                            Quite Disagree
## 356                                                Don't Know
## 357                                              Partly Agree
## 358                                              Partly Agree
## 359                                              Partly Agree
## 360                                              Partly Agree
## 361                                              Partly Agree
## 362                                              Partly Agree
## 363                                              Partly Agree
## 364                                              Partly Agree
## 365                                                Don't Know
## 366                                              Partly Agree
## 367                                              Partly Agree
## 368                                              Partly Agree
## 369                                                Don't Know
## 370                                              Partly Agree
## 371                                              Partly Agree
## 372                                            Quite Disagree
## 373                                            Quite Disagree
## 374                                            Quite Disagree
## 375                                              Partly Agree
## 376                                              Partly Agree
## 377                                            Quite Disagree
## 378                                              Partly Agree
## 379                                                Don't Know
## 380                                              Partly Agree
## 381                                                Don't Know
## 382                                                Don't Know
## 383                                              Partly Agree
## 384                                              Partly Agree
## 385                                              Partly Agree
## 386                                                Don't Know
## 387                                              Partly Agree
## 388                                                Don't Know
## 389                                                Don't Know
## 390                                         Strongly Disagree
## 391                                              Partly Agree
## 392                                              Partly Agree
## 393                                                Don't Know
## 394                                                Don't Know
## 395                                              Partly Agree
## 396                                              Partly Agree
## 397                                              Partly Agree
## 398                                              Partly Agree
## 399                                                Don't Know
## 400                                                Don't Know
## 401                                              Partly Agree
## 402                                              Partly Agree
## 403                                            Quite Disagree
## 404                                            Quite Disagree
## 405                                              Partly Agree
## 406                                              Partly Agree
## 407                                         Strongly Disagree
## 408                                              Partly Agree
## 409                                              Partly Agree
## 410                                            Quite Disagree
## 411                                            Quite Disagree
## 412                                              Partly Agree
## 413                                              Partly Agree
## 414                                                      <NA>
## 415                                                Don't Know
## 416                                            Quite Disagree
## 417                                                Don't Know
## 418                                              Partly Agree
## 419                                            Quite Disagree
## 420                                              Partly Agree
## 421                                         Strongly Disagree
## 422                                                Don't Know
## 423                                                Don't Know
## 424                                              Partly Agree
## 425                                            Quite Disagree
## 426                                            Quite Disagree
## 427                                            Quite Disagree
## 428                                                Don't Know
## 429                                              Partly Agree
## 430                                                      <NA>
## 431                                              Partly Agree
## 432                                                Don't Know
## 433                                                      <NA>
## 434                                            Quite Disagree
## 435                                              Partly Agree
## 436                                            Quite Disagree
## 437                                              Partly Agree
## 438                                            Quite Disagree
## 439                                            Quite Disagree
## 440                                            Strongly Agree
## 441                                            Quite Disagree
## 442                                              Partly Agree
## 443                                            Quite Disagree
## 444                                              Partly Agree
## 445                                              Partly Agree
## 446                                            Quite Disagree
## 447                                              Partly Agree
## 448                                              Partly Agree
## 449                                              Partly Agree
## 450                                                      <NA>
## 451                                            Quite Disagree
## 452                                            Quite Disagree
## 453                                            Quite Disagree
## 454                                            Strongly Agree
## 455                                            Quite Disagree
## 456                                         Strongly Disagree
## 457                                            Quite Disagree
## 458                                         Strongly Disagree
## 459                                              Partly Agree
## 460                                            Quite Disagree
## 461                                         Strongly Disagree
## 462                                         Strongly Disagree
## 463                                                      <NA>
## 464                                         Strongly Disagree
## 465                                              Partly Agree
## 466                                              Partly Agree
## 467                                            Quite Disagree
## 468                                              Partly Agree
## 469                                         Strongly Disagree
## 470                                         Strongly Disagree
## 471                                                      <NA>
## 472                                              Partly Agree
## 473                                            Strongly Agree
## 474                                              Partly Agree
## 475                                         Strongly Disagree
## 476                                                Don't Know
## 477                                         Strongly Disagree
## 478                                            Quite Disagree
## 479                                                Don't Know
## 480                                                Don't Know
## 481                                              Partly Agree
## 482                                            Quite Disagree
## 483                                            Quite Disagree
## 484                                            Strongly Agree
## 485                                         Strongly Disagree
## 486                                            Quite Disagree
## 487                                                Don't Know
## 488                                                Don't Know
## 489                                         Strongly Disagree
## 490                                            Quite Disagree
## 491                                              Partly Agree
## 492                                            Quite Disagree
## 493                                              Partly Agree
## 494                                              Partly Agree
## 495                                            Quite Disagree
## 496                                              Partly Agree
##      Opinion..We.need.strong.leader.who.can.instruct.us.about.what.we.do
## 1                                                         Strongly Agree
## 2                                                         Strongly Agree
## 3                                                           Partly Agree
## 4                                                         Strongly Agree
## 5                                                         Strongly Agree
## 6                                                           Partly Agree
## 7                                                           Partly Agree
## 8                                                           Partly Agree
## 9                                                           Partly Agree
## 10                                                          Partly Agree
## 11                                                          Partly Agree
## 12                                                          Partly Agree
## 13                                                          Partly Agree
## 14                                                        Strongly Agree
## 15                                                        Strongly Agree
## 16                                                          Partly Agree
## 17                                                          Partly Agree
## 18                                                          Partly Agree
## 19                                                        Strongly Agree
## 20                                                          Partly Agree
## 21                                                        Strongly Agree
## 22                                                        Strongly Agree
## 23                                                        Strongly Agree
## 24                                                        Quite Disagree
## 25                                                          Partly Agree
## 26                                                          Partly Agree
## 27                                                        Quite Disagree
## 28                                                          Partly Agree
## 29                                                          Partly Agree
## 30                                                          Partly Agree
## 31                                                          Partly Agree
## 32                                                          Partly Agree
## 33                                                          Partly Agree
## 34                                                          Partly Agree
## 35                                                        Strongly Agree
## 36                                                          Partly Agree
## 37                                                        Quite Disagree
## 38                                                          Partly Agree
## 39                                                          Partly Agree
## 40                                                          Partly Agree
## 41                                                        Quite Disagree
## 42                                                          Partly Agree
## 43                                                          Partly Agree
## 44                                                        Strongly Agree
## 45                                                        Strongly Agree
## 46                                                        Strongly Agree
## 47                                                        Strongly Agree
## 48                                                        Strongly Agree
## 49                                                        Strongly Agree
## 50                                                        Strongly Agree
## 51                                                          Partly Agree
## 52                                                          Partly Agree
## 53                                                        Strongly Agree
## 54                                                        Strongly Agree
## 55                                                          Partly Agree
## 56                                                          Partly Agree
## 57                                                          Partly Agree
## 58                                                          Partly Agree
## 59                                                          Partly Agree
## 60                                                          Partly Agree
## 61                                                          Partly Agree
## 62                                                        Strongly Agree
## 63                                                          Partly Agree
## 64                                                        Strongly Agree
## 65                                                        Strongly Agree
## 66                                                          Partly Agree
## 67                                                          Partly Agree
## 68                                                          Partly Agree
## 69                                                        Strongly Agree
## 70                                                        Strongly Agree
## 71                                                        Strongly Agree
## 72                                                        Strongly Agree
## 73                                                        Strongly Agree
## 74                                                        Strongly Agree
## 75                                                        Strongly Agree
## 76                                                        Strongly Agree
## 77                                                        Strongly Agree
## 78                                                        Strongly Agree
## 79                                                        Strongly Agree
## 80                                                        Strongly Agree
## 81                                                        Strongly Agree
## 82                                                        Strongly Agree
## 83                                                        Strongly Agree
## 84                                                        Strongly Agree
## 85                                                        Strongly Agree
## 86                                                        Strongly Agree
## 87                                                          Partly Agree
## 88                                                          Partly Agree
## 89                                                          Partly Agree
## 90                                                          Partly Agree
## 91                                                          Partly Agree
## 92                                                          Partly Agree
## 93                                                          Partly Agree
## 94                                                        Strongly Agree
## 95                                                          Partly Agree
## 96                                                          Partly Agree
## 97                                                          Partly Agree
## 98                                                          Partly Agree
## 99                                                          Partly Agree
## 100                                                         Partly Agree
## 101                                                       Strongly Agree
## 102                                                       Strongly Agree
## 103                                                    Strongly Disagree
## 104                                                       Quite Disagree
## 105                                                         Partly Agree
## 106                                                       Quite Disagree
## 107                                                         Partly Agree
## 108                                                       Quite Disagree
## 109                                                         Partly Agree
## 110                                                         Partly Agree
## 111                                                       Strongly Agree
## 112                                                       Strongly Agree
## 113                                                       Quite Disagree
## 114                                                         Partly Agree
## 115                                                         Partly Agree
## 116                                                         Partly Agree
## 117                                                         Partly Agree
## 118                                                       Quite Disagree
## 119                                                       Quite Disagree
## 120                                                       Quite Disagree
## 121                                                       Quite Disagree
## 122                                                         Partly Agree
## 123                                                         Partly Agree
## 124                                                         Partly Agree
## 125                                                         Partly Agree
## 126                                                       Quite Disagree
## 127                                                         Partly Agree
## 128                                                         Partly Agree
## 129                                                       Quite Disagree
## 130                                                         Partly Agree
## 131                                                         Partly Agree
## 132                                                       Quite Disagree
## 133                                                         Partly Agree
## 134                                                         Partly Agree
## 135                                                         Partly Agree
## 136                                                           Don't Know
## 137                                                       Quite Disagree
## 138                                                       Quite Disagree
## 139                                                         Partly Agree
## 140                                                       Quite Disagree
## 141                                                       Quite Disagree
## 142                                                       Quite Disagree
## 143                                                         Partly Agree
## 144                                                       Quite Disagree
## 145                                                         Partly Agree
## 146                                                           Don't Know
## 147                                                       Strongly Agree
## 148                                                       Quite Disagree
## 149                                                         Partly Agree
## 150                                                         Partly Agree
## 151                                                       Strongly Agree
## 152                                                         Partly Agree
## 153                                                         Partly Agree
## 154                                                       Strongly Agree
## 155                                                       Strongly Agree
## 156                                                       Strongly Agree
## 157                                                           Don't Know
## 158                                                         Partly Agree
## 159                                                         Partly Agree
## 160                                                         Partly Agree
## 161                                                       Strongly Agree
## 162                                                       Strongly Agree
## 163                                                           Don't Know
## 164                                                           Don't Know
## 165                                                         Partly Agree
## 166                                                         Partly Agree
## 167                                                         Partly Agree
## 168                                                         Partly Agree
## 169                                                           Don't Know
## 170                                                           Don't Know
## 171                                                           Don't Know
## 172                                                           Don't Know
## 173                                                           Don't Know
## 174                                                         Partly Agree
## 175                                                         Partly Agree
## 176                                                         Partly Agree
## 177                                                           Don't Know
## 178                                                       Strongly Agree
## 179                                                       Strongly Agree
## 180                                                         Partly Agree
## 181                                                         Partly Agree
## 182                                                       Strongly Agree
## 183                                                         Partly Agree
## 184                                                         Partly Agree
## 185                                                       Strongly Agree
## 186                                                       Strongly Agree
## 187                                                         Partly Agree
## 188                                                         Partly Agree
## 189                                                       Strongly Agree
## 190                                                         Partly Agree
## 191                                                         Partly Agree
## 192                                                           Don't Know
## 193                                                         Partly Agree
## 194                                                         Partly Agree
## 195                                                         Partly Agree
## 196                                                         Partly Agree
## 197                                                         Partly Agree
## 198                                                         Partly Agree
## 199                                                         Partly Agree
## 200                                                         Partly Agree
## 201                                                       Strongly Agree
## 202                                                         Partly Agree
## 203                                                       Strongly Agree
## 204                                                         Partly Agree
## 205                                                       Strongly Agree
## 206                                                       Quite Disagree
## 207                                                       Quite Disagree
## 208                                                       Strongly Agree
## 209                                                         Partly Agree
## 210                                                       Strongly Agree
## 211                                                         Partly Agree
## 212                                                         Partly Agree
## 213                                                         Partly Agree
## 214                                                         Partly Agree
## 215                                                         Partly Agree
## 216                                                         Partly Agree
## 217                                                         Partly Agree
## 218                                                       Quite Disagree
## 219                                                       Strongly Agree
## 220                                                         Partly Agree
## 221                                                       Quite Disagree
## 222                                                       Quite Disagree
## 223                                                       Strongly Agree
## 224                                                       Strongly Agree
## 225                                                    Strongly Disagree
## 226                                                         Partly Agree
## 227                                                         Partly Agree
## 228                                                       Quite Disagree
## 229                                                       Quite Disagree
## 230                                                         Partly Agree
## 231                                                         Partly Agree
## 232                                                    Strongly Disagree
## 233                                                       Quite Disagree
## 234                                                         Partly Agree
## 235                                                         Partly Agree
## 236                                                       Strongly Agree
## 237                                                       Quite Disagree
## 238                                                       Quite Disagree
## 239                                                         Partly Agree
## 240                                                       Quite Disagree
## 241                                                         Partly Agree
## 242                                                         Partly Agree
## 243                                                         Partly Agree
## 244                                                         Partly Agree
## 245                                                       Strongly Agree
## 246                                                         Partly Agree
## 247                                                         Partly Agree
## 248                                                       Quite Disagree
## 249                                                       Strongly Agree
## 250                                                       Quite Disagree
## 251                                                                 <NA>
## 252                                                                 <NA>
## 253                                                                 <NA>
## 254                                                                 <NA>
## 255                                                                 <NA>
## 256                                                                 <NA>
## 257                                                                 <NA>
## 258                                                                 <NA>
## 259                                                                 <NA>
## 260                                                                 <NA>
## 261                                                                 <NA>
## 262                                                                 <NA>
## 263                                                                 <NA>
## 264                                                                 <NA>
## 265                                                                 <NA>
## 266                                                                 <NA>
## 267                                                                 <NA>
## 268                                                                 <NA>
## 269                                                                 <NA>
## 270                                                                 <NA>
## 271                                                                 <NA>
## 272                                                                 <NA>
## 273                                                                 <NA>
## 274                                                                 <NA>
## 275                                                                 <NA>
## 276                                                                 <NA>
## 277                                                                 <NA>
## 278                                                                 <NA>
## 279                                                                 <NA>
## 280                                                                 <NA>
## 281                                                                 <NA>
## 282                                                                 <NA>
## 283                                                                 <NA>
## 284                                                                 <NA>
## 285                                                                 <NA>
## 286                                                                 <NA>
## 287                                                                 <NA>
## 288                                                                 <NA>
## 289                                                                 <NA>
## 290                                                                 <NA>
## 291                                                                 <NA>
## 292                                                                 <NA>
## 293                                                                 <NA>
## 294                                                                 <NA>
## 295                                                                 <NA>
## 296                                                                 <NA>
## 297                                                                 <NA>
## 298                                                                 <NA>
## 299                                                                 <NA>
## 300                                                                 <NA>
## 302                                                         Partly Agree
## 303                                                           Don't Know
## 304                                                                 <NA>
## 305                                                    Strongly Disagree
## 306                                                    Strongly Disagree
## 307                                                    Strongly Disagree
## 308                                                       Quite Disagree
## 309                                                         Partly Agree
## 310                                                         Partly Agree
## 311                                                         Partly Agree
## 312                                                         Partly Agree
## 313                                                         Partly Agree
## 314                                                         Partly Agree
## 315                                                         Partly Agree
## 316                                                       Strongly Agree
## 317                                                       Strongly Agree
## 318                                                         Partly Agree
## 319                                                       Strongly Agree
## 320                                                         Partly Agree
## 321                                                         Partly Agree
## 322                                                         Partly Agree
## 323                                                         Partly Agree
## 324                                                       Quite Disagree
## 325                                                       Quite Disagree
## 326                                                         Partly Agree
## 327                                                         Partly Agree
## 328                                                       Quite Disagree
## 329                                                       Strongly Agree
## 330                                                           Don't Know
## 331                                                         Partly Agree
## 332                                                         Partly Agree
## 333                                                       Strongly Agree
## 334                                                       Strongly Agree
## 335                                                    Strongly Disagree
## 336                                                       Quite Disagree
## 337                                                       Strongly Agree
## 338                                                           Don't Know
## 339                                                       Strongly Agree
## 340                                                       Quite Disagree
## 341                                                         Partly Agree
## 342                                                         Partly Agree
## 343                                                         Partly Agree
## 344                                                         Partly Agree
## 345                                                         Partly Agree
## 346                                                       Strongly Agree
## 347                                                         Partly Agree
## 348                                                       Quite Disagree
## 349                                                       Strongly Agree
## 350                                                       Strongly Agree
## 351                                                           Don't Know
## 352                                                           Don't Know
## 353                                                         Partly Agree
## 354                                                           Don't Know
## 355                                                         Partly Agree
## 356                                                         Partly Agree
## 357                                                         Partly Agree
## 358                                                         Partly Agree
## 359                                                         Partly Agree
## 360                                                       Strongly Agree
## 361                                                         Partly Agree
## 362                                                         Partly Agree
## 363                                                         Partly Agree
## 364                                                         Partly Agree
## 365                                                         Partly Agree
## 366                                                         Partly Agree
## 367                                                         Partly Agree
## 368                                                         Partly Agree
## 369                                                         Partly Agree
## 370                                                         Partly Agree
## 371                                                         Partly Agree
## 372                                                         Partly Agree
## 373                                                         Partly Agree
## 374                                                       Strongly Agree
## 375                                                         Partly Agree
## 376                                                       Strongly Agree
## 377                                                         Partly Agree
## 378                                                       Quite Disagree
## 379                                                         Partly Agree
## 380                                                         Partly Agree
## 381                                                           Don't Know
## 382                                                           Don't Know
## 383                                                         Partly Agree
## 384                                                           Don't Know
## 385                                                         Partly Agree
## 386                                                         Partly Agree
## 387                                                         Partly Agree
## 388                                                         Partly Agree
## 389                                                         Partly Agree
## 390                                                         Partly Agree
## 391                                                         Partly Agree
## 392                                                         Partly Agree
## 393                                                           Don't Know
## 394                                                           Don't Know
## 395                                                         Partly Agree
## 396                                                         Partly Agree
## 397                                                         Partly Agree
## 398                                                         Partly Agree
## 399                                                           Don't Know
## 400                                                         Partly Agree
## 401                                                         Partly Agree
## 402                                                         Partly Agree
## 403                                                       Strongly Agree
## 404                                                    Strongly Disagree
## 405                                                         Partly Agree
## 406                                                         Partly Agree
## 407                                                         Partly Agree
## 408                                                         Partly Agree
## 409                                                         Partly Agree
## 410                                                         Partly Agree
## 411                                                         Partly Agree
## 412                                                         Partly Agree
## 413                                                         Partly Agree
## 414                                                       Strongly Agree
## 415                                                           Don't Know
## 416                                                         Partly Agree
## 417                                                           Don't Know
## 418                                                         Partly Agree
## 419                                                         Partly Agree
## 420                                                                 <NA>
## 421                                                         Partly Agree
## 422                                                           Don't Know
## 423                                                           Don't Know
## 424                                                         Partly Agree
## 425                                                         Partly Agree
## 426                                                         Partly Agree
## 427                                                         Partly Agree
## 428                                                           Don't Know
## 429                                                         Partly Agree
## 430                                                       Quite Disagree
## 431                                                         Partly Agree
## 432                                                           Don't Know
## 433                                                         Partly Agree
## 434                                                         Partly Agree
## 435                                                         Partly Agree
## 436                                                       Quite Disagree
## 437                                                         Partly Agree
## 438                                                         Partly Agree
## 439                                                       Quite Disagree
## 440                                                       Strongly Agree
## 441                                                         Partly Agree
## 442                                                         Partly Agree
## 443                                                         Partly Agree
## 444                                                       Quite Disagree
## 445                                                         Partly Agree
## 446                                                         Partly Agree
## 447                                                         Partly Agree
## 448                                                       Strongly Agree
## 449                                                         Partly Agree
## 450                                                                 <NA>
## 451                                                       Quite Disagree
## 452                                                         Partly Agree
## 453                                                       Quite Disagree
## 454                                                       Strongly Agree
## 455                                                       Strongly Agree
## 456                                                       Strongly Agree
## 457                                                         Partly Agree
## 458                                                       Strongly Agree
## 459                                                       Strongly Agree
## 460                                                         Partly Agree
## 461                                                       Strongly Agree
## 462                                                         Partly Agree
## 463                                                           Don't Know
## 464                                                       Strongly Agree
## 465                                                       Strongly Agree
## 466                                                       Quite Disagree
## 467                                                       Strongly Agree
## 468                                                       Strongly Agree
## 469                                                       Strongly Agree
## 470                                                       Strongly Agree
## 471                                                       Quite Disagree
## 472                                                       Strongly Agree
## 473                                                       Strongly Agree
## 474                                                       Strongly Agree
## 475                                                       Strongly Agree
## 476                                                       Strongly Agree
## 477                                                       Strongly Agree
## 478                                                         Partly Agree
## 479                                                           Don't Know
## 480                                                       Strongly Agree
## 481                                                       Strongly Agree
## 482                                                       Strongly Agree
## 483                                                         Partly Agree
## 484                                                       Strongly Agree
## 485                                                       Strongly Agree
## 486                                                    Strongly Disagree
## 487                                                       Strongly Agree
## 488                                                       Strongly Agree
## 489                                                       Strongly Agree
## 490                                                       Strongly Agree
## 491                                                       Strongly Agree
## 492                                                         Partly Agree
## 493                                                       Strongly Agree
## 494                                                       Strongly Agree
## 495                                                         Partly Agree
## 496                                                       Strongly Agree
##      Opinion..Run.by.few.big.interests Opinion..Run.for.the.benefit.of.all
## 1                       Strongly Agree                      Quite Disagree
## 2                         Partly Agree                      Quite Disagree
## 3                       Strongly Agree                      Quite Disagree
## 4                       Strongly Agree                        Partly Agree
## 5                         Partly Agree                      Quite Disagree
## 6                           Don't Know                      Quite Disagree
## 7                       Strongly Agree                      Quite Disagree
## 8                         Partly Agree                      Quite Disagree
## 9                       Strongly Agree                      Quite Disagree
## 10                        Partly Agree                      Quite Disagree
## 11                      Strongly Agree                   Strongly Disagree
## 12                      Quite Disagree                      Quite Disagree
## 13                        Partly Agree                        Partly Agree
## 14                        Partly Agree                        Partly Agree
## 15                      Quite Disagree                      Strongly Agree
## 16                        Partly Agree                      Quite Disagree
## 17                      Quite Disagree                        Partly Agree
## 18                      Quite Disagree                        Partly Agree
## 19                        Partly Agree                      Quite Disagree
## 20                      Quite Disagree                      Quite Disagree
## 21                      Strongly Agree                        Partly Agree
## 22                      Strongly Agree                        Partly Agree
## 23                        Partly Agree                      Strongly Agree
## 24                      Quite Disagree                      Quite Disagree
## 25                        Partly Agree                      Quite Disagree
## 26                        Partly Agree                        Partly Agree
## 27                      Quite Disagree                      Quite Disagree
## 28                        Partly Agree                        Partly Agree
## 29                        Partly Agree                        Partly Agree
## 30                      Quite Disagree                      Quite Disagree
## 31                      Strongly Agree                      Quite Disagree
## 32                      Strongly Agree                      Strongly Agree
## 33                        Partly Agree                        Partly Agree
## 34                        Partly Agree                      Quite Disagree
## 35                      Quite Disagree                      Quite Disagree
## 36                        Partly Agree                        Partly Agree
## 37                        Partly Agree                      Quite Disagree
## 38                        Partly Agree                      Quite Disagree
## 39                        Partly Agree                      Quite Disagree
## 40                        Partly Agree                        Partly Agree
## 41                        Partly Agree                      Quite Disagree
## 42                        Partly Agree                      Quite Disagree
## 43                        Partly Agree                        Partly Agree
## 44                        Partly Agree                        Partly Agree
## 45                        Partly Agree                      Quite Disagree
## 46                        Partly Agree                   Strongly Disagree
## 47                        Partly Agree                      Quite Disagree
## 48                        Partly Agree                      Quite Disagree
## 49                        Partly Agree                      Quite Disagree
## 50                        Partly Agree                      Quite Disagree
## 51                      Strongly Agree                      Quite Disagree
## 52                          Don't Know                          Don't Know
## 53                      Strongly Agree                      Quite Disagree
## 54                        Partly Agree                      Quite Disagree
## 55                        Partly Agree                      Quite Disagree
## 56                        Partly Agree                        Partly Agree
## 57                        Partly Agree                        Partly Agree
## 58                        Partly Agree                      Quite Disagree
## 59                        Partly Agree                      Quite Disagree
## 60                        Partly Agree                      Quite Disagree
## 61                        Partly Agree                      Quite Disagree
## 62                        Partly Agree                      Quite Disagree
## 63                        Partly Agree                      Quite Disagree
## 64                        Partly Agree                      Quite Disagree
## 65                        Partly Agree                      Quite Disagree
## 66                        Partly Agree                      Quite Disagree
## 67                        Partly Agree                      Quite Disagree
## 68                        Partly Agree                      Quite Disagree
## 69                      Strongly Agree                      Quite Disagree
## 70                        Partly Agree                      Quite Disagree
## 71                        Partly Agree                      Quite Disagree
## 72                        Partly Agree                      Quite Disagree
## 73                        Partly Agree                      Quite Disagree
## 74                        Partly Agree                      Quite Disagree
## 75                        Partly Agree                      Quite Disagree
## 76                      Strongly Agree                      Quite Disagree
## 77                      Strongly Agree                      Quite Disagree
## 78                        Partly Agree                      Quite Disagree
## 79                      Strongly Agree                      Quite Disagree
## 80                      Strongly Agree                      Quite Disagree
## 81                      Strongly Agree                      Quite Disagree
## 82                        Partly Agree                      Quite Disagree
## 83                        Partly Agree                      Quite Disagree
## 84                        Partly Agree                      Quite Disagree
## 85                      Strongly Agree                      Quite Disagree
## 86                        Partly Agree                      Quite Disagree
## 87                        Partly Agree                      Quite Disagree
## 88                        Partly Agree                      Quite Disagree
## 89                        Partly Agree                        Partly Agree
## 90                      Quite Disagree                      Quite Disagree
## 91                        Partly Agree                        Partly Agree
## 92                        Partly Agree                        Partly Agree
## 93                        Partly Agree                        Partly Agree
## 94                        Partly Agree                      Quite Disagree
## 95                        Partly Agree                      Quite Disagree
## 96                        Partly Agree                      Quite Disagree
## 97                        Partly Agree                      Quite Disagree
## 98                        Partly Agree                      Quite Disagree
## 99                        Partly Agree                      Quite Disagree
## 100                       Partly Agree                      Quite Disagree
## 101                       Partly Agree                      Quite Disagree
## 102                     Strongly Agree                        Partly Agree
## 103                     Quite Disagree                   Strongly Disagree
## 104                       Partly Agree                      Quite Disagree
## 105                  Strongly Disagree                   Strongly Disagree
## 106                     Quite Disagree                        Partly Agree
## 107                     Quite Disagree                        Partly Agree
## 108                       Partly Agree                        Partly Agree
## 109                       Partly Agree                        Partly Agree
## 110                       Partly Agree                      Strongly Agree
## 111                     Quite Disagree                      Strongly Agree
## 112                       Partly Agree                      Quite Disagree
## 113                       Partly Agree                      Quite Disagree
## 114                       Partly Agree                      Strongly Agree
## 115                     Quite Disagree                      Strongly Agree
## 116                     Strongly Agree                        Partly Agree
## 117                       Partly Agree                        Partly Agree
## 118                       Partly Agree                      Quite Disagree
## 119                       Partly Agree                        Partly Agree
## 120                       Partly Agree                      Quite Disagree
## 121                       Partly Agree                      Quite Disagree
## 122                       Partly Agree                        Partly Agree
## 123                       Partly Agree                      Quite Disagree
## 124                     Strongly Agree                        Partly Agree
## 125                     Strongly Agree                        Partly Agree
## 126                       Partly Agree                        Partly Agree
## 127                     Quite Disagree                        Partly Agree
## 128                     Quite Disagree                      Strongly Agree
## 129                       Partly Agree                        Partly Agree
## 130                     Strongly Agree                        Partly Agree
## 131                     Quite Disagree                        Partly Agree
## 132                       Partly Agree                      Quite Disagree
## 133                     Quite Disagree                        Partly Agree
## 134                     Quite Disagree                        Partly Agree
## 135                       Partly Agree                        Partly Agree
## 136                         Don't Know                          Don't Know
## 137                       Partly Agree                      Quite Disagree
## 138                       Partly Agree                      Quite Disagree
## 139                     Quite Disagree                        Partly Agree
## 140                       Partly Agree                        Partly Agree
## 141                       Partly Agree                      Quite Disagree
## 142                       Partly Agree                      Quite Disagree
## 143                     Quite Disagree                        Partly Agree
## 144                       Partly Agree                      Quite Disagree
## 145                     Quite Disagree                        Partly Agree
## 146                         Don't Know                          Don't Know
## 147                       Partly Agree                      Quite Disagree
## 148                     Strongly Agree                      Quite Disagree
## 149                       Partly Agree                        Partly Agree
## 150                     Quite Disagree                      Strongly Agree
## 151                     Strongly Agree                      Strongly Agree
## 152                       Partly Agree                      Strongly Agree
## 153                       Partly Agree                        Partly Agree
## 154                     Strongly Agree                      Quite Disagree
## 155                       Partly Agree                      Quite Disagree
## 156                     Strongly Agree                      Strongly Agree
## 157                         Don't Know                          Don't Know
## 158                       Partly Agree                      Quite Disagree
## 159                     Quite Disagree                      Quite Disagree
## 160                       Partly Agree                      Quite Disagree
## 161                     Strongly Agree                      Strongly Agree
## 162                       Partly Agree                      Strongly Agree
## 163                         Don't Know                          Don't Know
## 164                         Don't Know                          Don't Know
## 165                       Partly Agree                      Quite Disagree
## 166                       Partly Agree                      Quite Disagree
## 167                       Partly Agree                      Quite Disagree
## 168                       Partly Agree                        Partly Agree
## 169                       Partly Agree                        Partly Agree
## 170                         Don't Know                          Don't Know
## 171                         Don't Know                          Don't Know
## 172                         Don't Know                          Don't Know
## 173                         Don't Know                          Don't Know
## 174                     Strongly Agree                        Partly Agree
## 175                     Strongly Agree                      Strongly Agree
## 176                       Partly Agree                        Partly Agree
## 177                         Don't Know                          Don't Know
## 178                     Strongly Agree                      Strongly Agree
## 179                       Partly Agree                        Partly Agree
## 180                       Partly Agree                      Strongly Agree
## 181                       Partly Agree                        Partly Agree
## 182                       Partly Agree                      Strongly Agree
## 183                     Strongly Agree                      Strongly Agree
## 184                       Partly Agree                        Partly Agree
## 185                       Partly Agree                        Partly Agree
## 186                       Partly Agree                        Partly Agree
## 187                       Partly Agree                      Strongly Agree
## 188                       Partly Agree                      Strongly Agree
## 189                       Partly Agree                      Strongly Agree
## 190                       Partly Agree                        Partly Agree
## 191                     Strongly Agree                      Strongly Agree
## 192                         Don't Know                          Don't Know
## 193                       Partly Agree                        Partly Agree
## 194                       Partly Agree                        Partly Agree
## 195                       Partly Agree                      Strongly Agree
## 196                       Partly Agree                      Quite Disagree
## 197                       Partly Agree                      Quite Disagree
## 198                       Partly Agree                        Partly Agree
## 199                     Strongly Agree                      Strongly Agree
## 200                       Partly Agree                        Partly Agree
## 201                       Partly Agree                      Quite Disagree
## 202                       Partly Agree                        Partly Agree
## 203                     Quite Disagree                        Partly Agree
## 204                     Quite Disagree                      Quite Disagree
## 205                       Partly Agree                      Strongly Agree
## 206                       Partly Agree                      Quite Disagree
## 207                     Strongly Agree                        Partly Agree
## 208                     Strongly Agree                        Partly Agree
## 209                     Strongly Agree                   Strongly Disagree
## 210                     Strongly Agree                        Partly Agree
## 211                       Partly Agree                      Quite Disagree
## 212                     Quite Disagree                        Partly Agree
## 213                       Partly Agree                      Quite Disagree
## 214                       Partly Agree                      Quite Disagree
## 215                       Partly Agree                      Quite Disagree
## 216                       Partly Agree                        Partly Agree
## 217                     Quite Disagree                      Quite Disagree
## 218                       Partly Agree                      Quite Disagree
## 219                  Strongly Disagree                      Quite Disagree
## 220                     Quite Disagree                      Quite Disagree
## 221                       Partly Agree                        Partly Agree
## 222                     Strongly Agree                      Strongly Agree
## 223                     Strongly Agree                        Partly Agree
## 224                     Quite Disagree                        Partly Agree
## 225                       Partly Agree                        Partly Agree
## 226                     Strongly Agree                        Partly Agree
## 227                     Quite Disagree                      Quite Disagree
## 228                     Strongly Agree                      Strongly Agree
## 229                     Quite Disagree                      Strongly Agree
## 230                     Quite Disagree                        Partly Agree
## 231                       Partly Agree                      Quite Disagree
## 232                     Quite Disagree                   Strongly Disagree
## 233                       Partly Agree                        Partly Agree
## 234                       Partly Agree                      Quite Disagree
## 235                       Partly Agree                        Partly Agree
## 236                     Quite Disagree                        Partly Agree
## 237                       Partly Agree                      Strongly Agree
## 238                     Strongly Agree                      Strongly Agree
## 239                     Quite Disagree                      Quite Disagree
## 240                       Partly Agree                        Partly Agree
## 241                       Partly Agree                      Quite Disagree
## 242                     Quite Disagree                        Partly Agree
## 243                       Partly Agree                      Quite Disagree
## 244                     Quite Disagree                      Quite Disagree
## 245                  Strongly Disagree                        Partly Agree
## 246                       Partly Agree                        Partly Agree
## 247                     Quite Disagree                      Strongly Agree
## 248                       Partly Agree                      Strongly Agree
## 249                     Quite Disagree                        Partly Agree
## 250                     Strongly Agree                        Partly Agree
## 251                     Strongly Agree                                <NA>
## 252                       Partly Agree                                <NA>
## 253                               <NA>                                <NA>
## 254                       Partly Agree                                <NA>
## 255                       Partly Agree                                <NA>
## 256                     Strongly Agree                                <NA>
## 257                       Partly Agree                                <NA>
## 258                       Partly Agree                                <NA>
## 259                     Strongly Agree                                <NA>
## 260                     Strongly Agree                                <NA>
## 261                       Partly Agree                                <NA>
## 262                       Partly Agree                                <NA>
## 263                         Don't Know                                <NA>
## 264                     Strongly Agree                                <NA>
## 265                       Partly Agree                                <NA>
## 266                     Strongly Agree                                <NA>
## 267                       Partly Agree                                <NA>
## 268                     Strongly Agree                                <NA>
## 269                       Partly Agree                                <NA>
## 270                       Partly Agree                                <NA>
## 271                     Quite Disagree                                <NA>
## 272                     Strongly Agree                                <NA>
## 273                     Strongly Agree                                <NA>
## 274                     Strongly Agree                                <NA>
## 275                       Partly Agree                                <NA>
## 276                     Quite Disagree                                <NA>
## 277                     Strongly Agree                                <NA>
## 278                     Strongly Agree                                <NA>
## 279                       Partly Agree                                <NA>
## 280                     Quite Disagree                                <NA>
## 281                     Quite Disagree                                <NA>
## 282                     Quite Disagree                                <NA>
## 283                     Strongly Agree                                <NA>
## 284                       Partly Agree                                <NA>
## 285                     Strongly Agree                                <NA>
## 286                     Strongly Agree                                <NA>
## 287                     Strongly Agree                                <NA>
## 288                     Strongly Agree                                <NA>
## 289                       Partly Agree                                <NA>
## 290                     Quite Disagree                                <NA>
## 291                     Strongly Agree                                <NA>
## 292                         Don't Know                                <NA>
## 293                     Quite Disagree                                <NA>
## 294                     Quite Disagree                                <NA>
## 295                       Partly Agree                                <NA>
## 296                       Partly Agree                                <NA>
## 297                     Strongly Agree                                <NA>
## 298                     Quite Disagree                                <NA>
## 299                       Partly Agree                                <NA>
## 300                     Strongly Agree                                <NA>
## 302                     Strongly Agree                      Quite Disagree
## 303                     Quite Disagree                      Quite Disagree
## 304                       Partly Agree                   Strongly Disagree
## 305                  Strongly Disagree                      Quite Disagree
## 306                     Strongly Agree                      Quite Disagree
## 307                     Quite Disagree                      Quite Disagree
## 308                       Partly Agree                      Quite Disagree
## 309                     Quite Disagree                        Partly Agree
## 310                     Strongly Agree                      Quite Disagree
## 311                     Quite Disagree                      Quite Disagree
## 312                       Partly Agree                      Quite Disagree
## 313                       Partly Agree                      Quite Disagree
## 314                     Quite Disagree                        Partly Agree
## 315                         Don't Know                          Don't Know
## 316                     Strongly Agree                      Quite Disagree
## 317                     Strongly Agree                   Strongly Disagree
## 318                         Don't Know                          Don't Know
## 319                     Strongly Agree                      Quite Disagree
## 320                       Partly Agree                      Quite Disagree
## 321                     Strongly Agree                      Quite Disagree
## 322                         Don't Know                          Don't Know
## 323                         Don't Know                        Partly Agree
## 324                     Quite Disagree                      Quite Disagree
## 325                     Quite Disagree                      Quite Disagree
## 326                     Quite Disagree                      Quite Disagree
## 327                     Quite Disagree                      Quite Disagree
## 328                       Partly Agree                        Partly Agree
## 329                     Quite Disagree                   Strongly Disagree
## 330                         Don't Know                   Strongly Disagree
## 331                     Strongly Agree                        Partly Agree
## 332                     Strongly Agree                          Don't Know
## 333                     Quite Disagree                      Strongly Agree
## 334                         Don't Know                      Strongly Agree
## 335                       Partly Agree                   Strongly Disagree
## 336                     Strongly Agree                      Quite Disagree
## 337                         Don't Know                      Strongly Agree
## 338                     Strongly Agree                        Partly Agree
## 339                       Partly Agree                   Strongly Disagree
## 340                     Strongly Agree                      Quite Disagree
## 341                       Partly Agree                        Partly Agree
## 342                     Strongly Agree                      Quite Disagree
## 343                     Quite Disagree                        Partly Agree
## 344                       Partly Agree                        Partly Agree
## 345                         Don't Know                          Don't Know
## 346                       Partly Agree                        Partly Agree
## 347                         Don't Know                        Partly Agree
## 348                     Quite Disagree                        Partly Agree
## 349                     Strongly Agree                      Quite Disagree
## 350                     Strongly Agree                      Quite Disagree
## 351                       Partly Agree                          Don't Know
## 352                         Don't Know                          Don't Know
## 353                       Partly Agree                      Quite Disagree
## 354                         Don't Know                          Don't Know
## 355                     Quite Disagree                        Partly Agree
## 356                         Don't Know                          Don't Know
## 357                       Partly Agree                        Partly Agree
## 358                       Partly Agree                        Partly Agree
## 359                       Partly Agree                      Quite Disagree
## 360                       Partly Agree                        Partly Agree
## 361                       Partly Agree                        Partly Agree
## 362                       Partly Agree                      Quite Disagree
## 363                       Partly Agree                      Quite Disagree
## 364                       Partly Agree                      Quite Disagree
## 365                       Partly Agree                          Don't Know
## 366                       Partly Agree                      Quite Disagree
## 367                       Partly Agree                        Partly Agree
## 368                       Partly Agree                        Partly Agree
## 369                       Partly Agree                      Quite Disagree
## 370                       Partly Agree                        Partly Agree
## 371                       Partly Agree                      Quite Disagree
## 372                       Partly Agree                      Quite Disagree
## 373                     Quite Disagree                      Quite Disagree
## 374                     Strongly Agree                      Quite Disagree
## 375                     Strongly Agree                      Quite Disagree
## 376                       Partly Agree                        Partly Agree
## 377                       Partly Agree                        Partly Agree
## 378                       Partly Agree                        Partly Agree
## 379                       Partly Agree                        Partly Agree
## 380                       Partly Agree                      Quite Disagree
## 381                         Don't Know                          Don't Know
## 382                         Don't Know                          Don't Know
## 383                         Don't Know                          Don't Know
## 384                         Don't Know                      Quite Disagree
## 385                         Don't Know                          Don't Know
## 386                         Don't Know                          Don't Know
## 387                       Partly Agree                          Don't Know
## 388                         Don't Know                        Partly Agree
## 389                         Don't Know                          Don't Know
## 390                       Partly Agree                      Quite Disagree
## 391                       Partly Agree                        Partly Agree
## 392                       Partly Agree                        Partly Agree
## 393                         Don't Know                          Don't Know
## 394                         Don't Know                          Don't Know
## 395                       Partly Agree                        Partly Agree
## 396                         Don't Know                        Partly Agree
## 397                       Partly Agree                      Quite Disagree
## 398                       Partly Agree                      Quite Disagree
## 399                         Don't Know                          Don't Know
## 400                         Don't Know                          Don't Know
## 401                       Partly Agree                        Partly Agree
## 402                       Partly Agree                        Partly Agree
## 403                     Strongly Agree                   Strongly Disagree
## 404                     Quite Disagree                        Partly Agree
## 405                       Partly Agree                      Quite Disagree
## 406                       Partly Agree                      Quite Disagree
## 407                         Don't Know                          Don't Know
## 408                     Quite Disagree                      Quite Disagree
## 409                     Strongly Agree                        Partly Agree
## 410                       Partly Agree                        Partly Agree
## 411                       Partly Agree                      Quite Disagree
## 412                       Partly Agree                        Partly Agree
## 413                     Quite Disagree                      Quite Disagree
## 414                     Strongly Agree                        Partly Agree
## 415                         Don't Know                          Don't Know
## 416                     Quite Disagree                      Quite Disagree
## 417                               <NA>                                <NA>
## 418                       Partly Agree                        Partly Agree
## 419                       Partly Agree                        Partly Agree
## 420                       Partly Agree                      Strongly Agree
## 421                       Partly Agree                      Quite Disagree
## 422                         Don't Know                          Don't Know
## 423                         Don't Know                          Don't Know
## 424                       Partly Agree                        Partly Agree
## 425                     Quite Disagree                        Partly Agree
## 426                       Partly Agree                      Quite Disagree
## 427                       Partly Agree                        Partly Agree
## 428                         Don't Know                          Don't Know
## 429                       Partly Agree                        Partly Agree
## 430                       Partly Agree                        Partly Agree
## 431                       Partly Agree                        Partly Agree
## 432                         Don't Know                          Don't Know
## 433                       Partly Agree                        Partly Agree
## 434                     Quite Disagree                        Partly Agree
## 435                       Partly Agree                        Partly Agree
## 436                     Quite Disagree                        Partly Agree
## 437                       Partly Agree                        Partly Agree
## 438                       Partly Agree                      Quite Disagree
## 439                       Partly Agree                      Quite Disagree
## 440                     Strongly Agree                      Strongly Agree
## 441                     Quite Disagree                      Quite Disagree
## 442                       Partly Agree                        Partly Agree
## 443                       Partly Agree                      Quite Disagree
## 444                       Partly Agree                        Partly Agree
## 445                       Partly Agree                        Partly Agree
## 446                       Partly Agree                      Quite Disagree
## 447                       Partly Agree                        Partly Agree
## 448                     Strongly Agree                        Partly Agree
## 449                     Quite Disagree                        Partly Agree
## 450                               <NA>                                <NA>
## 451                       Partly Agree                        Partly Agree
## 452                       Partly Agree                        Partly Agree
## 453                       Partly Agree                        Partly Agree
## 454                     Strongly Agree                      Quite Disagree
## 455                       Partly Agree                      Quite Disagree
## 456                     Quite Disagree                        Partly Agree
## 457                     Quite Disagree                        Partly Agree
## 458                     Strongly Agree                   Strongly Disagree
## 459                       Partly Agree                      Quite Disagree
## 460                       Partly Agree                   Strongly Disagree
## 461                         Don't Know                          Don't Know
## 462                               <NA>                   Strongly Disagree
## 463                  Strongly Disagree                      Quite Disagree
## 464                       Partly Agree                      Quite Disagree
## 465                       Partly Agree                      Strongly Agree
## 466                  Strongly Disagree                   Strongly Disagree
## 467                       Partly Agree                        Partly Agree
## 468                     Strongly Agree                        Partly Agree
## 469                     Strongly Agree                        Partly Agree
## 470                       Partly Agree                        Partly Agree
## 471                     Strongly Agree                      Quite Disagree
## 472                       Partly Agree                        Partly Agree
## 473                     Strongly Agree                      Quite Disagree
## 474                     Strongly Agree                   Strongly Disagree
## 475                     Strongly Agree                      Quite Disagree
## 476                         Don't Know                          Don't Know
## 477                     Strongly Agree                      Quite Disagree
## 478                     Quite Disagree                        Partly Agree
## 479                         Don't Know                          Don't Know
## 480                         Don't Know                          Don't Know
## 481                     Quite Disagree                          Don't Know
## 482                     Strongly Agree                   Strongly Disagree
## 483                       Partly Agree                      Quite Disagree
## 484                         Don't Know                                <NA>
## 485                         Don't Know                        Partly Agree
## 486                       Partly Agree                   Strongly Disagree
## 487                       Partly Agree                        Partly Agree
## 488                     Strongly Agree                          Don't Know
## 489                         Don't Know                        Partly Agree
## 490                     Quite Disagree                      Quite Disagree
## 491                     Strongly Agree                      Quite Disagree
## 492                       Partly Agree                        Partly Agree
## 493                  Strongly Disagree                        Partly Agree
## 494                     Strongly Agree                   Strongly Disagree
## 495                  Strongly Disagree                        Partly Agree
## 496                     Strongly Agree                        Partly Agree
##      Opinion..Need.personal.connections.to.get.a.service
## 1                                           Partly Agree
## 2                                           Partly Agree
## 3                                           Partly Agree
## 4                                           Partly Agree
## 5                                         Strongly Agree
## 6                                         Strongly Agree
## 7                                           Partly Agree
## 8                                           Partly Agree
## 9                                           Partly Agree
## 10                                        Strongly Agree
## 11                                        Strongly Agree
## 12                                        Quite Disagree
## 13                                          Partly Agree
## 14                                        Strongly Agree
## 15                                        Strongly Agree
## 16                                        Quite Disagree
## 17                                        Quite Disagree
## 18                                        Quite Disagree
## 19                                          Partly Agree
## 20                                        Quite Disagree
## 21                                        Strongly Agree
## 22                                        Strongly Agree
## 23                                        Strongly Agree
## 24                                          Partly Agree
## 25                                          Partly Agree
## 26                                        Strongly Agree
## 27                                          Partly Agree
## 28                                        Strongly Agree
## 29                                          Partly Agree
## 30                                          Partly Agree
## 31                                          Partly Agree
## 32                                          Partly Agree
## 33                                        Strongly Agree
## 34                                          Partly Agree
## 35                                        Strongly Agree
## 36                                          Partly Agree
## 37                                        Quite Disagree
## 38                                        Quite Disagree
## 39                                        Quite Disagree
## 40                                        Quite Disagree
## 41                                        Quite Disagree
## 42                                          Partly Agree
## 43                                        Quite Disagree
## 44                                        Strongly Agree
## 45                                        Strongly Agree
## 46                                          Partly Agree
## 47                                        Strongly Agree
## 48                                        Quite Disagree
## 49                                        Quite Disagree
## 50                                        Quite Disagree
## 51                                        Strongly Agree
## 52                                          Partly Agree
## 53                                          Partly Agree
## 54                                        Quite Disagree
## 55                                          Partly Agree
## 56                                          Partly Agree
## 57                                          Partly Agree
## 58                                          Partly Agree
## 59                                          Partly Agree
## 60                                        Quite Disagree
## 61                                        Quite Disagree
## 62                                          Partly Agree
## 63                                          Partly Agree
## 64                                          Partly Agree
## 65                                          Partly Agree
## 66                                          Partly Agree
## 67                                          Partly Agree
## 68                                                  <NA>
## 69                                        Strongly Agree
## 70                                        Quite Disagree
## 71                                          Partly Agree
## 72                                          Partly Agree
## 73                                          Partly Agree
## 74                                        Quite Disagree
## 75                                          Partly Agree
## 76                                          Partly Agree
## 77                                          Partly Agree
## 78                                          Partly Agree
## 79                                          Partly Agree
## 80                                          Partly Agree
## 81                                          Partly Agree
## 82                                        Strongly Agree
## 83                                          Partly Agree
## 84                                          Partly Agree
## 85                                          Partly Agree
## 86                                          Partly Agree
## 87                                          Partly Agree
## 88                                        Quite Disagree
## 89                                          Partly Agree
## 90                                        Quite Disagree
## 91                                        Quite Disagree
## 92                                          Partly Agree
## 93                                          Partly Agree
## 94                                          Partly Agree
## 95                                          Partly Agree
## 96                                        Quite Disagree
## 97                                          Partly Agree
## 98                                          Partly Agree
## 99                                          Partly Agree
## 100                                       Quite Disagree
## 101                                           Don't Know
## 102                                    Strongly Disagree
## 103                                    Strongly Disagree
## 104                                         Partly Agree
## 105                                    Strongly Disagree
## 106                                       Quite Disagree
## 107                                       Quite Disagree
## 108                                       Strongly Agree
## 109                                           Don't Know
## 110                                       Strongly Agree
## 111                                         Partly Agree
## 112                                         Partly Agree
## 113                                         Partly Agree
## 114                                       Strongly Agree
## 115                                         Partly Agree
## 116                                       Strongly Agree
## 117                                       Strongly Agree
## 118                                         Partly Agree
## 119                                         Partly Agree
## 120                                         Partly Agree
## 121                                         Partly Agree
## 122                                       Strongly Agree
## 123                                         Partly Agree
## 124                                       Strongly Agree
## 125                                       Strongly Agree
## 126                                       Quite Disagree
## 127                                       Quite Disagree
## 128                                         Partly Agree
## 129                                           Don't Know
## 130                                       Strongly Agree
## 131                                       Quite Disagree
## 132                                           Don't Know
## 133                                         Partly Agree
## 134                                           Don't Know
## 135                                         Partly Agree
## 136                                           Don't Know
## 137                                           Don't Know
## 138                                         Partly Agree
## 139                                       Strongly Agree
## 140                                         Partly Agree
## 141                                         Partly Agree
## 142                                         Partly Agree
## 143                                       Quite Disagree
## 144                                         Partly Agree
## 145                                       Strongly Agree
## 146                                           Don't Know
## 147                                         Partly Agree
## 148                                         Partly Agree
## 149                                       Strongly Agree
## 150                                         Partly Agree
## 151                                         Partly Agree
## 152                                       Strongly Agree
## 153                                       Strongly Agree
## 154                                       Strongly Agree
## 155                                       Strongly Agree
## 156                                         Partly Agree
## 157                                         Partly Agree
## 158                                         Partly Agree
## 159                                       Quite Disagree
## 160                                         Partly Agree
## 161                                       Strongly Agree
## 162                                       Strongly Agree
## 163                                           Don't Know
## 164                                           Don't Know
## 165                                         Partly Agree
## 166                                         Partly Agree
## 167                                         Partly Agree
## 168                                       Strongly Agree
## 169                                       Strongly Agree
## 170                                           Don't Know
## 171                                           Don't Know
## 172                                           Don't Know
## 173                                           Don't Know
## 174                                       Strongly Agree
## 175                                       Strongly Agree
## 176                                         Partly Agree
## 177                                           Don't Know
## 178                                       Strongly Agree
## 179                                       Strongly Agree
## 180                                       Strongly Agree
## 181                                         Partly Agree
## 182                                       Strongly Agree
## 183                                         Partly Agree
## 184                                       Strongly Agree
## 185                                       Strongly Agree
## 186                                       Strongly Agree
## 187                                       Strongly Agree
## 188                                       Strongly Agree
## 189                                       Strongly Agree
## 190                                       Strongly Agree
## 191                                       Strongly Agree
## 192                                           Don't Know
## 193                                       Strongly Agree
## 194                                           Don't Know
## 195                                       Strongly Agree
## 196                                         Partly Agree
## 197                                         Partly Agree
## 198                                       Strongly Agree
## 199                                       Strongly Agree
## 200                                         Partly Agree
## 201                                         Partly Agree
## 202                                       Quite Disagree
## 203                                         Partly Agree
## 204                                       Quite Disagree
## 205                                       Quite Disagree
## 206                                       Strongly Agree
## 207                                         Partly Agree
## 208                                       Quite Disagree
## 209                                       Strongly Agree
## 210                                       Quite Disagree
## 211                                         Partly Agree
## 212                                         Partly Agree
## 213                                         Partly Agree
## 214                                         Partly Agree
## 215                                         Partly Agree
## 216                                       Quite Disagree
## 217                                         Partly Agree
## 218                                       Quite Disagree
## 219                                       Quite Disagree
## 220                                         Partly Agree
## 221                                       Quite Disagree
## 222                                       Quite Disagree
## 223                                       Quite Disagree
## 224                                    Strongly Disagree
## 225                                       Strongly Agree
## 226                                       Quite Disagree
## 227                                         Partly Agree
## 228                                       Strongly Agree
## 229                                       Strongly Agree
## 230                                         Partly Agree
## 231                                       Quite Disagree
## 232                                       Quite Disagree
## 233                                         Partly Agree
## 234                                       Quite Disagree
## 235                                       Quite Disagree
## 236                                       Quite Disagree
## 237                                         Partly Agree
## 238                                       Strongly Agree
## 239                                       Quite Disagree
## 240                                       Quite Disagree
## 241                                       Quite Disagree
## 242                                         Partly Agree
## 243                                       Quite Disagree
## 244                                       Quite Disagree
## 245                                         Partly Agree
## 246                                       Quite Disagree
## 247                                       Quite Disagree
## 248                                       Quite Disagree
## 249                                       Strongly Agree
## 250                                       Strongly Agree
## 251                                    Strongly Disagree
## 252                                         Partly Agree
## 253                                           Don't Know
## 254                                         Partly Agree
## 255                                         Partly Agree
## 256                                    Strongly Disagree
## 257                                         Partly Agree
## 258                                         Partly Agree
## 259                                           Don't Know
## 260                                    Strongly Disagree
## 261                                         Partly Agree
## 262                                    Strongly Disagree
## 263                                           Don't Know
## 264                                       Strongly Agree
## 265                                           Don't Know
## 266                                       Strongly Agree
## 267                                       Strongly Agree
## 268                                       Strongly Agree
## 269                                         Partly Agree
## 270                                         Partly Agree
## 271                                       Quite Disagree
## 272                                         Partly Agree
## 273                                       Strongly Agree
## 274                                       Strongly Agree
## 275                                    Strongly Disagree
## 276                                       Quite Disagree
## 277                                           Don't Know
## 278                                    Strongly Disagree
## 279                                           Don't Know
## 280                                       Quite Disagree
## 281                                         Partly Agree
## 282                                    Strongly Disagree
## 283                                         Partly Agree
## 284                                       Quite Disagree
## 285                                           Don't Know
## 286                                    Strongly Disagree
## 287                                    Strongly Disagree
## 288                                           Don't Know
## 289                                           Don't Know
## 290                                    Strongly Disagree
## 291                                    Strongly Disagree
## 292                                           Don't Know
## 293                                    Strongly Disagree
## 294                                    Strongly Disagree
## 295                                           Don't Know
## 296                                           Don't Know
## 297                                           Don't Know
## 298                                    Strongly Disagree
## 299                                           Don't Know
## 300                                    Strongly Disagree
## 302                                       Strongly Agree
## 303                                         Partly Agree
## 304                                       Quite Disagree
## 305                                       Strongly Agree
## 306                                       Strongly Agree
## 307                                       Strongly Agree
## 308                                       Strongly Agree
## 309                                         Partly Agree
## 310                                       Strongly Agree
## 311                                       Quite Disagree
## 312                                         Partly Agree
## 313                                         Partly Agree
## 314                                       Quite Disagree
## 315                                         Partly Agree
## 316                                         Partly Agree
## 317                                       Strongly Agree
## 318                                       Strongly Agree
## 319                                         Partly Agree
## 320                                       Quite Disagree
## 321                                    Strongly Disagree
## 322                                         Partly Agree
## 323                                         Partly Agree
## 324                                         Partly Agree
## 325                                         Partly Agree
## 326                                       Quite Disagree
## 327                                       Quite Disagree
## 328                                         Partly Agree
## 329                                       Quite Disagree
## 330                                       Strongly Agree
## 331                                       Quite Disagree
## 332                                       Strongly Agree
## 333                                       Quite Disagree
## 334                                         Partly Agree
## 335                                         Partly Agree
## 336                                       Strongly Agree
## 337                                         Partly Agree
## 338                                       Strongly Agree
## 339                                       Quite Disagree
## 340                                       Strongly Agree
## 341                                       Quite Disagree
## 342                                       Strongly Agree
## 343                                       Quite Disagree
## 344                                         Partly Agree
## 345                                       Strongly Agree
## 346                                       Quite Disagree
## 347                                       Strongly Agree
## 348                                         Partly Agree
## 349                                         Partly Agree
## 350                                         Partly Agree
## 351                                       Strongly Agree
## 352                                         Partly Agree
## 353                                         Partly Agree
## 354                                         Partly Agree
## 355                                         Partly Agree
## 356                                         Partly Agree
## 357                                       Quite Disagree
## 358                                         Partly Agree
## 359                                         Partly Agree
## 360                                         Partly Agree
## 361                                         Partly Agree
## 362                                         Partly Agree
## 363                                         Partly Agree
## 364                                         Partly Agree
## 365                                         Partly Agree
## 366                                         Partly Agree
## 367                                         Partly Agree
## 368                                         Partly Agree
## 369                                         Partly Agree
## 370                                         Partly Agree
## 371                                         Partly Agree
## 372                                         Partly Agree
## 373                                       Quite Disagree
## 374                                         Partly Agree
## 375                                         Partly Agree
## 376                                         Partly Agree
## 377                                       Quite Disagree
## 378                                         Partly Agree
## 379                                         Partly Agree
## 380                                         Partly Agree
## 381                                         Partly Agree
## 382                                         Partly Agree
## 383                                         Partly Agree
## 384                                         Partly Agree
## 385                                         Partly Agree
## 386                                         Partly Agree
## 387                                         Partly Agree
## 388                                         Partly Agree
## 389                                         Partly Agree
## 390                                         Partly Agree
## 391                                         Partly Agree
## 392                                         Partly Agree
## 393                                         Partly Agree
## 394                                         Partly Agree
## 395                                         Partly Agree
## 396                                         Partly Agree
## 397                                         Partly Agree
## 398                                         Partly Agree
## 399                                         Partly Agree
## 400                                         Partly Agree
## 401                                         Partly Agree
## 402                                         Partly Agree
## 403                                       Quite Disagree
## 404                                           Don't Know
## 405                                         Partly Agree
## 406                                           Don't Know
## 407                                           Don't Know
## 408                                         Partly Agree
## 409                                         Partly Agree
## 410                                       Quite Disagree
## 411                                         Partly Agree
## 412                                         Partly Agree
## 413                                         Partly Agree
## 414                                         Partly Agree
## 415                                           Don't Know
## 416                                       Quite Disagree
## 417                                                 <NA>
## 418                                         Partly Agree
## 419                                         Partly Agree
## 420                                         Partly Agree
## 421                                         Partly Agree
## 422                                           Don't Know
## 423                                           Don't Know
## 424                                         Partly Agree
## 425                                         Partly Agree
## 426                                         Partly Agree
## 427                                         Partly Agree
## 428                                           Don't Know
## 429                                         Partly Agree
## 430                                         Partly Agree
## 431                                         Partly Agree
## 432                                           Don't Know
## 433                                         Partly Agree
## 434                                         Partly Agree
## 435                                         Partly Agree
## 436                                         Partly Agree
## 437                                         Partly Agree
## 438                                         Partly Agree
## 439                                         Partly Agree
## 440                                       Strongly Agree
## 441                                       Quite Disagree
## 442                                         Partly Agree
## 443                                         Partly Agree
## 444                                         Partly Agree
## 445                                         Partly Agree
## 446                                       Quite Disagree
## 447                                         Partly Agree
## 448                                         Partly Agree
## 449                                         Partly Agree
## 450                                                 <NA>
## 451                                         Partly Agree
## 452                                         Partly Agree
## 453                                         Partly Agree
## 454                                       Strongly Agree
## 455                                    Strongly Disagree
## 456                                       Quite Disagree
## 457                                       Quite Disagree
## 458                                       Strongly Agree
## 459                                         Partly Agree
## 460                                       Strongly Agree
## 461                                    Strongly Disagree
## 462                                       Strongly Agree
## 463                                         Partly Agree
## 464                                         Partly Agree
## 465                                         Partly Agree
## 466                                       Quite Disagree
## 467                                       Quite Disagree
## 468                                       Strongly Agree
## 469                                         Partly Agree
## 470                                       Quite Disagree
## 471                                    Strongly Disagree
## 472                                       Quite Disagree
## 473                                       Strongly Agree
## 474                                       Strongly Agree
## 475                                       Strongly Agree
## 476                                       Strongly Agree
## 477                                       Strongly Agree
## 478                                         Partly Agree
## 479                                           Don't Know
## 480                                       Strongly Agree
## 481                                       Strongly Agree
## 482                                       Quite Disagree
## 483                                       Strongly Agree
## 484                                       Strongly Agree
## 485                                       Quite Disagree
## 486                                         Partly Agree
## 487                                       Quite Disagree
## 488                                       Quite Disagree
## 489                                    Strongly Disagree
## 490                                       Strongly Agree
## 491                                         Partly Agree
## 492                                       Quite Disagree
## 493                                         Partly Agree
## 494                                         Partly Agree
## 495                                       Quite Disagree
## 496                                       Quite Disagree
##      National.Government..Accountibility National.Government..Transparency
## 1                                    Low                               Low
## 2                                    Mid                               Mid
## 3                                    Mid                               Low
## 4                             Don't Know                            Higher
## 5                              Very high                            Higher
## 6                             Don't Know                              <NA>
## 7                                    Mid                               Mid
## 8                                 Higher                            Higher
## 9                              Very high                         Very high
## 10                            Don't Know                        Don't Know
## 11                                Higher                            Higher
## 12                                  <NA>                              <NA>
## 13                                Higher                               Mid
## 14                                   Mid                               Low
## 15                                   Low                               Low
## 16                                   Low                               Mid
## 17                                   Low                            Higher
## 18                                  <NA>                              <NA>
## 19                                Higher                            Higher
## 20                                   Low                               Mid
## 21                                Higher                               Mid
## 22                                   Mid                               Mid
## 23                                   Low                               Low
## 24                                   Low                               Mid
## 25                            Don't Know                        Don't Know
## 26                            Don't Know                        Don't Know
## 27                                   Low                               Mid
## 28                            Don't Know                            Higher
## 29                            Don't Know                        Don't Know
## 30                                   Mid                               Mid
## 31                                   Mid                               Mid
## 32                            Don't Know                        Don't Know
## 33                                   Mid                               Mid
## 34                             Very high                            Higher
## 35                                   Low                               Mid
## 36                                Higher                         Very high
## 37                                   Mid                            Higher
## 38                                   Low                               Low
## 39                                Higher                               Mid
## 40                                Higher                            Higher
## 41                                Higher                            Higher
## 42                                   Mid                               Mid
## 43                                   Mid                            Higher
## 44                                   Mid                               Mid
## 45                                   Mid                               Mid
## 46                                   Low                               Low
## 47                                   Mid                               Mid
## 48                                   Mid                               Mid
## 49                                   Mid                               Low
## 50                            Don't Know                               Mid
## 51                              Very Low                          Very Low
## 52                                  <NA>                              <NA>
## 53                                   Mid                               Mid
## 54                                   Mid                               Mid
## 55                                Higher                            Higher
## 56                            Don't Know                        Don't Know
## 57                            Don't Know                        Don't Know
## 58                                Higher                        Don't Know
## 59                                Higher                        Don't Know
## 60                            Don't Know                        Don't Know
## 61                                Higher                            Higher
## 62                                Higher                               Low
## 63                             Very high                            Higher
## 64                                Higher                               Mid
## 65                             Very high                               Mid
## 66                             Very high                               Mid
## 67                             Very high                               Mid
## 68                             Very high                               Mid
## 69                                   Low                               Low
## 70                                   Mid                               Mid
## 71                                Higher                            Higher
## 72                                   Mid                               Mid
## 73                                Higher                               Mid
## 74                             Very high                               Mid
## 75                                Higher                               Mid
## 76                             Very high                               Mid
## 77                                Higher                               Mid
## 78                             Very high                               Mid
## 79                                Higher                               Mid
## 80                                Higher                               Mid
## 81                             Very high                               Low
## 82                             Very high                               Mid
## 83                                Higher                               Mid
## 84                             Very high                               Low
## 85                             Very high                            Higher
## 86                                Higher                            Higher
## 87                                   Mid                               Mid
## 88                                Higher                               Mid
## 89                                Higher                               Mid
## 90                                Higher                            Higher
## 91                             Very high                            Higher
## 92                             Very high                            Higher
## 93                             Very high                            Higher
## 94                             Very high                            Higher
## 95                             Very high                               Mid
## 96                                Higher                               Mid
## 97                             Very high                               Mid
## 98                             Very high                            Higher
## 99                             Very high                            Higher
## 100                            Very high                            Higher
## 101                                  Mid                               Low
## 102                                  Mid                               Low
## 103                               Higher                            Higher
## 104                               Higher                               Mid
## 105                                  Mid                               Low
## 106                               Higher                               Mid
## 107                                  Mid                               Mid
## 108                               Higher                               Mid
## 109                           Don't Know                        Don't Know
## 110                            Very high                               Mid
## 111                               Higher                               Low
## 112                            Very high                            Higher
## 113                           Don't Know                        Don't Know
## 114                                  Mid                         Very high
## 115                                  Mid                         Very high
## 116                           Don't Know                        Don't Know
## 117                            Very high                               Mid
## 118                           Don't Know                        Don't Know
## 119                           Don't Know                        Don't Know
## 120                               Higher                            Higher
## 121                               Higher                               Mid
## 122                                  Mid                            Higher
## 123                               Higher                               Mid
## 124                           Don't Know                         Very high
## 125                               Higher                            Higher
## 126                            Very high                               Mid
## 127                               Higher                            Higher
## 128                            Very high                            Higher
## 129                            Very high                            Higher
## 130                               Higher                            Higher
## 131                            Very high                               Mid
## 132                            Very high                               Mid
## 133                               Higher                               Mid
## 134                                  Mid                               Mid
## 135                                  Mid                            Higher
## 136                           Don't Know                        Don't Know
## 137                               Higher                               Low
## 138                               Higher                            Higher
## 139                               Higher                            Higher
## 140                           Don't Know                        Don't Know
## 141                               Higher                               Mid
## 142                               Higher                            Higher
## 143                               Higher                            Higher
## 144                            Very high                            Higher
## 145                               Higher                               Mid
## 146                               Higher                               Mid
## 147                                  Low                            Higher
## 148                           Don't Know                        Don't Know
## 149                               Higher                            Higher
## 150                                  Mid                         Very high
## 151                               Higher                        Don't Know
## 152                               Higher                               Mid
## 153                           Don't Know                        Don't Know
## 154                           Don't Know                        Don't Know
## 155                                  Mid                               Mid
## 156                               Higher                        Don't Know
## 157                           Don't Know                        Don't Know
## 158                               Higher                               Mid
## 159                           Don't Know                        Don't Know
## 160                                  Mid                               Mid
## 161                               Higher                               Mid
## 162                           Don't Know                        Don't Know
## 163                           Don't Know                        Don't Know
## 164                           Don't Know                        Don't Know
## 165                               Higher                               Mid
## 166                               Higher                               Mid
## 167                               Higher                               Mid
## 168                                  Mid                               Mid
## 169                           Don't Know                        Don't Know
## 170                           Don't Know                        Don't Know
## 171                           Don't Know                        Don't Know
## 172                           Don't Know                        Don't Know
## 173                           Don't Know                        Don't Know
## 174                                  Mid                               Mid
## 175                                  Low                               Low
## 176                                  Mid                            Higher
## 177                           Don't Know                        Don't Know
## 178                           Don't Know                        Don't Know
## 179                           Don't Know                        Don't Know
## 180                               Higher                               Mid
## 181                           Don't Know                        Don't Know
## 182                           Don't Know                        Don't Know
## 183                           Don't Know                        Don't Know
## 184                                  Mid                            Higher
## 185                                  Low                               Low
## 186                           Don't Know                        Don't Know
## 187                                  Mid                               Mid
## 188                                  Low                               Low
## 189                           Don't Know                        Don't Know
## 190                           Don't Know                        Don't Know
## 191                           Don't Know                        Don't Know
## 192                           Don't Know                        Don't Know
## 193                                  Mid                               Mid
## 194                                  Low                               Low
## 195                           Don't Know                        Don't Know
## 196                                  Mid                               Mid
## 197                                  Mid                               Mid
## 198                               Higher                               Mid
## 199                               Higher                               Mid
## 200                           Don't Know                        Don't Know
## 201                                  Mid                               Low
## 202                                  Mid                            Higher
## 203                               Higher                            Higher
## 204                               Higher                               Mid
## 205                                  Mid                            Higher
## 206                                  Mid                            Higher
## 207                                  Mid                            Higher
## 208                                  Mid                            Higher
## 209                                  Mid                            Higher
## 210                                  Mid                            Higher
## 211                            Very high                        Don't Know
## 212                            Very high                        Don't Know
## 213                            Very high                        Don't Know
## 214                            Very high                        Don't Know
## 215                            Very high                        Don't Know
## 216                                  Mid                        Don't Know
## 217                                  Low                               Mid
## 218                            Very high                               Low
## 219                               Higher                               Low
## 220                                  Mid                               Low
## 221                                  Mid                               Low
## 222                                  Mid                               Low
## 223                                  Mid                            Higher
## 224                                  Mid                               Low
## 225                               Higher                            Higher
## 226                             Very Low                               Low
## 227                                  Mid                            Higher
## 228                                  Mid                               Mid
## 229                                  Low                               Mid
## 230                                  Mid                               Low
## 231                                  Mid                            Higher
## 232                               Higher                            Higher
## 233                                  Low                               Low
## 234                                  Mid                            Higher
## 235                                  Mid                            Higher
## 236                               Higher                               Mid
## 237                               Higher                            Higher
## 238                                  Mid                            Higher
## 239                                  Mid                            Higher
## 240                                  Mid                            Higher
## 241                                  Mid                            Higher
## 242                                  Mid                            Higher
## 243                                  Mid                            Higher
## 244                                  Mid                            Higher
## 245                               Higher                               Low
## 246                                  Mid                               Mid
## 247                                  Mid                               Low
## 248                                  Mid                            Higher
## 249                               Higher                               Mid
## 250                               Higher                               Mid
## 251                               Higher                              <NA>
## 252                               Higher                              <NA>
## 253                           Don't Know                              <NA>
## 254                               Higher                              <NA>
## 255                                  Mid                              <NA>
## 256                               Higher                              <NA>
## 257                               Higher                              <NA>
## 258                                  Low                              <NA>
## 259                               Higher                              <NA>
## 260                               Higher                              <NA>
## 261                               Higher                              <NA>
## 262                           Don't Know                              <NA>
## 263                                  Mid                              <NA>
## 264                                  Mid                              <NA>
## 265                               Higher                              <NA>
## 266                               Higher                              <NA>
## 267                               Higher                              <NA>
## 268                                  Mid                              <NA>
## 269                               Higher                              <NA>
## 270                               Higher                              <NA>
## 271                               Higher                              <NA>
## 272                               Higher                              <NA>
## 273                                  Mid                              <NA>
## 274                                  Low                              <NA>
## 275                               Higher                              <NA>
## 276                            Very high                              <NA>
## 277                           Don't Know                              <NA>
## 278                               Higher                              <NA>
## 279                                 <NA>                              <NA>
## 280                                  Mid                              <NA>
## 281                               Higher                              <NA>
## 282                               Higher                              <NA>
## 283                                  Mid                              <NA>
## 284                                  Mid                              <NA>
## 285                               Higher                              <NA>
## 286                                  Mid                              <NA>
## 287                               Higher                              <NA>
## 288                               Higher                              <NA>
## 289                                  Mid                              <NA>
## 290                                  Mid                              <NA>
## 291                                  Low                              <NA>
## 292                                  Mid                              <NA>
## 293                                  Mid                              <NA>
## 294                                  Mid                              <NA>
## 295                               Higher                              <NA>
## 296                                  Mid                              <NA>
## 297                                  Mid                              <NA>
## 298                                  Mid                              <NA>
## 299                           Don't Know                              <NA>
## 300                                  Mid                              <NA>
## 302                                 <NA>                              <NA>
## 303                               Higher                            Higher
## 304                             Very Low                          Very Low
## 305                             Very Low                               Low
## 306                                  Low                               Low
## 307                                  Mid                               Mid
## 308                                  Low                               Low
## 309                           Don't Know                        Don't Know
## 310                           Don't Know                               Mid
## 311                                  Low                               Low
## 312                                  Mid                               Mid
## 313                               Higher                               Mid
## 314                               Higher                               Mid
## 315                           Don't Know                        Don't Know
## 316                            Very high                         Very high
## 317                             Very Low                          Very Low
## 318                           Don't Know                               Mid
## 319                             Very Low                          Very Low
## 320                               Higher                            Higher
## 321                                  Mid                               Mid
## 322                           Don't Know                        Don't Know
## 323                           Don't Know                        Don't Know
## 324                                  Mid                               Mid
## 325                                  Mid                               Mid
## 326                                  Mid                               Low
## 327                               Higher                               Mid
## 328                               Higher                               Mid
## 329                             Very Low                         Very high
## 330                            Very high                        Don't Know
## 331                             Very Low                               Low
## 332                             Very Low                               Mid
## 333                             Very Low                            Higher
## 334                             Very Low                               Low
## 335                             Very Low                            Higher
## 336                             Very Low                               Low
## 337                             Very Low                               Low
## 338                                  Mid                         Very high
## 339                           Don't Know                               Mid
## 340                                  Mid                               Mid
## 341                               Higher                               Mid
## 342                             Very Low                          Very Low
## 343                                  Low                               Low
## 344                               Higher                               Low
## 345                           Don't Know                        Don't Know
## 346                                  Mid                            Higher
## 347                           Don't Know                        Don't Know
## 348                               Higher                               Low
## 349                                  Mid                               Mid
## 350                             Very Low                               Low
## 351                                  Low                               Low
## 352                           Don't Know                        Don't Know
## 353                           Don't Know                               Mid
## 354                           Don't Know                        Don't Know
## 355                                  Low                               Mid
## 356                           Don't Know                        Don't Know
## 357                                  Low                               Mid
## 358                             Very Low                               Low
## 359                                  Low                               Low
## 360                                  Mid                               Mid
## 361                                  Mid                               Mid
## 362                                  Low                               Low
## 363                               Higher                               Mid
## 364                                  Low                               Low
## 365                                  Low                               Low
## 366                                  Low                               Low
## 367                                  Mid                               Mid
## 368                           Don't Know                        Don't Know
## 369                                  Low                          Very Low
## 370                           Don't Know                               Mid
## 371                                  Low                               Low
## 372                                  Mid                               Mid
## 373                                  Low                               Low
## 374                           Don't Know                               Mid
## 375                                  Mid                               Mid
## 376                                  Mid                               Mid
## 377                                  Low                               Low
## 378                                  Low                               Low
## 379                                  Low                               Low
## 380                                  Low                               Low
## 381                           Don't Know                        Don't Know
## 382                                  Low                               Low
## 383                             Very Low                          Very Low
## 384                           Don't Know                        Don't Know
## 385                           Don't Know                        Don't Know
## 386                           Don't Know                        Don't Know
## 387                           Don't Know                        Don't Know
## 388                           Don't Know                        Don't Know
## 389                           Don't Know                        Don't Know
## 390                                  Low                               Low
## 391                                  Low                               Low
## 392                           Don't Know                        Don't Know
## 393                           Don't Know                        Don't Know
## 394                           Don't Know                        Don't Know
## 395                                  Mid                               Mid
## 396                                  Low                               Low
## 397                                  Low                               Low
## 398                                  Low                               Low
## 399                           Don't Know                        Don't Know
## 400                                  Low                               Low
## 401                                  Mid                               Mid
## 402                           Don't Know                        Don't Know
## 403                                  Mid                               Mid
## 404                           Don't Know                        Don't Know
## 405                                  Mid                              <NA>
## 406                           Don't Know                        Don't Know
## 407                                  Mid                               Mid
## 408                                  Mid                               Mid
## 409                                 <NA>                               Mid
## 410                                  Mid                               Mid
## 411                           Don't Know                        Don't Know
## 412                                  Mid                               Mid
## 413                                  Mid                               Mid
## 414                                 <NA>                              <NA>
## 415                           Don't Know                        Don't Know
## 416                                  Mid                               Mid
## 417                                 <NA>                              <NA>
## 418                           Don't Know                        Don't Know
## 419                                  Mid                               Mid
## 420                                 <NA>                              <NA>
## 421                                  Mid                               Mid
## 422                                 <NA>                              <NA>
## 423                                 <NA>                              <NA>
## 424                                  Mid                               Low
## 425                                  Mid                               Low
## 426                                  Mid                               Low
## 427                                  Mid                               Mid
## 428                           Don't Know                              <NA>
## 429                                 <NA>                              <NA>
## 430                                  Mid                               Mid
## 431                                  Mid                               Mid
## 432                                 <NA>                              <NA>
## 433                                  Mid                               Mid
## 434                                 <NA>                              <NA>
## 435                                 <NA>                              <NA>
## 436                                 <NA>                              <NA>
## 437                                  Mid                               Mid
## 438                                  Mid                               Mid
## 439                           Don't Know                        Don't Know
## 440                                  Mid                               Mid
## 441                                  Mid                               Mid
## 442                                 <NA>                              <NA>
## 443                                  Low                               Mid
## 444                                  Low                               Mid
## 445                                  Mid                               Mid
## 446                                  Low                               Mid
## 447                                  Mid                               Mid
## 448                                  Mid                               Mid
## 449                                 <NA>                              <NA>
## 450                                 <NA>                              <NA>
## 451                                 <NA>                              <NA>
## 452                                  Low                               Mid
## 453                               Higher                               Mid
## 454                                  Mid                               Mid
## 455                                  Mid                               Mid
## 456                            Very high                               Mid
## 457                           Don't Know                        Don't Know
## 458                                  Low                               Low
## 459                                  Low                          Very Low
## 460                             Very Low                              <NA>
## 461                                 <NA>                              <NA>
## 462                             Very Low                               Low
## 463                             Very Low                               Mid
## 464                             Very Low                               Mid
## 465                               Higher                            Higher
## 466                             Very Low                          Very Low
## 467                               Higher                            Higher
## 468                           Don't Know                            Higher
## 469                                  Mid                               Low
## 470                                  Mid                            Higher
## 471                               Higher                         Very high
## 472                               Higher                            Higher
## 473                           Don't Know                        Don't Know
## 474                           Don't Know                               Mid
## 475                                  Low                          Very Low
## 476                           Don't Know                        Don't Know
## 477                                 <NA>                        Don't Know
## 478                                  Low                               Low
## 479                           Don't Know                        Don't Know
## 480                           Don't Know                        Don't Know
## 481                           Don't Know                        Don't Know
## 482                             Very Low                          Very Low
## 483                             Very Low                          Very Low
## 484                           Don't Know                          Very Low
## 485                                 <NA>                              <NA>
## 486                               Higher                            Higher
## 487                           Don't Know                        Don't Know
## 488                           Don't Know                        Don't Know
## 489                           Don't Know                        Don't Know
## 490                             Very Low                          Very Low
## 491                                  Low                          Very Low
## 492                                 <NA>                              <NA>
## 493                             Very Low                          Very Low
## 494                               Higher                               Mid
## 495                                  Low                               Mid
## 496                               Higher                            Higher
##      National.Government..Rule.of.Law
## 1                                 Low
## 2                                 Mid
## 3                                 Low
## 4                                 Low
## 5                                 Mid
## 6                          Don't Know
## 7                              Higher
## 8                              Higher
## 9                              Higher
## 10                         Don't Know
## 11                          Very high
## 12                               <NA>
## 13                                Low
## 14                               <NA>
## 15                                Mid
## 16                                Mid
## 17                                Mid
## 18                               <NA>
## 19                                Mid
## 20                             Higher
## 21                          Very high
## 22                                Low
## 23                                Low
## 24                                Low
## 25                         Don't Know
## 26                         Don't Know
## 27                                Mid
## 28                             Higher
## 29                         Don't Know
## 30                             Higher
## 31                             Higher
## 32                         Don't Know
## 33                                Mid
## 34                             Higher
## 35                                Low
## 36                             Higher
## 37                             Higher
## 38                                Mid
## 39                                Mid
## 40                             Higher
## 41                             Higher
## 42                                Mid
## 43                             Higher
## 44                                Mid
## 45                                Mid
## 46                                Low
## 47                             Higher
## 48                             Higher
## 49                             Higher
## 50                         Don't Know
## 51                           Very Low
## 52                               <NA>
## 53                                Mid
## 54                                Mid
## 55                                Mid
## 56                         Don't Know
## 57                         Don't Know
## 58                         Don't Know
## 59                         Don't Know
## 60                         Don't Know
## 61                             Higher
## 62                                Mid
## 63                                Mid
## 64                                Mid
## 65                             Higher
## 66                                Mid
## 67                                Mid
## 68                             Higher
## 69                                Mid
## 70                                Low
## 71                                Mid
## 72                             Higher
## 73                             Higher
## 74                                Mid
## 75                                Mid
## 76                             Higher
## 77                             Higher
## 78                             Higher
## 79                             Higher
## 80                                Mid
## 81                                Mid
## 82                                Mid
## 83                                Mid
## 84                                Mid
## 85                                Mid
## 86                             Higher
## 87                                Mid
## 88                             Higher
## 89                             Higher
## 90                                Mid
## 91                                Mid
## 92                          Very high
## 93                                Mid
## 94                          Very high
## 95                                Mid
## 96                             Higher
## 97                                Mid
## 98                             Higher
## 99                                Mid
## 100                               Mid
## 101                         Very high
## 102                          Very Low
## 103                            Higher
## 104                         Very high
## 105                            Higher
## 106                               Mid
## 107                            Higher
## 108                               Mid
## 109                        Don't Know
## 110                               Mid
## 111                               Mid
## 112                               Mid
## 113                        Don't Know
## 114                               Mid
## 115                         Very high
## 116                        Don't Know
## 117                            Higher
## 118                        Don't Know
## 119                        Don't Know
## 120                            Higher
## 121                            Higher
## 122                         Very high
## 123                            Higher
## 124                         Very high
## 125                               Mid
## 126                               Mid
## 127                         Very high
## 128                         Very high
## 129                               Mid
## 130                            Higher
## 131                               Mid
## 132                               Mid
## 133                               Low
## 134                               Mid
## 135                               Mid
## 136                        Don't Know
## 137                            Higher
## 138                            Higher
## 139                            Higher
## 140                            Higher
## 141                               Mid
## 142                            Higher
## 143                               Mid
## 144                            Higher
## 145                               Mid
## 146                            Higher
## 147                               Low
## 148                        Don't Know
## 149                               Mid
## 150                            Higher
## 151                            Higher
## 152                            Higher
## 153                        Don't Know
## 154                        Don't Know
## 155                            Higher
## 156                            Higher
## 157                        Don't Know
## 158                            Higher
## 159                        Don't Know
## 160                               Mid
## 161                            Higher
## 162                        Don't Know
## 163                        Don't Know
## 164                        Don't Know
## 165                            Higher
## 166                            Higher
## 167                            Higher
## 168                               Mid
## 169                        Don't Know
## 170                        Don't Know
## 171                        Don't Know
## 172                        Don't Know
## 173                        Don't Know
## 174                            Higher
## 175                               Mid
## 176                            Higher
## 177                        Don't Know
## 178                        Don't Know
## 179                        Don't Know
## 180                            Higher
## 181                        Don't Know
## 182                        Don't Know
## 183                        Don't Know
## 184                               Mid
## 185                               Low
## 186                        Don't Know
## 187                               Mid
## 188                               Low
## 189                        Don't Know
## 190                        Don't Know
## 191                        Don't Know
## 192                        Don't Know
## 193                               Mid
## 194                               Low
## 195                        Don't Know
## 196                               Mid
## 197                               Mid
## 198                               Mid
## 199                            Higher
## 200                        Don't Know
## 201                               Mid
## 202                            Higher
## 203                               Mid
## 204                            Higher
## 205                               Mid
## 206                               Mid
## 207                               Mid
## 208                               Mid
## 209                               Mid
## 210                               Mid
## 211                         Very high
## 212                         Very high
## 213                         Very high
## 214                         Very high
## 215                         Very high
## 216                         Very high
## 217                               Low
## 218                               Mid
## 219                               Mid
## 220                               Low
## 221                               Low
## 222                               Mid
## 223                            Higher
## 224                               Mid
## 225                               Mid
## 226                          Very Low
## 227                               Low
## 228                               Low
## 229                               Low
## 230                               Mid
## 231                               Low
## 232                               Mid
## 233                            Higher
## 234                               Mid
## 235                               Mid
## 236                               Low
## 237                               Mid
## 238                         Very high
## 239                               Mid
## 240                               Mid
## 241                            Higher
## 242                            Higher
## 243                               Mid
## 244                               Mid
## 245                               Low
## 246                            Higher
## 247                               Mid
## 248                         Very high
## 249                            Higher
## 250                            Higher
## 251                               Mid
## 252                               Mid
## 253                        Don't Know
## 254                            Higher
## 255                               Mid
## 256                               Mid
## 257                            Higher
## 258                            Higher
## 259                               Mid
## 260                            Higher
## 261                            Higher
## 262                              <NA>
## 263                               Mid
## 264                               Mid
## 265                               Mid
## 266                            Higher
## 267                               Mid
## 268                               Low
## 269                               Mid
## 270                               Mid
## 271                            Higher
## 272                               Mid
## 273                               Mid
## 274                               Low
## 275                            Higher
## 276                            Higher
## 277                        Don't Know
## 278                            Higher
## 279                              <NA>
## 280                               Mid
## 281                            Higher
## 282                               Mid
## 283                               Low
## 284                              <NA>
## 285                          Very Low
## 286                               Mid
## 287                            Higher
## 288                            Higher
## 289                               Mid
## 290                               Mid
## 291                               Mid
## 292                            Higher
## 293                               Low
## 294                              <NA>
## 295                            Higher
## 296                               Mid
## 297                               Mid
## 298                               Mid
## 299                        Don't Know
## 300                               Low
## 302                              <NA>
## 303                               Mid
## 304                          Very Low
## 305                               Mid
## 306                            Higher
## 307                               Mid
## 308                               Mid
## 309                        Don't Know
## 310                        Don't Know
## 311                               Mid
## 312                               Mid
## 313                               Mid
## 314                            Higher
## 315                        Don't Know
## 316                         Very high
## 317                          Very Low
## 318                               Mid
## 319                               Mid
## 320                            Higher
## 321                            Higher
## 322                        Don't Know
## 323                        Don't Know
## 324                               Mid
## 325                               Mid
## 326                               Mid
## 327                               Mid
## 328                               Mid
## 329                        Don't Know
## 330                            Higher
## 331                               Mid
## 332                            Higher
## 333                        Don't Know
## 334                               Mid
## 335                         Very high
## 336                            Higher
## 337                         Very high
## 338                        Don't Know
## 339                               Mid
## 340                            Higher
## 341                               Mid
## 342                          Very Low
## 343                               Low
## 344                               Mid
## 345                            Higher
## 346                            Higher
## 347                        Don't Know
## 348                               Mid
## 349                               Mid
## 350                               Low
## 351                               Mid
## 352                        Don't Know
## 353                               Low
## 354                        Don't Know
## 355                               Mid
## 356                        Don't Know
## 357                               Mid
## 358                               Low
## 359                               Low
## 360                               Mid
## 361                               Mid
## 362                               Low
## 363                               Mid
## 364                               Low
## 365                               Mid
## 366                               Low
## 367                               Mid
## 368                        Don't Know
## 369                               Low
## 370                               Mid
## 371                               Low
## 372                            Higher
## 373                               Low
## 374                            Higher
## 375                               Low
## 376                               Low
## 377                               Mid
## 378                               Low
## 379                               Low
## 380                               Low
## 381                        Don't Know
## 382                               Low
## 383                               Low
## 384                        Don't Know
## 385                        Don't Know
## 386                        Don't Know
## 387                        Don't Know
## 388                        Don't Know
## 389                        Don't Know
## 390                               Low
## 391                               Low
## 392                        Don't Know
## 393                        Don't Know
## 394                        Don't Know
## 395                               Mid
## 396                               Low
## 397                               Low
## 398                               Low
## 399                        Don't Know
## 400                               Mid
## 401                               Mid
## 402                        Don't Know
## 403                               Mid
## 404                        Don't Know
## 405                              <NA>
## 406                        Don't Know
## 407                               Mid
## 408                               Mid
## 409                              <NA>
## 410                               Mid
## 411                        Don't Know
## 412                               Mid
## 413                               Mid
## 414                              <NA>
## 415                        Don't Know
## 416                               Mid
## 417                              <NA>
## 418                        Don't Know
## 419                               Mid
## 420                              <NA>
## 421                               Mid
## 422                              <NA>
## 423                              <NA>
## 424                               Mid
## 425                               Mid
## 426                               Mid
## 427                               Mid
## 428                              <NA>
## 429                              <NA>
## 430                               Mid
## 431                               Mid
## 432                              <NA>
## 433                               Mid
## 434                              <NA>
## 435                              <NA>
## 436                              <NA>
## 437                               Mid
## 438                            Higher
## 439                               Mid
## 440                               Low
## 441                               Mid
## 442                              <NA>
## 443                               Mid
## 444                               Mid
## 445                               Mid
## 446                               Mid
## 447                               Mid
## 448                               Mid
## 449                              <NA>
## 450                              <NA>
## 451                              <NA>
## 452                               Mid
## 453                            Higher
## 454                               Mid
## 455                               Mid
## 456                               Mid
## 457                        Don't Know
## 458                               Mid
## 459                               Low
## 460                              <NA>
## 461                        Don't Know
## 462                               Mid
## 463                               Mid
## 464                               Mid
## 465                          Very Low
## 466                          Very Low
## 467                            Higher
## 468                            Higher
## 469                               Low
## 470                               Mid
## 471                         Very high
## 472                            Higher
## 473                        Don't Know
## 474                          Very Low
## 475                               Mid
## 476                        Don't Know
## 477                        Don't Know
## 478                          Very Low
## 479                        Don't Know
## 480                        Don't Know
## 481                          Very Low
## 482                          Very Low
## 483                          Very Low
## 484                        Don't Know
## 485                              <NA>
## 486                               Mid
## 487                        Don't Know
## 488                        Don't Know
## 489                               Mid
## 490                          Very Low
## 491                               Low
## 492                              <NA>
## 493                          Very Low
## 494                            Higher
## 495                            Higher
## 496                            Higher
##      National.Government..Citizen.s.Participaton DDC..Accountibility
## 1                                            Low                 Low
## 2                                         Higher              Higher
## 3                                            Low              Higher
## 4                                            Mid                 Low
## 5                                            Mid              Higher
## 6                                     Don't Know          Don't Know
## 7                                            Mid                 Low
## 8                                         Higher                 Mid
## 9                                         Higher              Higher
## 10                                    Don't Know              Higher
## 11                                        Higher              Higher
## 12                                          <NA>                <NA>
## 13                                        Higher              Higher
## 14                                           Mid                 Low
## 15                                        Higher                 Low
## 16                                      Very Low                 Mid
## 17                                           Mid           Very high
## 18                                          <NA>                <NA>
## 19                                        Higher                 Mid
## 20                                           Low                 Mid
## 21                                           Mid              Higher
## 22                                      Very Low              Higher
## 23                                           Mid                 Low
## 24                                        Higher                 Low
## 25                                    Don't Know                 Mid
## 26                                    Don't Know          Don't Know
## 27                                           Mid                 Low
## 28                                        Higher          Don't Know
## 29                                    Don't Know          Don't Know
## 30                                        Higher                 Mid
## 31                                           Mid                 Low
## 32                                    Don't Know          Don't Know
## 33                                           Mid                 Mid
## 34                                        Higher                 Mid
## 35                                           Mid                 Low
## 36                                        Higher                 Mid
## 37                                           Mid              Higher
## 38                                           Low              Higher
## 39                                           Mid              Higher
## 40                                        Higher                 Low
## 41                                        Higher                 Mid
## 42                                           Mid                 Mid
## 43                                           Mid              Higher
## 44                                           Mid                 Mid
## 45                                        Higher                 Mid
## 46                                      Very Low                 Low
## 47                                           Mid                 Mid
## 48                                           Mid                 Mid
## 49                                           Mid                 Mid
## 50                                          <NA>          Don't Know
## 51                                    Don't Know            Very Low
## 52                                    Don't Know          Don't Know
## 53                                        Higher              Higher
## 54                                           Mid                 Mid
## 55                                           Mid                 Mid
## 56                                    Don't Know          Don't Know
## 57                                    Don't Know          Don't Know
## 58                                    Don't Know          Don't Know
## 59                                    Don't Know              Higher
## 60                                    Don't Know              Higher
## 61                                        Higher              Higher
## 62                                           Low              Higher
## 63                                           Mid              Higher
## 64                                           Low              Higher
## 65                                           Mid              Higher
## 66                                           Mid              Higher
## 67                                           Mid              Higher
## 68                                           Mid              Higher
## 69                                    Don't Know                 Mid
## 70                                           Low                 Low
## 71                                           Low              Higher
## 72                                           Mid                 Mid
## 73                                           Mid              Higher
## 74                                           Low           Very high
## 75                                           Mid              Higher
## 76                                           Mid              Higher
## 77                                           Mid              Higher
## 78                                           Mid              Higher
## 79                                           Mid           Very high
## 80                                           Mid              Higher
## 81                                           Mid              Higher
## 82                                           Low              Higher
## 83                                           Mid              Higher
## 84                                           Low              Higher
## 85                                           Low              Higher
## 86                                    Don't Know              Higher
## 87                                           Mid                 Mid
## 88                                           Mid              Higher
## 89                                           Mid              Higher
## 90                                           Mid              Higher
## 91                                           Low              Higher
## 92                                           Mid           Very high
## 93                                           Mid              Higher
## 94                                           Mid           Very high
## 95                                           Mid              Higher
## 96                                           Mid              Higher
## 97                                           Mid              Higher
## 98                                           Mid              Higher
## 99                                           Low              Higher
## 100                                          Mid              Higher
## 101                                          Mid                <NA>
## 102                                          Mid              Higher
## 103                                          Mid                 Mid
## 104                                          Low              Higher
## 105                                    Very high              Higher
## 106                                       Higher                 Mid
## 107                                       Higher              Higher
## 108                                          Mid                 Mid
## 109                                   Don't Know           Very high
## 110                                       Higher                 Mid
## 111                                       Higher                 Mid
## 112                                       Higher              Higher
## 113                                   Don't Know          Don't Know
## 114                                   Don't Know              Higher
## 115                                       Higher              Higher
## 116                                   Don't Know          Don't Know
## 117                                    Very high           Very high
## 118                                   Don't Know          Don't Know
## 119                                   Don't Know           Very high
## 120                                          Low              Higher
## 121                                          Mid                 Mid
## 122                                       Higher              Higher
## 123                                       Higher           Very high
## 124                                    Very high              Higher
## 125                                       Higher           Very high
## 126                                          Mid              Higher
## 127                                       Higher              Higher
## 128                                       Higher              Higher
## 129                                          Mid              Higher
## 130                                     Very Low              Higher
## 131                                          Mid              Higher
## 132                                       Higher              Higher
## 133                                          Low                 Mid
## 134                                          Mid              Higher
## 135                                          Mid              Higher
## 136                                   Don't Know          Don't Know
## 137                                          Low                 Mid
## 138                                       Higher                 Mid
## 139                                    Very high              Higher
## 140                                          Mid          Don't Know
## 141                                          Mid                 Mid
## 142                                          Mid           Very high
## 143                                          Mid           Very high
## 144                                          Mid           Very high
## 145                                          Mid                 Mid
## 146                                          Mid                 Mid
## 147                                       Higher              Higher
## 148                                   Don't Know          Don't Know
## 149                                   Don't Know              Higher
## 150                                       Higher              Higher
## 151                                       Higher              Higher
## 152                                       Higher                 Mid
## 153                                   Don't Know          Don't Know
## 154                                   Don't Know          Don't Know
## 155                                       Higher              Higher
## 156                                       Higher              Higher
## 157                                   Don't Know                 Low
## 158                                       Higher                 Mid
## 159                                   Don't Know                 Mid
## 160                                          Mid              Higher
## 161                                       Higher                 Mid
## 162                                   Don't Know              Higher
## 163                                   Don't Know                 Mid
## 164                                   Don't Know          Don't Know
## 165                                       Higher                 Mid
## 166                                       Higher                 Mid
## 167                                       Higher                 Mid
## 168                                       Higher              Higher
## 169                                   Don't Know                 Mid
## 170                                   Don't Know          Don't Know
## 171                                   Don't Know          Don't Know
## 172                                   Don't Know                 Mid
## 173                                   Don't Know          Don't Know
## 174                                       Higher                 Low
## 175                                          Low                 Mid
## 176                                          Mid              Higher
## 177                                   Don't Know                 Mid
## 178                                   Don't Know                 Mid
## 179                                   Don't Know                 Mid
## 180                                       Higher                 Mid
## 181                                   Don't Know                 Mid
## 182                                   Don't Know                 Mid
## 183                                   Don't Know                 Low
## 184                                          Mid              Higher
## 185                                          Mid                 Mid
## 186                                   Don't Know              Higher
## 187                                       Higher              Higher
## 188                                          Low              Higher
## 189                                   Don't Know              Higher
## 190                                   Don't Know              Higher
## 191                                   Don't Know              Higher
## 192                                   Don't Know          Don't Know
## 193                                          Mid              Higher
## 194                                          Low                 Mid
## 195                                   Don't Know                 Mid
## 196                                          Mid              Higher
## 197                                          Mid              Higher
## 198                                       Higher              Higher
## 199                                       Higher                 Mid
## 200                                   Don't Know                 Low
## 201                                          Mid                 Low
## 202                                    Very high              Higher
## 203                                          Mid                 Mid
## 204                                          Mid                 Mid
## 205                                       Higher              Higher
## 206                                       Higher              Higher
## 207                                       Higher              Higher
## 208                                       Higher           Very high
## 209                                       Higher              Higher
## 210                                       Higher              Higher
## 211                                   Don't Know                 Mid
## 212                                    Very high                 Mid
## 213                                   Don't Know                 Mid
## 214                                   Don't Know                 Mid
## 215                                   Don't Know                 Mid
## 216                                    Very high                 Mid
## 217                                       Higher           Very high
## 218                                       Higher              Higher
## 219                                       Higher                 Mid
## 220                                       Higher              Higher
## 221                                       Higher              Higher
## 222                                          Mid                 Low
## 223                                       Higher              Higher
## 224                                       Higher                 Low
## 225                                          Mid                 Low
## 226                                          Low                 Low
## 227                                    Very high                 Mid
## 228                                       Higher              Higher
## 229                                          Mid                 Mid
## 230                                          Low                 Mid
## 231                                       Higher           Very high
## 232                                          Mid                 Low
## 233                                          Low                 Mid
## 234                                       Higher                 Mid
## 235                                       Higher                 Mid
## 236                                       Higher              Higher
## 237                                          Mid                 Mid
## 238                                       Higher                 Mid
## 239                                       Higher                 Mid
## 240                                          Low                 Mid
## 241                                          Mid                 Mid
## 242                                          Mid                 Mid
## 243                                          Mid                 Mid
## 244                                       Higher                 Mid
## 245                                       Higher                 Mid
## 246                                          Low                 Mid
## 247                                       Higher                 Mid
## 248                                    Very high                 Mid
## 249                                    Very high                 Mid
## 250                                    Very high                 Low
## 251                                          Mid              Higher
## 252                                          Mid              Higher
## 253                                       Higher              Higher
## 254                                       Higher                 Mid
## 255                                          Mid                 Mid
## 256                                          Mid              Higher
## 257                                          Low                 Mid
## 258                                          Low                 Mid
## 259                                          Low              Higher
## 260                                          Low              Higher
## 261                                          Low              Higher
## 262                                          Mid              Higher
## 263                                       Higher              Higher
## 264                                       Higher                 Mid
## 265                                          Low              Higher
## 266                                       Higher                 Mid
## 267                                          Mid                 Mid
## 268                                       Higher              Higher
## 269                                       Higher              Higher
## 270                                          Mid                 Mid
## 271                                       Higher                 Mid
## 272                                       Higher              Higher
## 273                                          Mid                 Mid
## 274                                          Low                 Mid
## 275                                          Mid              Higher
## 276                                       Higher              Higher
## 277                                   Don't Know          Don't Know
## 278                                          Low              Higher
## 279                                         <NA>                <NA>
## 280                                       Higher              Higher
## 281                                       Higher                 Mid
## 282                                       Higher              Higher
## 283                                          Low                 Mid
## 284                                         <NA>              Higher
## 285                                          Low                 Low
## 286                                          Mid              Higher
## 287                                       Higher                 Mid
## 288                                       Higher              Higher
## 289                                   Don't Know                 Mid
## 290                                          Low                 Mid
## 291                                       Higher                 Low
## 292                                       Higher                 Mid
## 293                                          Low                 Mid
## 294                                          Mid                 Mid
## 295                                       Higher              Higher
## 296                                          Mid                 Mid
## 297                                          Mid                 Mid
## 298                                          Mid                 Low
## 299                                   Don't Know              Higher
## 300                                       Higher                 Mid
## 302                                         <NA>                 Mid
## 303                                          Mid              Higher
## 304                                     Very Low                 Mid
## 305                                          Mid                 Low
## 306                                          Low              Higher
## 307                                          Mid                 Mid
## 308                                     Very Low                 Mid
## 309                                   Don't Know          Don't Know
## 310                                   Don't Know                 Mid
## 311                                          Mid                 Low
## 312                                          Mid                 Mid
## 313                                          Mid                 Mid
## 314                                          Low              Higher
## 315                                   Don't Know          Don't Know
## 316                                          Low           Very high
## 317                                     Very Low            Very Low
## 318                                          Low                 Mid
## 319                                          Mid              Higher
## 320                                       Higher              Higher
## 321                                          Mid              Higher
## 322                                   Don't Know          Don't Know
## 323                                   Don't Know          Don't Know
## 324                                          Low                 Mid
## 325                                          Low                 Mid
## 326                                          Low                 Mid
## 327                                          Mid              Higher
## 328                                          Mid              Higher
## 329                                   Don't Know                 Low
## 330                                          Mid                 Mid
## 331                                       Higher              Higher
## 332                                    Very high          Don't Know
## 333                                    Very high           Very high
## 334                                       Higher            Very Low
## 335                                   Don't Know            Very Low
## 336                                    Very high              Higher
## 337                                          Mid            Very Low
## 338                                   Don't Know          Don't Know
## 339                                   Don't Know                 Mid
## 340                                          Low              Higher
## 341                                          Low              Higher
## 342                                     Very Low                 Low
## 343                                          Mid                 Low
## 344                                          Mid              Higher
## 345                                       Higher              Higher
## 346                                    Very high                 Mid
## 347                                          Low           Very high
## 348                                          Mid              Higher
## 349                                          Mid           Very high
## 350                                          Low                 Low
## 351                                     Very Low           Very high
## 352                                   Don't Know          Don't Know
## 353                                          Mid                 Mid
## 354                                   Don't Know          Don't Know
## 355                                          Low                 Low
## 356                                   Don't Know          Don't Know
## 357                                          Low                 Low
## 358                                          Low                 Low
## 359                                          Low          Don't Know
## 360                                          Mid                 Mid
## 361                                          Mid                 Mid
## 362                                          Low                 Mid
## 363                                          Mid                 Mid
## 364                                          Low                 Mid
## 365                                          Low          Don't Know
## 366                                          Low                 Mid
## 367                                          Low                 Mid
## 368                                   Don't Know                 Low
## 369                                     Very Low                 Low
## 370                                          Low                 Mid
## 371                                          Low                 Low
## 372                                       Higher              Higher
## 373                                          Mid                 Mid
## 374                                          Low              Higher
## 375                                          Low                 Mid
## 376                                          Low                 Mid
## 377                                          Mid                 Mid
## 378                                          Low                 Mid
## 379                                          Low                 Mid
## 380                                          Low                 Mid
## 381                                   Don't Know                 Low
## 382                                          Low                 Mid
## 383                                     Very Low                 Low
## 384                                   Don't Know                 Mid
## 385                                   Don't Know                 Low
## 386                                   Don't Know                 Low
## 387                                   Don't Know                 Mid
## 388                                   Don't Know                 Low
## 389                                   Don't Know                 Low
## 390                                          Low                 Mid
## 391                                          Low                 Mid
## 392                                   Don't Know                 Low
## 393                                   Don't Know                 Low
## 394                                   Don't Know                 Low
## 395                                          Mid                 Mid
## 396                                          Low                 Mid
## 397                                          Low                 Mid
## 398                                          Low                 Mid
## 399                                   Don't Know          Don't Know
## 400                                          Low                 Mid
## 401                                          Mid                 Mid
## 402                                   Don't Know          Don't Know
## 403                                          Mid                 Low
## 404                                     Very Low          Don't Know
## 405                                         <NA>                 Mid
## 406                                   Don't Know                 Mid
## 407                                          Mid                 Mid
## 408                                          Mid                 Mid
## 409                                         <NA>                <NA>
## 410                                          Mid                 Mid
## 411                                   Don't Know                 Mid
## 412                                          Mid                 Mid
## 413                                          Mid                 Mid
## 414                                         <NA>                <NA>
## 415                                   Don't Know          Don't Know
## 416                                          Mid                 Mid
## 417                                         <NA>                <NA>
## 418                                   Don't Know                 Mid
## 419                                          Mid                 Low
## 420                                         <NA>                <NA>
## 421                                          Mid                 Mid
## 422                                         <NA>                <NA>
## 423                                         <NA>                <NA>
## 424                                          Mid                 Mid
## 425                                          Mid                 Mid
## 426                                          Low                 Mid
## 427                                          Mid                 Mid
## 428                                         <NA>          Don't Know
## 429                                         <NA>                <NA>
## 430                                          Mid                 Mid
## 431                                          Mid                 Mid
## 432                                         <NA>                <NA>
## 433                                          Mid                 Mid
## 434                                         <NA>                <NA>
## 435                                         <NA>                <NA>
## 436                                         <NA>                <NA>
## 437                                          Mid                 Mid
## 438                                       Higher                 Low
## 439                                          Mid                 Mid
## 440                                          Low                 Mid
## 441                                          Mid                 Mid
## 442                                         <NA>                <NA>
## 443                                          Low                 Mid
## 444                                          Mid                 Mid
## 445                                          Mid                 Mid
## 446                                          Low                 Mid
## 447                                          Mid                 Mid
## 448                                          Mid                 Mid
## 449                                         <NA>                <NA>
## 450                                         <NA>                <NA>
## 451                                         <NA>                <NA>
## 452                                          Mid                 Low
## 453                                          Mid              Higher
## 454                                          Mid                 Low
## 455                                          Mid              Higher
## 456                                          Mid                <NA>
## 457                                   Don't Know          Don't Know
## 458                                     Very Low                 Mid
## 459                                     Very Low                 Mid
## 460                                         <NA>                <NA>
## 461                                         <NA>            Very Low
## 462                                          Mid              Higher
## 463                                          Low            Very Low
## 464                                          Low                 Low
## 465                                     Very Low              Higher
## 466                                     Very Low            Very Low
## 467                                       Higher              Higher
## 468                                       Higher           Very high
## 469                                          Mid              Higher
## 470                                       Higher                 Mid
## 471                                          Low            Very Low
## 472                                       Higher              Higher
## 473                                   Don't Know          Don't Know
## 474                                          Low          Don't Know
## 475                                          Low                 Mid
## 476                                   Don't Know          Don't Know
## 477                                          Mid                 Mid
## 478                                   Don't Know                 Low
## 479                                   Don't Know          Don't Know
## 480                                   Don't Know          Don't Know
## 481                                   Don't Know          Don't Know
## 482                                         <NA>            Very Low
## 483                                     Very Low                 Mid
## 484                                          Mid          Don't Know
## 485                                         <NA>                <NA>
## 486                                          Low           Very high
## 487                                   Don't Know          Don't Know
## 488                                   Don't Know          Don't Know
## 489                                          Mid          Don't Know
## 490                                     Very Low            Very Low
## 491                                     Very Low          Don't Know
## 492                                         <NA>                <NA>
## 493                                     Very Low            Very Low
## 494                                       Higher           Very high
## 495                                          Low              Higher
## 496                                       Higher              Higher
##      DDC..Transparency DDC..Rule.of.Law DDC..Citizen.s.Participaton
## 1                  Low              Low                         Low
## 2                  Mid              Mid                      Higher
## 3                  Mid           Higher                   Very high
## 4               Higher              Mid                         Mid
## 5                  Mid              Mid                   Very high
## 6                 <NA>       Don't Know                  Don't Know
## 7                  Mid           Higher                      Higher
## 8                  Mid              Mid                         Mid
## 9               Higher              Mid                         Mid
## 10           Very high           Higher                      Higher
## 11           Very high        Very high                      Higher
## 12                <NA>             <NA>                        <NA>
## 13                 Mid              Low                      Higher
## 14                 Mid              Mid                         Low
## 15            Very Low              Low                      Higher
## 16                 Low           Higher                         Low
## 17              Higher           Higher                   Very high
## 18                <NA>             <NA>                        <NA>
## 19              Higher              Mid                      Higher
## 20                 Low              Low                         Low
## 21              Higher           Higher                      Higher
## 22                 Mid         Very Low                         Low
## 23                 Low              Mid                      Higher
## 24                 Mid           Higher                         Low
## 25                 Mid              Mid                         Mid
## 26          Don't Know       Don't Know                  Don't Know
## 27                 Low              Low                         Low
## 28              Higher           Higher                      Higher
## 29          Don't Know       Don't Know                  Don't Know
## 30                 Mid              Mid                         Mid
## 31                 Mid              Low                         Mid
## 32          Don't Know       Don't Know                  Don't Know
## 33                 Mid           Higher                   Very high
## 34              Higher           Higher                         Mid
## 35                <NA>             <NA>                        <NA>
## 36                 Mid           Higher                      Higher
## 37              Higher           Higher                      Higher
## 38              Higher           Higher                         Mid
## 39                 Mid              Low                         Low
## 40                 Mid           Higher                         Mid
## 41                 Mid              Low                        <NA>
## 42              Higher           Higher                      Higher
## 43              Higher              Mid                      Higher
## 44                 Mid              Mid                         Mid
## 45              Higher              Mid                      Higher
## 46            Very Low              Mid                    Very Low
## 47                 Mid           Higher                         Mid
## 48                 Mid           Higher                         Mid
## 49                 Mid           Higher                         Low
## 50                 Mid       Don't Know                        <NA>
## 51            Very Low       Don't Know                  Don't Know
## 52          Don't Know       Don't Know                  Don't Know
## 53                 Mid           Higher                   Very high
## 54                 Mid             <NA>                        <NA>
## 55              Higher              Mid                         Mid
## 56          Don't Know       Don't Know                  Don't Know
## 57          Don't Know       Don't Know                  Don't Know
## 58          Don't Know       Don't Know                  Don't Know
## 59              Higher       Don't Know                  Don't Know
## 60           Very high        Very high                   Very high
## 61              Higher           Higher                      Higher
## 62                 Mid              Mid                         Low
## 63                 Mid              Mid                         Mid
## 64                 Mid              Mid                         Low
## 65                 Mid           Higher                         Mid
## 66                 Mid              Mid                         Mid
## 67                 Mid              Mid                         Mid
## 68                 Mid           Higher                         Mid
## 69                 Mid           Higher                      Higher
## 70                 Low              Low                         Low
## 71              Higher              Mid                         Low
## 72                 Mid              Mid                         Mid
## 73              Higher              Mid                         Mid
## 74                 Mid              Mid                         Low
## 75                 Mid              Mid                         Low
## 76              Higher              Mid                         Mid
## 77                 Mid           Higher                         Mid
## 78                 Mid              Mid                         Mid
## 79                 Mid              Mid                         Mid
## 80                 Mid              Mid                         Low
## 81              Higher              Mid                         Mid
## 82                 Mid              Mid                         Mid
## 83                 Mid              Mid                         Mid
## 84                 Low              Mid                         Low
## 85                 Mid              Mid                         Low
## 86              Higher           Higher                  Don't Know
## 87                 Mid       Don't Know                  Don't Know
## 88                 Mid              Mid                         Mid
## 89                 Mid           Higher                      Higher
## 90              Higher              Mid                         Mid
## 91              Higher              Mid                         Low
## 92                 Mid              Low                         Mid
## 93              Higher              Mid                         Mid
## 94              Higher           Higher                         Mid
## 95                 Mid           Higher                         Mid
## 96              Higher           Higher                         Mid
## 97              Higher              Mid                         Mid
## 98              Higher           Higher                      Higher
## 99                 Mid              Mid                         Mid
## 100             Higher           Higher                         Mid
## 101               <NA>             <NA>                        <NA>
## 102                Mid           Higher                      Higher
## 103                Mid              Mid                         Mid
## 104             Higher              Mid                         Mid
## 105                Low           Higher                         Mid
## 106             Higher        Very high                         Mid
## 107          Very high        Very high                         Mid
## 108                Low        Very high                      Higher
## 109                Mid           Higher                      Higher
## 110                Mid           Higher                         Mid
## 111                Mid           Higher                      Higher
## 112             Higher           Higher                         Mid
## 113             Higher       Don't Know                      Higher
## 114             Higher           Higher                      Higher
## 115             Higher           Higher                         Mid
## 116         Don't Know       Don't Know                  Don't Know
## 117                Mid        Very high                      Higher
## 118         Don't Know       Don't Know                  Don't Know
## 119             Higher              Mid                      Higher
## 120                Mid              Mid                      Higher
## 121             Higher              Mid                      Higher
## 122                Mid              Mid                         Mid
## 123                Mid           Higher                         Mid
## 124             Higher           Higher                         Mid
## 125          Very high           Higher                      Higher
## 126                Low           Higher                      Higher
## 127                Low              Mid                         Mid
## 128          Very high           Higher                         Mid
## 129          Very high           Higher                      Higher
## 130             Higher           Higher                      Higher
## 131             Higher        Very high                      Higher
## 132             Higher              Low                         Mid
## 133             Higher              Mid                         Mid
## 134             Higher           Higher                      Higher
## 135                Mid           Higher                      Higher
## 136         Don't Know       Don't Know                  Don't Know
## 137                Low           Higher                         Low
## 138                Mid              Mid                         Mid
## 139                Mid        Very high                         Mid
## 140         Don't Know           Higher                         Mid
## 141                Mid              Mid                      Higher
## 142          Very high              Mid                      Higher
## 143          Very high           Higher                         Low
## 144          Very high        Very high                      Higher
## 145             Higher           Higher                      Higher
## 146                Mid              Mid                   Very high
## 147             Higher           Higher                         Mid
## 148             Higher       Don't Know                      Higher
## 149             Higher           Higher                      Higher
## 150             Higher           Higher                         Mid
## 151                Low           Higher                      Higher
## 152                Mid           Higher                      Higher
## 153         Don't Know       Don't Know                  Don't Know
## 154         Don't Know       Don't Know                  Don't Know
## 155                Mid        Very high                         Mid
## 156                Low           Higher                      Higher
## 157                Low              Mid                         Mid
## 158                Mid           Higher                      Higher
## 159                Mid           Higher                      Higher
## 160                Mid              Mid                         Mid
## 161                Mid           Higher                      Higher
## 162                Mid              Mid                      Higher
## 163                Mid              Mid                      Higher
## 164         Don't Know       Don't Know                  Don't Know
## 165                Mid           Higher                      Higher
## 166                Mid           Higher                      Higher
## 167                Mid           Higher                      Higher
## 168             Higher           Higher                   Very high
## 169                Low              Mid                      Higher
## 170         Don't Know       Don't Know                  Don't Know
## 171         Don't Know       Don't Know                  Don't Know
## 172                Low              Mid                         Mid
## 173         Don't Know       Don't Know                  Don't Know
## 174                Low              Mid                         Mid
## 175                Mid           Higher                   Very high
## 176             Higher           Higher                         Mid
## 177                Low              Mid                      Higher
## 178                Mid              Mid                      Higher
## 179                Mid              Mid                      Higher
## 180                Mid           Higher                      Higher
## 181                Mid              Mid                      Higher
## 182                Mid              Mid                         Mid
## 183                Low              Low                         Low
## 184             Higher              Mid                      Higher
## 185                Mid           Higher                      Higher
## 186             Higher           Higher                      Higher
## 187             Higher           Higher                      Higher
## 188             Higher           Higher                      Higher
## 189             Higher           Higher                      Higher
## 190             Higher           Higher                      Higher
## 191             Higher           Higher                      Higher
## 192         Don't Know       Don't Know                  Don't Know
## 193                Mid              Mid                      Higher
## 194             Higher              Mid                      Higher
## 195                Mid              Mid                         Mid
## 196             Higher           Higher                      Higher
## 197                Mid           Higher                         Mid
## 198             Higher           Higher                      Higher
## 199                Mid           Higher                      Higher
## 200                Low              Low                         Low
## 201                Low              Mid                         Mid
## 202          Very high              Mid                      Higher
## 203                Mid           Higher                      Higher
## 204                Mid           Higher                      Higher
## 205                Mid              Mid                      Higher
## 206             Higher           Higher                      Higher
## 207                Mid           Higher                         Mid
## 208             Higher        Very high                      Higher
## 209             Higher              Mid                      Higher
## 210                Mid              Mid                         Mid
## 211                Low       Don't Know                   Very high
## 212                Low       Don't Know                   Very high
## 213                Low       Don't Know                   Very high
## 214                Low       Don't Know                   Very high
## 215                Low       Don't Know                   Very high
## 216                Low       Don't Know                   Very high
## 217             Higher        Very high                      Higher
## 218             Higher           Higher                      Higher
## 219                Mid           Higher                         Mid
## 220             Higher              Mid                      Higher
## 221                Low              Mid                         Mid
## 222                Mid           Higher                      Higher
## 223                Mid              Mid                         Mid
## 224                Mid           Higher                      Higher
## 225                Mid           Higher                      Higher
## 226                Mid           Higher                      Higher
## 227                Mid           Higher                      Higher
## 228             Higher              Mid                         Mid
## 229                Mid           Higher                      Higher
## 230          Very high           Higher                         Mid
## 231                Mid           Higher                      Higher
## 232                Low           Higher                      Higher
## 233             Higher              Mid                         Mid
## 234             Higher              Mid                      Higher
## 235             Higher              Mid                         Low
## 236             Higher        Very high                      Higher
## 237          Very high           Higher                         Low
## 238             Higher           Higher                         Mid
## 239             Higher              Mid                         Low
## 240             Higher           Higher                         Mid
## 241             Higher              Mid                         Low
## 242             Higher              Mid                         Low
## 243             Higher           Higher                         Low
## 244             Higher              Low                         Mid
## 245                Mid              Mid                      Higher
## 246                Low              Mid                         Low
## 247             Higher              Mid                      Higher
## 248             Higher           Higher                      Higher
## 249             Higher              Mid                      Higher
## 250             Higher              Low                      Higher
## 251             Higher              Mid                      Higher
## 252             Higher           Higher                         Mid
## 253             Higher           Higher                         Mid
## 254             Higher           Higher                      Higher
## 255           Very Low              Mid                         Mid
## 256             Higher           Higher                      Higher
## 257                Mid           Higher                         Mid
## 258             Higher           Higher                         Low
## 259                Low              Low                         Low
## 260             Higher           Higher                         Low
## 261                Low              Mid                         Mid
## 262             Higher           Higher                         Mid
## 263             Higher              Mid                      Higher
## 264             Higher              Mid                         Mid
## 265                Mid              Low                         Low
## 266                Mid              Mid                         Mid
## 267                Mid              Mid                         Mid
## 268                Mid              Mid                      Higher
## 269             Higher           Higher                         Mid
## 270                Mid              Mid                      Higher
## 271                Mid              Mid                         Mid
## 272             Higher           Higher                      Higher
## 273                Mid              Mid                         Mid
## 274                Low              Low                         Mid
## 275             Higher           Higher                      Higher
## 276             Higher              Mid                         Mid
## 277         Don't Know       Don't Know                  Don't Know
## 278             Higher           Higher                         Low
## 279               <NA>             <NA>                        <NA>
## 280                Mid           Higher                         Mid
## 281                Mid              Mid                         Mid
## 282             Higher           Higher                         Mid
## 283             Higher           Higher                         Low
## 284             Higher             <NA>                        <NA>
## 285                Low              Low                         Low
## 286             Higher           Higher                         Low
## 287                Mid              Mid                         Mid
## 288             Higher              Low                         Low
## 289                Mid              Mid                      Higher
## 290                Mid              Mid                         Low
## 291             Higher           Higher                         Mid
## 292                Mid           Higher                      Higher
## 293                Mid              Low                         Low
## 294                Mid             <NA>                         Mid
## 295             Higher           Higher                      Higher
## 296             Higher              Mid                      Higher
## 297                Mid              Mid                         Mid
## 298                Mid              Low                   Very high
## 299             Higher           Higher                      Higher
## 300                Low              Low                         Mid
## 302                Mid              Low                         Mid
## 303             Higher              Mid                         Mid
## 304                Mid              Mid                         Mid
## 305                Low              Mid                         Mid
## 306             Higher              Mid                         Mid
## 307                Mid              Mid                         Mid
## 308                Low              Low                         Mid
## 309         Don't Know       Don't Know                  Don't Know
## 310             Higher           Higher                      Higher
## 311                Low              Mid                         Mid
## 312                Mid              Mid                         Mid
## 313                Mid              Mid                         Mid
## 314                Mid           Higher                      Higher
## 315         Don't Know       Don't Know                  Don't Know
## 316          Very high        Very high                         Low
## 317           Very Low         Very Low                    Very Low
## 318             Higher              Low                         Low
## 319           Very Low              Mid                         Mid
## 320             Higher           Higher                      Higher
## 321             Higher           Higher                      Higher
## 322         Don't Know       Don't Know                  Don't Know
## 323         Don't Know       Don't Know                  Don't Know
## 324                Mid              Mid                         Low
## 325                Mid              Mid                         Mid
## 326                Low              Mid                         Mid
## 327                Mid              Mid                         Mid
## 328                Mid              Mid                         Mid
## 329             Higher              Mid                      Higher
## 330                Mid           Higher                   Very high
## 331          Very high       Don't Know                   Very high
## 332          Very high        Very high                  Don't Know
## 333             Higher              Mid                         Low
## 334                Low              Mid                         Mid
## 335                Mid              Mid                         Low
## 336          Very high       Don't Know                  Don't Know
## 337                Mid        Very high                         Mid
## 338         Don't Know       Don't Know                  Don't Know
## 339                Mid           Higher                   Very high
## 340                Low           Higher                         Mid
## 341                Mid              Mid                         Low
## 342                Low              Low                         Low
## 343                Low              Low                         Mid
## 344                Low              Mid                         Mid
## 345          Very high           Higher                      Higher
## 346                Mid           Higher                         Mid
## 347             Higher           Higher                      Higher
## 348                Low              Low                         Mid
## 349             Higher           Higher                      Higher
## 350                Low              Low                    Very Low
## 351             Higher           Higher                      Higher
## 352         Don't Know       Don't Know                  Don't Know
## 353                Mid              Low                         Low
## 354         Don't Know       Don't Know                  Don't Know
## 355                Mid              Low                         Low
## 356         Don't Know       Don't Know                  Don't Know
## 357                Mid              Mid                         Mid
## 358                Low              Low                         Low
## 359         Don't Know       Don't Know                  Don't Know
## 360                Mid              Low                         Mid
## 361                Mid              Mid                         Low
## 362                Mid              Mid                         Mid
## 363                Mid           Higher                         Mid
## 364                Mid              Mid                         Mid
## 365         Don't Know       Don't Know                  Don't Know
## 366                Mid              Mid                         Mid
## 367                Mid              Mid                         Mid
## 368                Low              Low                         Low
## 369           Very Low              Low                         Low
## 370                Mid              Low                         Low
## 371                Low              Low                         Low
## 372                Mid           Higher                         Mid
## 373                Mid              Mid                         Mid
## 374             Higher           Higher                   Very high
## 375                Mid              Mid                         Mid
## 376                Mid              Mid                         Mid
## 377                Mid              Mid                         Mid
## 378                Mid              Mid                         Mid
## 379                Mid              Mid                         Mid
## 380                Mid              Mid                         Mid
## 381                Low              Low                         Low
## 382                Mid              Mid                         Mid
## 383                Low              Low                         Low
## 384                Mid              Mid                         Mid
## 385                Low              Low                         Low
## 386                Low              Low                         Low
## 387                Mid              Mid                         Mid
## 388                Low              Low                         Low
## 389                Low              Low                         Low
## 390                Mid              Low                         Low
## 391                Mid              Mid                         Mid
## 392                Low              Low                         Low
## 393                Low              Low                         Low
## 394                Low              Low                         Low
## 395                Mid              Mid                         Mid
## 396                Mid              Mid                         Mid
## 397                Mid              Mid                         Mid
## 398                Mid              Mid                         Mid
## 399         Don't Know       Don't Know                  Don't Know
## 400                Mid              Mid                         Mid
## 401                Mid              Mid                         Mid
## 402         Don't Know       Don't Know                  Don't Know
## 403                Low              Low                         Low
## 404         Don't Know       Don't Know                  Don't Know
## 405               <NA>             <NA>                        <NA>
## 406                Mid              Mid                         Mid
## 407                Mid              Mid                         Mid
## 408                Mid              Mid                         Mid
## 409                Mid             <NA>                        <NA>
## 410                Mid              Mid                         Mid
## 411                Mid              Mid                         Mid
## 412                Mid              Mid                         Mid
## 413                Mid              Mid                         Mid
## 414               <NA>             <NA>                        <NA>
## 415         Don't Know       Don't Know                  Don't Know
## 416                Mid              Mid                         Mid
## 417               <NA>             <NA>                  Don't Know
## 418                Mid              Mid                         Mid
## 419                Low              Low                         Low
## 420               <NA>             <NA>                        <NA>
## 421                Mid              Mid                         Mid
## 422               <NA>             <NA>                        <NA>
## 423               <NA>             <NA>                        <NA>
## 424                Mid              Mid                         Mid
## 425                Low              Mid                         Mid
## 426                Low              Mid                         Low
## 427                Mid              Mid                         Mid
## 428               <NA>             <NA>                        <NA>
## 429               <NA>             <NA>                        <NA>
## 430                Mid              Mid                         Mid
## 431                Mid              Mid                         Mid
## 432               <NA>             <NA>                        <NA>
## 433                Mid              Mid                         Mid
## 434               <NA>             <NA>                        <NA>
## 435               <NA>             <NA>                        <NA>
## 436               <NA>             <NA>                        <NA>
## 437                Mid              Mid                         Mid
## 438                Low           Higher                      Higher
## 439                Mid              Mid                         Mid
## 440                Mid              Low                         Low
## 441                Mid              Mid                         Mid
## 442               <NA>             <NA>                        <NA>
## 443                Mid              Mid                         Mid
## 444                Mid              Low                         Mid
## 445                Mid              Mid                         Mid
## 446                Mid              Mid                         Low
## 447                Mid              Low                         Mid
## 448                Mid              Mid                         Mid
## 449               <NA>             <NA>                        <NA>
## 450               <NA>             <NA>                        <NA>
## 451               <NA>             <NA>                        <NA>
## 452                Mid              Low                         Mid
## 453                Mid           Higher                      Higher
## 454                Low              Low                         Low
## 455                Mid           Higher                         Mid
## 456               <NA>             <NA>                        <NA>
## 457         Don't Know       Don't Know                  Don't Know
## 458                Mid              Mid                         Mid
## 459                Low              Low                         Low
## 460                Low             <NA>                        <NA>
## 461               <NA>             <NA>                        <NA>
## 462             Higher              Mid                         Mid
## 463                Low           Higher                    Very Low
## 464           Very Low         Very Low                    Very Low
## 465             Higher           Higher                         Mid
## 466           Very Low         Very Low                    Very Low
## 467             Higher           Higher                      Higher
## 468             Higher              Mid                         Low
## 469                Mid           Higher                      Higher
## 470          Very high           Higher                  Don't Know
## 471         Don't Know           Higher                   Very high
## 472             Higher           Higher                      Higher
## 473         Don't Know       Don't Know                  Don't Know
## 474         Don't Know       Don't Know                  Don't Know
## 475                Mid       Don't Know                         Low
## 476         Don't Know       Don't Know                  Don't Know
## 477         Don't Know       Don't Know                         Low
## 478                Low         Very Low                  Don't Know
## 479         Don't Know       Don't Know                  Don't Know
## 480         Don't Know       Don't Know                  Don't Know
## 481         Don't Know         Very Low                  Don't Know
## 482           Very Low         Very Low                    Very Low
## 483                Mid              Mid                         Mid
## 484         Don't Know       Don't Know                  Don't Know
## 485               <NA>             <NA>                        <NA>
## 486          Very high           Higher                         Mid
## 487         Don't Know       Don't Know                  Don't Know
## 488         Don't Know       Don't Know                  Don't Know
## 489         Don't Know              Mid                      Higher
## 490           Very Low         Very Low                    Very Low
## 491          Very high       Don't Know                  Don't Know
## 492               <NA>             <NA>                        <NA>
## 493           Very Low         Very Low                    Very Low
## 494             Higher           Higher                         Mid
## 495          Very high         Very Low                      Higher
## 496             Higher           Higher                      Higher
##      VDC..Accountibility VDC..Transparency VDC..Rule.of.Law
## 1                    Low               Low              Low
## 2                   <NA>               Mid              Mid
## 3                 Higher               Mid           Higher
## 4                    Low              <NA>              Low
## 5                 Higher              <NA>           Higher
## 6             Don't Know              <NA>       Don't Know
## 7                   <NA>               Mid        Very high
## 8                    Mid            Higher           Higher
## 9                 Higher            Higher              Mid
## 10             Very high            Higher           Higher
## 11                Higher               Mid           Higher
## 12                  <NA>              <NA>             <NA>
## 13                Higher               Mid              Mid
## 14                   Low               Low              Low
## 15                   Mid               Mid              Low
## 16                Higher               Mid              Mid
## 17                  <NA>               Low              Mid
## 18                  <NA>              <NA>             <NA>
## 19                Higher               Mid           Higher
## 20             Very high               Mid              Low
## 21                   Mid            Higher           Higher
## 22             Very high               Mid              Mid
## 23                   Mid               Mid              Low
## 24                Higher               Mid           Higher
## 25                   Mid               Mid              Mid
## 26            Don't Know        Don't Know       Don't Know
## 27             Very high            Higher           Higher
## 28            Don't Know            Higher           Higher
## 29            Don't Know        Don't Know       Don't Know
## 30                   Mid               Low              Mid
## 31                   Low               Mid              Mid
## 32            Don't Know        Don't Know       Don't Know
## 33                   Mid            Higher           Higher
## 34                   Mid               Mid           Higher
## 35                   Mid            Higher           Higher
## 36                Higher               Mid           Higher
## 37                   Mid               Mid              Mid
## 38                Higher            Higher           Higher
## 39                   Low               Mid              Mid
## 40                   Mid               Mid              Mid
## 41                   Mid            Higher              Mid
## 42                   Mid               Mid              Mid
## 43                   Mid               Mid           Higher
## 44                   Mid               Mid              Mid
## 45                   Mid            Higher              Mid
## 46              Very Low               Low        Very high
## 47                   Mid               Mid           Higher
## 48                   Mid               Mid           Higher
## 49                   Mid               Mid           Higher
## 50                Higher               Mid       Don't Know
## 51                Higher        Don't Know       Don't Know
## 52                Higher        Don't Know       Don't Know
## 53                Higher         Very high        Very high
## 54                   Mid               Mid              Mid
## 55                  <NA>            Higher              Mid
## 56                Higher            Higher           Higher
## 57                Higher            Higher       Don't Know
## 58                Higher            Higher           Higher
## 59                Higher            Higher           Higher
## 60                Higher               Mid           Higher
## 61             Very high               Low              Mid
## 62                Higher               Mid           Higher
## 63                Higher               Mid              Mid
## 64                Higher               Mid              Mid
## 65                Higher               Mid           Higher
## 66                Higher               Mid           Higher
## 67                Higher               Mid           Higher
## 68                Higher               Mid           Higher
## 69                Higher               Mid              Mid
## 70                   Low          Very Low              Low
## 71             Very high            Higher              Mid
## 72                  <NA>              <NA>             <NA>
## 73                Higher               Mid           Higher
## 74                Higher            Higher           Higher
## 75                Higher               Mid              Mid
## 76                Higher            Higher           Higher
## 77                Higher            Higher              Mid
## 78                Higher               Mid              Mid
## 79                Higher            Higher           Higher
## 80                Higher               Low              Mid
## 81                Higher               Mid              Mid
## 82                Higher               Mid              Mid
## 83                Higher               Mid              Mid
## 84                Higher               Mid              Mid
## 85                Higher               Mid              Mid
## 86             Very high        Don't Know       Don't Know
## 87                Higher            Higher           Higher
## 88                Higher               Low              Mid
## 89                Higher               Mid              Mid
## 90                Higher               Mid           Higher
## 91                Higher            Higher              Mid
## 92                Higher               Mid              Mid
## 93                Higher            Higher              Mid
## 94             Very high            Higher           Higher
## 95                Higher            Higher              Mid
## 96                Higher               Mid           Higher
## 97                Higher               Mid              Mid
## 98                Higher               Mid           Higher
## 99                Higher               Mid              Mid
## 100               Higher               Mid           Higher
## 101               Higher               Mid           Higher
## 102            Very high         Very high        Very high
## 103                  Low            Higher              Mid
## 104               Higher            Higher              Mid
## 105               Higher            Higher           Higher
## 106               Higher               Mid        Very high
## 107               Higher               Mid              Mid
## 108                  Mid               Mid              Low
## 109            Very high               Mid           Higher
## 110                  Mid            Higher           Higher
## 111               Higher            Higher           Higher
## 112            Very high            Higher              Low
## 113            Very high            Higher           Higher
## 114            Very high         Very high           Higher
## 115               Higher            Higher        Very high
## 116               Higher            Higher        Very high
## 117            Very high               Mid        Very high
## 118               Higher            Higher        Very high
## 119            Very high         Very high           Higher
## 120                  Mid            Higher        Very high
## 121               Higher               Mid           Higher
## 122            Very high         Very high           Higher
## 123            Very high               Low           Higher
## 124            Very high         Very high        Very high
## 125               Higher            Higher           Higher
## 126            Very high               Mid              Mid
## 127               Higher               Mid        Very high
## 128               Higher            Higher              Mid
## 129            Very high               Mid              Mid
## 130             Very Low         Very high        Very high
## 131               Higher               Mid           Higher
## 132               Higher               Low           Higher
## 133               Higher               Mid           Higher
## 134                  Mid               Low              Mid
## 135                  Mid            Higher              Mid
## 136           Don't Know        Don't Know       Don't Know
## 137               Higher               Mid           Higher
## 138               Higher            Higher           Higher
## 139                  Mid         Very high           Higher
## 140                  Mid        Don't Know           Higher
## 141               Higher               Low           Higher
## 142               Higher               Mid        Very high
## 143                  Mid               Mid              Mid
## 144            Very high            Higher              Mid
## 145            Very high               Mid        Very high
## 146               Higher               Low           Higher
## 147            Very high            Higher              Low
## 148            Very high            Higher           Higher
## 149            Very high         Very high           Higher
## 150               Higher            Higher        Very high
## 151               Higher        Don't Know           Higher
## 152               Higher            Higher              Mid
## 153           Don't Know        Don't Know       Don't Know
## 154                  Mid            Higher           Higher
## 155               Higher            Higher           Higher
## 156               Higher        Don't Know           Higher
## 157                 <NA>              <NA>             <NA>
## 158            Very high            Higher              Mid
## 159               Higher            Higher           Higher
## 160               Higher            Higher           Higher
## 161            Very high            Higher              Mid
## 162               Higher            Higher           Higher
## 163               Higher            Higher           Higher
## 164           Don't Know        Don't Know       Don't Know
## 165                  Mid               Mid           Higher
## 166            Very high            Higher              Mid
## 167            Very high            Higher              Mid
## 168               Higher               Mid           Higher
## 169               Higher               Mid           Higher
## 170           Don't Know        Don't Know       Don't Know
## 171           Don't Know        Don't Know       Don't Know
## 172               Higher               Mid              Mid
## 173           Don't Know        Don't Know       Don't Know
## 174               Higher            Higher           Higher
## 175               Higher               Mid           Higher
## 176               Higher            Higher           Higher
## 177                 <NA>              <NA>             <NA>
## 178               Higher            Higher           Higher
## 179               Higher            Higher           Higher
## 180               Higher            Higher           Higher
## 181               Higher            Higher           Higher
## 182               Higher            Higher           Higher
## 183                  Mid            Higher           Higher
## 184               Higher            Higher           Higher
## 185               Higher            Higher           Higher
## 186               Higher            Higher           Higher
## 187               Higher            Higher           Higher
## 188               Higher            Higher           Higher
## 189               Higher            Higher           Higher
## 190                  Mid            Higher           Higher
## 191               Higher            Higher           Higher
## 192               Higher            Higher           Higher
## 193               Higher            Higher           Higher
## 194               Higher            Higher           Higher
## 195               Higher            Higher           Higher
## 196               Higher            Higher           Higher
## 197               Higher            Higher           Higher
## 198               Higher            Higher           Higher
## 199               Higher            Higher           Higher
## 200                  Mid               Mid              Mid
## 201                  Low               Mid              Low
## 202            Very high               Mid              Low
## 203               Higher               Mid           Higher
## 204                  Mid            Higher              Mid
## 205                  Low            Higher              Low
## 206            Very high            Higher              Mid
## 207                  Low            Higher              Low
## 208               Higher         Very high              Mid
## 209            Very high            Higher        Very high
## 210                  Low               Mid              Mid
## 211                  Mid               Low              Low
## 212                  Mid               Low              Mid
## 213                  Mid               Low              Mid
## 214                  Mid               Low              Mid
## 215                  Mid               Low              Mid
## 216                  Mid               Low              Mid
## 217                  Mid            Higher           Higher
## 218                  Mid               Mid              Mid
## 219                  Low               Mid              Low
## 220                  Mid               Mid           Higher
## 221                  Low               Mid              Low
## 222               Higher         Very high              Mid
## 223                  Low            Higher           Higher
## 224             Very Low               Mid              Mid
## 225               Higher               Mid              Mid
## 226               Higher            Higher           Higher
## 227                  Low               Low         Very Low
## 228            Very high            Higher              Mid
## 229               Higher            Higher              Mid
## 230                  Mid               Mid           Higher
## 231                  Mid            Higher              Low
## 232               Higher               Mid           Higher
## 233                  Mid               Mid              Mid
## 234                  Mid               Mid           Higher
## 235                  Mid               Mid           Higher
## 236                  Mid            Higher           Higher
## 237               Higher               Mid        Very high
## 238                  Mid            Higher        Very high
## 239                  Mid               Mid           Higher
## 240                  Mid               Mid              Mid
## 241                  Mid               Mid           Higher
## 242                  Mid               Mid           Higher
## 243                  Mid               Mid              Mid
## 244               Higher               Mid              Mid
## 245                  Mid            Higher              Mid
## 246                  Low               Low              Low
## 247                  Low               Low              Mid
## 248               Higher            Higher        Very high
## 249               Higher            Higher        Very high
## 250                  Mid               Mid           Higher
## 251               Higher               Mid              Mid
## 252               Higher            Higher           Higher
## 253               Higher            Higher           Higher
## 254                  Mid            Higher           Higher
## 255               Higher               Mid              Mid
## 256               Higher            Higher              Mid
## 257                  Mid               Mid              Mid
## 258               Higher            Higher           Higher
## 259                  Mid               Mid              Low
## 260            Very high              <NA>           Higher
## 261                  Mid               Mid              Mid
## 262               Higher            Higher           Higher
## 263                  Mid            Higher              Mid
## 264            Very high            Higher           Higher
## 265            Very high            Higher              Mid
## 266               Higher            Higher           Higher
## 267                  Mid               Mid              Mid
## 268                  Mid            Higher           Higher
## 269               Higher               Mid              Mid
## 270               Higher            Higher              Low
## 271                  Mid        Don't Know       Don't Know
## 272                  Mid            Higher              Mid
## 273                  Mid            Higher           Higher
## 274               Higher               Mid              Mid
## 275               Higher            Higher           Higher
## 276            Very high               Mid           Higher
## 277               Higher            Higher           Higher
## 278               Higher            Higher           Higher
## 279                 <NA>              <NA>             <NA>
## 280                  Mid            Higher              Mid
## 281               Higher            Higher           Higher
## 282                  Mid               Mid              Mid
## 283               Higher            Higher           Higher
## 284                  Mid               Mid             <NA>
## 285                  Mid            Higher           Higher
## 286                  Mid               Mid              Mid
## 287                  Mid               Mid              Mid
## 288               Higher            Higher           Higher
## 289            Very high               Mid              Low
## 290                  Mid               Mid              Mid
## 291                  Low            Higher              Mid
## 292                  Mid               Mid           Higher
## 293               Higher               Mid           Higher
## 294                  Mid               Mid             <NA>
## 295               Higher         Very high           Higher
## 296                  Mid            Higher              Mid
## 297                  Mid               Mid              Mid
## 298                  Mid               Mid              Mid
## 299               Higher            Higher           Higher
## 300                  Mid               Mid           Higher
## 302                 <NA>               Mid              Mid
## 303                 <NA>            Higher              Mid
## 304                 <NA>               Mid              Mid
## 305                 <NA>               Low              Low
## 306                 <NA>            Higher           Higher
## 307                 <NA>               Mid              Mid
## 308                 <NA>               Low              Low
## 309                 <NA>        Don't Know       Don't Know
## 310                 <NA>               Mid              Low
## 311                 <NA>               Low              Mid
## 312                 <NA>               Mid              Mid
## 313                 <NA>               Mid           Higher
## 314                 <NA>               Mid           Higher
## 315                 <NA>        Don't Know       Don't Know
## 316                 <NA>         Very high        Very high
## 317                 <NA>          Very Low         Very Low
## 318                 <NA>            Higher              Mid
## 319                 <NA>          Very Low              Mid
## 320                 <NA>            Higher           Higher
## 321                 <NA>               Mid           Higher
## 322                 <NA>        Don't Know       Don't Know
## 323                 <NA>        Don't Know       Don't Know
## 324                 <NA>               Mid              Mid
## 325                 <NA>               Mid              Mid
## 326                 <NA>               Low              Mid
## 327                 <NA>               Mid              Mid
## 328                 <NA>               Mid              Mid
## 329                 <NA>        Don't Know       Don't Know
## 330                 <NA>        Don't Know       Don't Know
## 331                 <NA>               Low           Higher
## 332                 <NA>          Very Low              Low
## 333                 <NA>            Higher       Don't Know
## 334                 <NA>        Don't Know       Don't Know
## 335                 <NA>               Low         Very Low
## 336                 <NA>               Mid           Higher
## 337                 <NA>               Low              Low
## 338                 <NA>            Higher           Higher
## 339                 <NA>            Higher           Higher
## 340                 <NA>               Low           Higher
## 341                 <NA>               Mid              Mid
## 342                 <NA>               Low              Low
## 343                 <NA>               Low              Low
## 344                 <NA>               Mid              Mid
## 345                 <NA>         Very high              Mid
## 346                 <NA>               Low              Low
## 347                 <NA>            Higher           Higher
## 348                 <NA>               Low              Mid
## 349                 <NA>            Higher           Higher
## 350                 <NA>               Low              Low
## 351                 <NA>            Higher              Mid
## 352           Don't Know        Don't Know       Don't Know
## 353                  Mid               Low              Low
## 354                  Mid               Low              Low
## 355                  Mid               Mid              Mid
## 356                  Low               Mid              Mid
## 357                  Mid               Mid              Mid
## 358                  Mid               Mid              Mid
## 359                  Mid               Mid              Mid
## 360                  Mid               Mid              Mid
## 361                  Mid               Mid              Mid
## 362                  Mid               Mid              Mid
## 363                  Mid               Mid              Mid
## 364                  Mid               Mid              Mid
## 365                  Mid               Mid              Mid
## 366                  Mid               Mid              Mid
## 367                  Mid               Mid              Mid
## 368                  Low               Low              Low
## 369                  Low               Low              Low
## 370                  Mid               Mid              Mid
## 371                  Low               Low              Low
## 372                  Mid               Mid           Higher
## 373                  Mid               Mid              Mid
## 374               Higher            Higher           Higher
## 375                  Mid               Mid              Mid
## 376                  Mid               Mid              Mid
## 377                  Mid               Mid              Mid
## 378                  Mid               Mid              Mid
## 379                  Mid               Mid              Mid
## 380                  Mid               Mid              Mid
## 381                  Mid               Mid              Mid
## 382                  Mid               Mid              Mid
## 383                  Mid               Mid              Mid
## 384                  Mid               Mid              Mid
## 385                  Mid               Mid              Mid
## 386                  Mid               Mid              Mid
## 387                  Mid               Mid              Mid
## 388                  Mid               Mid              Mid
## 389                  Mid               Mid              Mid
## 390                  Low               Mid              Low
## 391                  Mid               Mid              Mid
## 392                  Mid               Mid              Mid
## 393                  Mid               Mid              Mid
## 394                  Mid               Mid              Mid
## 395                  Mid               Mid              Mid
## 396                  Mid               Mid              Mid
## 397                  Mid               Mid              Mid
## 398                  Mid               Mid              Mid
## 399                  Mid               Mid              Mid
## 400                  Mid               Mid              Mid
## 401                  Mid               Mid              Mid
## 402           Don't Know        Don't Know       Don't Know
## 403                  Low               Low              Low
## 404           Don't Know        Don't Know       Don't Know
## 405                  Mid              <NA>             <NA>
## 406                  Mid               Mid              Mid
## 407                  Mid               Mid              Mid
## 408                  Low               Low              Low
## 409                 <NA>               Mid             <NA>
## 410                  Mid               Mid              Mid
## 411                  Mid               Mid              Mid
## 412                  Mid               Mid              Mid
## 413                  Mid               Mid              Mid
## 414                 <NA>              <NA>             <NA>
## 415           Don't Know        Don't Know       Don't Know
## 416                  Mid               Mid              Mid
## 417                 <NA>              <NA>             <NA>
## 418                  Mid               Mid              Mid
## 419                  Mid               Mid              Mid
## 420                 <NA>              <NA>             <NA>
## 421                  Mid               Mid              Mid
## 422                 <NA>              <NA>             <NA>
## 423                 <NA>              <NA>             <NA>
## 424           Don't Know        Don't Know       Don't Know
## 425                  Mid               Low              Mid
## 426                  Mid               Low              Mid
## 427                  Mid               Mid              Mid
## 428           Don't Know              <NA>             <NA>
## 429                 <NA>              <NA>             <NA>
## 430                  Mid               Mid              Mid
## 431                  Mid               Mid              Mid
## 432                 <NA>              <NA>             <NA>
## 433                  Mid               Mid              Mid
## 434                 <NA>              <NA>             <NA>
## 435                 <NA>              <NA>             <NA>
## 436                 <NA>              <NA>             <NA>
## 437                  Mid               Mid              Mid
## 438               Higher            Higher           Higher
## 439                  Mid               Mid              Mid
## 440                  Mid               Mid              Low
## 441                  Mid               Mid              Mid
## 442                 <NA>              <NA>             <NA>
## 443                  Mid               Mid              Low
## 444                  Mid               Mid              Mid
## 445                  Mid               Mid              Mid
## 446                  Low               Mid              Mid
## 447                  Mid               Low              Low
## 448                  Low               Low              Mid
## 449                 <NA>              <NA>             <NA>
## 450                 <NA>              <NA>             <NA>
## 451                 <NA>              <NA>             <NA>
## 452                  Low               Mid              Low
## 453               Higher               Mid           Higher
## 454             Very Low          Very Low         Very Low
## 455                  Mid            Higher              Mid
## 456                  Mid               Mid              Mid
## 457           Don't Know        Don't Know       Don't Know
## 458                  Mid               Mid              Mid
## 459                  Mid               Mid              Mid
## 460                 <NA>              <NA>             <NA>
## 461                 <NA>              <NA>             <NA>
## 462               Higher            Higher              Mid
## 463           Don't Know        Don't Know       Don't Know
## 464             Very Low          Very Low              Mid
## 465                  Low               Low           Higher
## 466            Very high         Very high       Don't Know
## 467               Higher            Higher           Higher
## 468           Don't Know        Don't Know        Very high
## 469               Higher               Mid              Mid
## 470                  Low               Mid        Very high
## 471                  Mid            Higher              Mid
## 472               Higher            Higher           Higher
## 473           Don't Know        Don't Know       Don't Know
## 474           Don't Know        Don't Know       Don't Know
## 475                  Mid               Mid       Don't Know
## 476           Don't Know        Don't Know       Don't Know
## 477           Don't Know        Don't Know       Don't Know
## 478                  Low               Low         Very Low
## 479           Don't Know        Don't Know       Don't Know
## 480           Don't Know        Don't Know       Don't Know
## 481           Don't Know        Don't Know         Very Low
## 482             Very Low          Very Low         Very Low
## 483                  Mid               Mid              Mid
## 484           Don't Know        Don't Know       Don't Know
## 485                 <NA>              <NA>             <NA>
## 486               Higher            Higher           Higher
## 487           Don't Know        Don't Know       Don't Know
## 488           Don't Know        Don't Know       Don't Know
## 489                  Mid        Don't Know              Mid
## 490                  Mid          Very Low              Low
## 491                 <NA>              <NA>             <NA>
## 492                 <NA>              <NA>             <NA>
## 493             Very Low          Very Low         Very Low
## 494               Higher         Very high        Very high
## 495                  Low               Mid              Low
## 496               Higher            Higher           Higher
##      VDC..Citizen.s.Participaton District.Level.Offices..Accountibility
## 1                            Low                                    Low
## 2                         Higher                                    Mid
## 3                      Very high                                    Low
## 4                            Mid                               Very Low
## 5                         Higher                                   <NA>
## 6                     Don't Know                             Don't Know
## 7                         Higher                                 Higher
## 8                            Mid                                    Mid
## 9                         Higher                                 Higher
## 10                        Higher                                 Higher
## 11                        Higher                              Very high
## 12                          <NA>                                   <NA>
## 13                        Higher                                    Mid
## 14                        Higher                                    Mid
## 15                           Mid                                    Low
## 16                           Low                                   <NA>
## 17                           Low                                    Low
## 18                          <NA>                                   <NA>
## 19                        Higher                                    Mid
## 20                          <NA>                               Very Low
## 21                        Higher                                 Higher
## 22                      Very Low                                   <NA>
## 23                           Low                                    Low
## 24                           Low                                    Mid
## 25                           Mid                                    Mid
## 26                    Don't Know                             Don't Know
## 27                           Low                                 Higher
## 28                        Higher                             Don't Know
## 29                    Don't Know                             Don't Know
## 30                           Mid                                    Mid
## 31                           Mid                                    Mid
## 32                    Don't Know                             Don't Know
## 33                        Higher                                    Mid
## 34                        Higher                                 Higher
## 35                           Mid                                    Mid
## 36                        Higher                                    Low
## 37                           Mid                                    Mid
## 38                           Mid                                 Higher
## 39                          <NA>                                    Low
## 40                           Mid                                    Mid
## 41                           Low                                 Higher
## 42                           Mid                                 Higher
## 43                           Mid                                    Mid
## 44                           Mid                                    Low
## 45                        Higher                                    Mid
## 46                      Very Low                                    Low
## 47                           Mid                                    Mid
## 48                           Mid                                    Mid
## 49                           Low                                    Mid
## 50                          <NA>                             Don't Know
## 51                    Don't Know                             Don't Know
## 52                    Don't Know                             Don't Know
## 53                        Higher                                    Mid
## 54                           Mid                                    Mid
## 55                        Higher                                 Higher
## 56                           Mid                               Very Low
## 57                    Don't Know                             Don't Know
## 58                    Don't Know                               Very Low
## 59                    Don't Know                             Don't Know
## 60                           Mid                             Don't Know
## 61                           Mid                                 Higher
## 62                           Mid                                    Mid
## 63                           Mid                                    Mid
## 64                           Low                                 Higher
## 65                           Mid                                 Higher
## 66                           Mid                                 Higher
## 67                           Mid                                 Higher
## 68                           Mid                                 Higher
## 69                           Mid                                    Mid
## 70                      Very Low                                    Low
## 71                           Low                                    Mid
## 72                          <NA>                                    Mid
## 73                        Higher                                 Higher
## 74                           Mid                                 Higher
## 75                           Mid                                    Mid
## 76                     Very high                                 Higher
## 77                        Higher                                 Higher
## 78                           Mid                                    Mid
## 79                           Mid                                 Higher
## 80                        Higher                                 Higher
## 81                           Low                                 Higher
## 82                           Mid                                    Mid
## 83                           Mid                                 Higher
## 84                           Low                                 Higher
## 85                           Mid                                    Mid
## 86                    Don't Know                             Don't Know
## 87                        Higher                                    Mid
## 88                           Low                              Very high
## 89                           Mid                                 Higher
## 90                           Mid                                 Higher
## 91                           Low                                 Higher
## 92                           Mid                              Very high
## 93                           Mid                                 Higher
## 94                        Higher                              Very high
## 95                           Mid                                 Higher
## 96                           Mid                                 Higher
## 97                           Mid                                 Higher
## 98                           Mid                                 Higher
## 99                           Mid                                 Higher
## 100                          Mid                                 Higher
## 101                          Low                              Very high
## 102                          Mid                                 Higher
## 103                    Very high                                 Higher
## 104                          Mid                                    Low
## 105                       Higher                                    Mid
## 106                          Low                                    Mid
## 107                          Mid                                 Higher
## 108                          Mid                                    Low
## 109                    Very high                                    Mid
## 110                       Higher                                    Mid
## 111                       Higher                                    Low
## 112                       Higher                                 Higher
## 113                       Higher                              Very high
## 114                    Very high                                 Higher
## 115                       Higher                              Very high
## 116                       Higher                             Don't Know
## 117                          Mid                              Very high
## 118                       Higher                             Don't Know
## 119                    Very high                                    Mid
## 120                          Low                                   <NA>
## 121                          Mid                                    Mid
## 122                       Higher                              Very high
## 123                       Higher                                 Higher
## 124                       Higher                                 Higher
## 125                    Very high                              Very high
## 126                          Mid                                 Higher
## 127                    Very high                              Very high
## 128                    Very high                              Very high
## 129                          Low                                 Higher
## 130                          Low                                    Mid
## 131                          Mid                              Very high
## 132                       Higher                              Very high
## 133                          Low                                 Higher
## 134                          Mid                                 Higher
## 135                          Mid                                 Higher
## 136                   Don't Know                             Don't Know
## 137                          Mid                                    Mid
## 138                       Higher                                    Low
## 139                    Very high                              Very high
## 140                          Low                             Don't Know
## 141                          Mid                                    Mid
## 142                          Mid                                    Mid
## 143                       Higher                                 Higher
## 144                          Mid                              Very high
## 145                          Mid                                    Mid
## 146                          Mid                              Very high
## 147                       Higher                                 Higher
## 148                       Higher                              Very high
## 149                    Very high                                 Higher
## 150                       Higher                              Very high
## 151                       Higher                                 Higher
## 152                       Higher                                 Higher
## 153                   Don't Know                             Don't Know
## 154                    Very high                             Don't Know
## 155                       Higher                                    Mid
## 156                       Higher                                 Higher
## 157                         <NA>                                    Mid
## 158                       Higher                                 Higher
## 159                       Higher                             Don't Know
## 160                       Higher                                 Higher
## 161                       Higher                                 Higher
## 162                    Very high                                    Low
## 163                    Very high                             Don't Know
## 164                   Don't Know                                 Higher
## 165                       Higher                                 Higher
## 166                       Higher                                 Higher
## 167                       Higher                                 Higher
## 168                    Very high                                    Mid
## 169                    Very high                                    Mid
## 170                   Don't Know                             Don't Know
## 171                   Don't Know                             Don't Know
## 172                       Higher                             Don't Know
## 173                   Don't Know                             Don't Know
## 174                       Higher                                    Mid
## 175                    Very high                                    Mid
## 176                    Very high                                    Mid
## 177                         <NA>                                    Mid
## 178                    Very high                                    Low
## 179                    Very high                                    Low
## 180                    Very high                                    Low
## 181                    Very high                                    Mid
## 182                    Very high                                 Higher
## 183                    Very high                             Don't Know
## 184                    Very high                                    Mid
## 185                    Very high                                    Mid
## 186                    Very high                                    Mid
## 187                    Very high                                    Mid
## 188                    Very high                                    Mid
## 189                       Higher                                    Mid
## 190                       Higher                              Very high
## 191                    Very high                                    Mid
## 192                       Higher                                    Mid
## 193                       Higher                                    Mid
## 194                       Higher                                 Higher
## 195                       Higher                              Very high
## 196                       Higher                                    Mid
## 197                       Higher                                    Mid
## 198                       Higher                                    Low
## 199                       Higher                                    Mid
## 200                          Mid                                 Higher
## 201                       Higher                                    Mid
## 202                       Higher                                    Mid
## 203                    Very high                                    Low
## 204                    Very high                                    Mid
## 205                       Higher                                    Mid
## 206                          Low                                 Higher
## 207                          Mid                                 Higher
## 208                       Higher                                 Higher
## 209                          Mid                                 Higher
## 210                          Mid                              Very high
## 211                          Mid                                 Higher
## 212                          Low                                    Mid
## 213                          Low                                    Mid
## 214                          Low                                    Mid
## 215                          Low                                    Mid
## 216                          Mid                                    Mid
## 217                          Mid                                    Low
## 218                          Mid                                 Higher
## 219                          Mid                                 Higher
## 220                          Mid                                    Mid
## 221                       Higher                                    Mid
## 222                          Low                                    Low
## 223                          Mid                                 Higher
## 224                          Mid                                    Mid
## 225                    Very high                                    Mid
## 226                       Higher                                    Low
## 227                       Higher                                    Mid
## 228                       Higher                                 Higher
## 229                       Higher                                 Higher
## 230                       Higher                                    Mid
## 231                       Higher                                    Mid
## 232                       Higher                                    Low
## 233                          Low                                    Low
## 234                          Mid                                    Low
## 235                          Mid                                    Low
## 236                       Higher                                    Mid
## 237                          Low                              Very high
## 238                    Very high                              Very high
## 239                          Mid                                    Low
## 240                          Mid                                    Mid
## 241                          Mid                                    Low
## 242                          Mid                                    Low
## 243                          Low                                    Low
## 244                          Low                                    Low
## 245                       Higher                                 Higher
## 246                          Low                                    Low
## 247                       Higher                                    Mid
## 248                          Mid                                    Mid
## 249                    Very high                                    Mid
## 250                       Higher                              Very high
## 251                       Higher                                 Higher
## 252                          Mid                                 Higher
## 253                          Mid                                 Higher
## 254                          Mid                                    Mid
## 255                         <NA>                                 Higher
## 256                          Mid                                 Higher
## 257                          Low                                 Higher
## 258                          Low                                    Mid
## 259                          Low                                 Higher
## 260                       Higher                                 Higher
## 261                          Mid                              Very high
## 262                          Mid                                    Mid
## 263                       Higher                                 Higher
## 264                          Mid                                 Higher
## 265                          Low                                 Higher
## 266                       Higher                                 Higher
## 267                          Mid                              Very high
## 268                          Mid                                 Higher
## 269                       Higher                                 Higher
## 270                          Low                                    Low
## 271                          Mid                                 Higher
## 272                       Higher                                 Higher
## 273                       Higher                                 Higher
## 274                          Low                                    Low
## 275                          Low                                 Higher
## 276                       Higher                                 Higher
## 277                       Higher                                 Higher
## 278                          Mid                                 Higher
## 279                         <NA>                                   <NA>
## 280                       Higher                                    Mid
## 281                       Higher                                    Mid
## 282                          Mid                                    Mid
## 283                          Mid                                 Higher
## 284                         <NA>                                 Higher
## 285                          Mid                                    Mid
## 286                          Mid                                 Higher
## 287                          Mid                                    Mid
## 288                          Mid                                 Higher
## 289                          Mid                                    Mid
## 290                          Low                                    Mid
## 291                          Mid                                    Low
## 292                          Mid                                    Mid
## 293                          Low                                 Higher
## 294                       Higher                                    Mid
## 295                       Higher                              Very high
## 296                          Mid                                    Mid
## 297                          Mid                                    Mid
## 298                          Mid                                    Low
## 299                          Low                                 Higher
## 300                          Mid                                    Mid
## 302                          Mid                                    Mid
## 303                          Mid                                 Higher
## 304                          Mid                                    Mid
## 305                          Mid                                    Low
## 306                          Mid                                    Mid
## 307                          Mid                                    Mid
## 308                          Mid                                    Mid
## 309                   Don't Know                             Don't Know
## 310                          Mid                                    Mid
## 311                          Mid                                    Low
## 312                          Mid                                    Mid
## 313                          Mid                                    Mid
## 314                       Higher                                 Higher
## 315                   Don't Know                             Don't Know
## 316                          Low                              Very high
## 317                     Very Low                               Very Low
## 318                       Higher                                 Higher
## 319                          Mid                                 Higher
## 320                       Higher                                 Higher
## 321                          Mid                                    Mid
## 322                   Don't Know                             Don't Know
## 323                   Don't Know                             Don't Know
## 324                          Low                                    Mid
## 325                          Mid                                    Mid
## 326                          Mid                                    Mid
## 327                          Mid                                    Mid
## 328                          Mid                                 Higher
## 329                   Don't Know                                 Higher
## 330                   Don't Know                              Very high
## 331                          Mid                             Don't Know
## 332                          Mid                             Don't Know
## 333                          Low                                    Low
## 334                          Low                             Don't Know
## 335                          Low                                 Higher
## 336                          Mid                                    Low
## 337                          Low                             Don't Know
## 338                          Mid                               Very Low
## 339                       Higher                                    Mid
## 340                          Mid                                 Higher
## 341                          Low                                 Higher
## 342                          Low                                    Low
## 343                          Mid                                    Low
## 344                       Higher                                 Higher
## 345                       Higher                                 Higher
## 346                          Low                                    Mid
## 347                       Higher                                    Mid
## 348                          Mid                                    Mid
## 349                       Higher                              Very high
## 350                     Very Low                                    Low
## 351                       Higher                                 Higher
## 352                   Don't Know                             Don't Know
## 353                          Mid                                    Mid
## 354                   Don't Know                             Don't Know
## 355                          Mid                                    Low
## 356                          Mid                             Don't Know
## 357                          Mid                                    Mid
## 358                          Mid                             Don't Know
## 359                          Mid                                    Low
## 360                          Mid                                 Higher
## 361                          Mid                                    Mid
## 362                          Mid                                    Low
## 363                          Mid                                    Low
## 364                          Mid                                    Low
## 365                          Mid                             Don't Know
## 366                          Mid                                    Low
## 367                          Mid                                    Low
## 368                          Low                             Don't Know
## 369                          Low                                    Mid
## 370                          Mid                                    Low
## 371                          Low                                    Low
## 372                       Higher                                    Mid
## 373                          Mid                                    Mid
## 374                    Very high                                    Mid
## 375                       Higher                                    Mid
## 376                          Mid                                    Mid
## 377                          Mid                                    Mid
## 378                          Mid                                    Low
## 379                          Mid                             Don't Know
## 380                          Mid                             Don't Know
## 381                          Mid                             Don't Know
## 382                          Mid                             Don't Know
## 383                          Mid                             Don't Know
## 384                          Mid                             Don't Know
## 385                          Mid                             Don't Know
## 386                          Mid                             Don't Know
## 387                          Mid                                    Low
## 388                          Mid                             Don't Know
## 389                          Mid                             Don't Know
## 390                          Mid                                    Mid
## 391                          Mid                                    Low
## 392                          Mid                             Don't Know
## 393                          Mid                             Don't Know
## 394                          Mid                             Don't Know
## 395                          Mid                                    Low
## 396                          Mid                             Don't Know
## 397                          Mid                                    Low
## 398                          Mid                                    Low
## 399                          Mid                             Don't Know
## 400                          Mid                             Don't Know
## 401                          Mid                                    Low
## 402                   Don't Know                             Don't Know
## 403                          Low                                    Mid
## 404                   Don't Know                             Don't Know
## 405                         <NA>                                    Mid
## 406                          Mid                             Don't Know
## 407                          Mid                                    Mid
## 408                          Low                                    Low
## 409                         <NA>                                   <NA>
## 410                          Mid                                    Mid
## 411                          Mid                                    Low
## 412                          Mid                                    Mid
## 413                          Mid                                    Mid
## 414                         <NA>                                   <NA>
## 415                   Don't Know                             Don't Know
## 416                          Mid                                    Mid
## 417                         <NA>                                   <NA>
## 418                          Mid                             Don't Know
## 419                          Mid                                    Low
## 420                         <NA>                                   <NA>
## 421                          Mid                                    Low
## 422                         <NA>                                   <NA>
## 423                         <NA>                                   <NA>
## 424                   Don't Know                                    Mid
## 425                          Mid                                    Mid
## 426                          Low                                    Mid
## 427                          Mid                                    Mid
## 428                         <NA>                             Don't Know
## 429                         <NA>                                   <NA>
## 430                          Mid                                    Mid
## 431                          Mid                                    Mid
## 432                         <NA>                                   <NA>
## 433                          Mid                                    Mid
## 434                         <NA>                                   <NA>
## 435                         <NA>                                   <NA>
## 436                         <NA>                                   <NA>
## 437                          Mid                                    Mid
## 438                       Higher                                    Mid
## 439                          Mid                                    Mid
## 440                          Low                                    Mid
## 441                          Mid                                    Mid
## 442                         <NA>                                   <NA>
## 443                          Mid                                    Low
## 444                          Mid                                    Mid
## 445                          Mid                                    Mid
## 446                          Mid                                    Mid
## 447                          Mid                                    Mid
## 448                          Mid                                    Low
## 449                         <NA>                                   <NA>
## 450                         <NA>                                   <NA>
## 451                         <NA>                                   <NA>
## 452                          Mid                                    Low
## 453                       Higher                                 Higher
## 454                     Very Low                                    Low
## 455                          Mid                                    Low
## 456                          Mid                                    Mid
## 457                   Don't Know                             Don't Know
## 458                       Higher                                    Mid
## 459                       Higher                                    Mid
## 460                     Very Low                               Very Low
## 461                       Higher                                   <NA>
## 462                          Mid                                 Higher
## 463                   Don't Know                             Don't Know
## 464                          Low                                    Low
## 465                    Very high                                 Higher
## 466                   Don't Know                               Very Low
## 467                       Higher                              Very high
## 468                       Higher                              Very high
## 469                          Mid                                    Mid
## 470                          Mid                                    Mid
## 471                          Low                               Very Low
## 472                       Higher                                    Mid
## 473                   Don't Know                             Don't Know
## 474                   Don't Know                             Don't Know
## 475                       Higher                             Don't Know
## 476                   Don't Know                             Don't Know
## 477                          Mid                             Don't Know
## 478                   Don't Know                                    Low
## 479                   Don't Know                             Don't Know
## 480                   Don't Know                             Don't Know
## 481                   Don't Know                             Don't Know
## 482                     Very Low                               Very Low
## 483                          Mid                                    Mid
## 484                   Don't Know                             Don't Know
## 485                         <NA>                                   <NA>
## 486                       Higher                                    Mid
## 487                   Don't Know                             Don't Know
## 488                   Don't Know                             Don't Know
## 489                       Higher                                    Mid
## 490                       Higher                                    Mid
## 491                         <NA>                              Very high
## 492                         <NA>                                   <NA>
## 493                     Very Low                               Very Low
## 494                          Mid                                    Mid
## 495                          Mid                              Very high
## 496                       Higher                                 Higher
##      District.Level.Offices..Transparency
## 1                                     Low
## 2                                     Mid
## 3                                     Mid
## 4                                     Low
## 5                               Very high
## 6                                    <NA>
## 7                                  Higher
## 8                                     Mid
## 9                                  Higher
## 10                                 Higher
## 11                              Very high
## 12                                   <NA>
## 13                                 Higher
## 14                                    Low
## 15                                    Low
## 16                                    Mid
## 17                             Don't Know
## 18                                   <NA>
## 19                                    Mid
## 20                                    Mid
## 21                                    Mid
## 22                                    Low
## 23                                    Low
## 24                                    Mid
## 25                                    Mid
## 26                             Don't Know
## 27                              Very high
## 28                                 Higher
## 29                             Don't Know
## 30                                    Mid
## 31                                    Mid
## 32                             Don't Know
## 33                                 Higher
## 34                                 Higher
## 35                                 Higher
## 36                                    Mid
## 37                                    Mid
## 38                                 Higher
## 39                                   <NA>
## 40                                    Mid
## 41                                 Higher
## 42                                 Higher
## 43                                    Mid
## 44                                    Mid
## 45                                 Higher
## 46                                    Low
## 47                                    Mid
## 48                                   <NA>
## 49                                    Mid
## 50                                    Mid
## 51                             Don't Know
## 52                             Don't Know
## 53                                    Mid
## 54                                    Mid
## 55                                 Higher
## 56                               Very Low
## 57                             Don't Know
## 58                               Very Low
## 59                             Don't Know
## 60                             Don't Know
## 61                                    Mid
## 62                                    Mid
## 63                                    Mid
## 64                                    Mid
## 65                                    Mid
## 66                                    Mid
## 67                                    Mid
## 68                                    Mid
## 69                                    Mid
## 70                               Very Low
## 71                                    Low
## 72                                    Low
## 73                                 Higher
## 74                                    Mid
## 75                                    Mid
## 76                                    Mid
## 77                                    Mid
## 78                                    Mid
## 79                                    Mid
## 80                                    Low
## 81                                    Low
## 82                                    Mid
## 83                                    Mid
## 84                                    Mid
## 85                                    Mid
## 86                             Don't Know
## 87                                 Higher
## 88                                 Higher
## 89                                 Higher
## 90                                 Higher
## 91                                 Higher
## 92                                    Mid
## 93                                    Mid
## 94                                 Higher
## 95                                 Higher
## 96                                    Mid
## 97                                    Mid
## 98                                    Mid
## 99                                    Mid
## 100                                Higher
## 101                                   Mid
## 102                                   Mid
## 103                                Higher
## 104                                   Low
## 105                                   Mid
## 106                                Higher
## 107                                Higher
## 108                                Higher
## 109                                Higher
## 110                                Higher
## 111                                Higher
## 112                                Higher
## 113                                Higher
## 114                                Higher
## 115                                Higher
## 116                            Don't Know
## 117                                   Mid
## 118                            Don't Know
## 119                                Higher
## 120                                Higher
## 121                                Higher
## 122                                   Mid
## 123                                Higher
## 124                            Don't Know
## 125                                Higher
## 126                             Very high
## 127                                Higher
## 128                                   Mid
## 129                             Very high
## 130                                   Mid
## 131                             Very high
## 132                                Higher
## 133                             Very high
## 134                                Higher
## 135                                   Mid
## 136                            Don't Know
## 137                                   Mid
## 138                                   Mid
## 139                                Higher
## 140                            Don't Know
## 141                                Higher
## 142                             Very high
## 143                                Higher
## 144                             Very high
## 145                             Very high
## 146                                Higher
## 147                                Higher
## 148                                Higher
## 149                                Higher
## 150                                Higher
## 151                                Higher
## 152                                  <NA>
## 153                            Don't Know
## 154                            Don't Know
## 155                                Higher
## 156                                Higher
## 157                                   Mid
## 158                            Don't Know
## 159                            Don't Know
## 160                            Don't Know
## 161                            Don't Know
## 162                                   Mid
## 163                            Don't Know
## 164                                Higher
## 165                            Don't Know
## 166                            Don't Know
## 167                            Don't Know
## 168                                   Mid
## 169                                   Mid
## 170                            Don't Know
## 171                            Don't Know
## 172                            Don't Know
## 173                            Don't Know
## 174                                   Mid
## 175                                Higher
## 176                                   Mid
## 177                                   Low
## 178                                   Low
## 179                                  <NA>
## 180                                   Low
## 181                                   Mid
## 182                                   Mid
## 183                            Don't Know
## 184                                   Mid
## 185                                Higher
## 186                                   Mid
## 187                                   Mid
## 188                            Don't Know
## 189                                   Mid
## 190                             Very high
## 191                                   Mid
## 192                                Higher
## 193                                   Mid
## 194                                   Mid
## 195                             Very high
## 196                                   Low
## 197                                   Mid
## 198                                Higher
## 199                                Higher
## 200                            Don't Know
## 201                                   Low
## 202                                Higher
## 203                                   Low
## 204                                Higher
## 205                                Higher
## 206                                   Mid
## 207                                   Low
## 208                                Higher
## 209                             Very high
## 210                                   Mid
## 211                                   Mid
## 212                                   Low
## 213                                   Low
## 214                                   Low
## 215                                   Low
## 216                                   Low
## 217                                   Mid
## 218                             Very high
## 219                                   Mid
## 220                                Higher
## 221                                Higher
## 222                                   Mid
## 223                                   Low
## 224                             Very high
## 225                                   Mid
## 226                                   Low
## 227                                Higher
## 228                                   Mid
## 229                                   Low
## 230                                   Mid
## 231                                   Mid
## 232                                Higher
## 233                                   Mid
## 234                                   Mid
## 235                                   Mid
## 236                                Higher
## 237                                   Mid
## 238                                   Mid
## 239                                   Mid
## 240                                   Mid
## 241                                   Mid
## 242                                   Mid
## 243                                   Mid
## 244                                   Mid
## 245                                   Mid
## 246                                   Mid
## 247                                   Mid
## 248                                Higher
## 249                                   Mid
## 250                             Very high
## 251                                Higher
## 252                                Higher
## 253                                Higher
## 254                                Higher
## 255                                   Mid
## 256                                   Mid
## 257                                   Mid
## 258                                Higher
## 259                                   Low
## 260                                Higher
## 261                                Higher
## 262                                Higher
## 263                                   Mid
## 264                                Higher
## 265                                   Mid
## 266                                Higher
## 267                             Very high
## 268                                   Mid
## 269                                Higher
## 270                                   Low
## 271                                Higher
## 272                                Higher
## 273                                   Mid
## 274                                   Low
## 275                                Higher
## 276                                Higher
## 277                                Higher
## 278                                   Mid
## 279                                  <NA>
## 280                                   Mid
## 281                                   Mid
## 282                                   Mid
## 283                                Higher
## 284                                Higher
## 285                                Higher
## 286                                Higher
## 287                                   Mid
## 288                                Higher
## 289                                Higher
## 290                                   Mid
## 291                                   Low
## 292                                   Mid
## 293                                Higher
## 294                                   Mid
## 295                                   Mid
## 296                                Higher
## 297                                   Mid
## 298                                   Mid
## 299                                Higher
## 300                                   Low
## 302                                   Mid
## 303                                Higher
## 304                                   Mid
## 305                                   Low
## 306                                   Mid
## 307                                   Mid
## 308                                   Low
## 309                            Don't Know
## 310                                   Mid
## 311                                   Low
## 312                                   Mid
## 313                                   Mid
## 314                                   Mid
## 315                            Don't Know
## 316                             Very high
## 317                              Very Low
## 318                                Higher
## 319                              Very Low
## 320                                Higher
## 321                                Higher
## 322                            Don't Know
## 323                            Don't Know
## 324                                   Mid
## 325                                   Mid
## 326                                   Low
## 327                                   Mid
## 328                                   Mid
## 329                                   Mid
## 330                                   Mid
## 331                            Don't Know
## 332                             Very high
## 333                                   Mid
## 334                                Higher
## 335                                Higher
## 336                                   Low
## 337                            Don't Know
## 338                              Very Low
## 339                                Higher
## 340                                   Mid
## 341                                   Mid
## 342                                   Low
## 343                                   Low
## 344                                   Mid
## 345                             Very high
## 346                                   Mid
## 347                                Higher
## 348                                   Low
## 349                                Higher
## 350                                   Low
## 351                                Higher
## 352                            Don't Know
## 353                                   Mid
## 354                            Don't Know
## 355                                   Low
## 356                            Don't Know
## 357                                   Mid
## 358                            Don't Know
## 359                                   Low
## 360                                Higher
## 361                                   Mid
## 362                                   Mid
## 363                                   Mid
## 364                                   Low
## 365                            Don't Know
## 366                                   Low
## 367                                   Low
## 368                            Don't Know
## 369                                   Mid
## 370                                   Low
## 371                                   Low
## 372                                   Mid
## 373                                   Mid
## 374                                   Low
## 375                                Higher
## 376                                   Mid
## 377                                   Mid
## 378                                   Low
## 379                            Don't Know
## 380                            Don't Know
## 381                            Don't Know
## 382                            Don't Know
## 383                            Don't Know
## 384                            Don't Know
## 385                            Don't Know
## 386                            Don't Know
## 387                                   Low
## 388                            Don't Know
## 389                            Don't Know
## 390                                   Low
## 391                                   Low
## 392                            Don't Know
## 393                            Don't Know
## 394                            Don't Know
## 395                                   Low
## 396                            Don't Know
## 397                                   Low
## 398                                   Low
## 399                            Don't Know
## 400                            Don't Know
## 401                                   Low
## 402                            Don't Know
## 403                                   Mid
## 404                            Don't Know
## 405                                  <NA>
## 406                            Don't Know
## 407                                   Mid
## 408                                   Low
## 409                                   Mid
## 410                                   Mid
## 411                                   Low
## 412                                   Mid
## 413                                   Mid
## 414                                  <NA>
## 415                            Don't Know
## 416                                   Mid
## 417                                  <NA>
## 418                            Don't Know
## 419                                   Low
## 420                                  <NA>
## 421                                   Low
## 422                                  <NA>
## 423                                  <NA>
## 424                                   Mid
## 425                                   Low
## 426                                   Low
## 427                                   Mid
## 428                                  <NA>
## 429                                  <NA>
## 430                                   Mid
## 431                                   Mid
## 432                                  <NA>
## 433                                   Mid
## 434                                  <NA>
## 435                                  <NA>
## 436                                  <NA>
## 437                                   Mid
## 438                                   Mid
## 439                                   Mid
## 440                                   Mid
## 441                                   Mid
## 442                                  <NA>
## 443                                   Mid
## 444                                   Mid
## 445                                   Mid
## 446                                   Low
## 447                                   Low
## 448                                   Mid
## 449                                  <NA>
## 450                                  <NA>
## 451                                  <NA>
## 452                                   Low
## 453                                   Mid
## 454                                   Low
## 455                                   Low
## 456                                   Mid
## 457                            Don't Know
## 458                                   Mid
## 459                                   Low
## 460                                  <NA>
## 461                                  <NA>
## 462                                Higher
## 463                            Don't Know
## 464                                   Low
## 465                                Higher
## 466                              Very Low
## 467                             Very high
## 468                                Higher
## 469                                   Mid
## 470                                   Low
## 471                             Very high
## 472                                   Mid
## 473                            Don't Know
## 474                            Don't Know
## 475                            Don't Know
## 476                                  <NA>
## 477                            Don't Know
## 478                                   Low
## 479                            Don't Know
## 480                            Don't Know
## 481                            Don't Know
## 482                              Very Low
## 483                                   Mid
## 484                            Don't Know
## 485                                  <NA>
## 486                                Higher
## 487                            Don't Know
## 488                            Don't Know
## 489                            Don't Know
## 490                                   Mid
## 491                             Very high
## 492                                  <NA>
## 493                              Very Low
## 494                                Higher
## 495                                   Low
## 496                                Higher
##      District.Level.Offices..Rule.of.Law
## 1                                    Low
## 2                                    Mid
## 3                                    Mid
## 4                                 Higher
## 5                              Very high
## 6                             Don't Know
## 7                              Very high
## 8                                    Mid
## 9                                 Higher
## 10                                Higher
## 11                             Very high
## 12                                  <NA>
## 13                             Very high
## 14                                   Mid
## 15                                   Low
## 16                                   Mid
## 17                             Very high
## 18                                  <NA>
## 19                                   Mid
## 20                              Very Low
## 21                                Higher
## 22                                   Mid
## 23                                   Low
## 24                                   Mid
## 25                                   Mid
## 26                            Don't Know
## 27                                   Mid
## 28                             Very high
## 29                            Don't Know
## 30                                   Mid
## 31                                Higher
## 32                            Don't Know
## 33                                   Mid
## 34                                Higher
## 35                                Higher
## 36                                Higher
## 37                                   Mid
## 38                                Higher
## 39                                  <NA>
## 40                                   Mid
## 41                                Higher
## 42                                Higher
## 43                                   Mid
## 44                                   Mid
## 45                                   Mid
## 46                                Higher
## 47                                Higher
## 48                                   Mid
## 49                                Higher
## 50                            Don't Know
## 51                            Don't Know
## 52                            Don't Know
## 53                                   Mid
## 54                                   Mid
## 55                                   Mid
## 56                                   Mid
## 57                            Don't Know
## 58                            Don't Know
## 59                            Don't Know
## 60                            Don't Know
## 61                             Very high
## 62                                Higher
## 63                                Higher
## 64                                   Mid
## 65                                Higher
## 66                                   Mid
## 67                                Higher
## 68                                Higher
## 69                                   Mid
## 70                              Very Low
## 71                                   Mid
## 72                                   Mid
## 73                                Higher
## 74                                Higher
## 75                                   Mid
## 76                                   Mid
## 77                                   Mid
## 78                                Higher
## 79                                   Mid
## 80                                   Mid
## 81                                   Low
## 82                                Higher
## 83                                   Mid
## 84                                   Mid
## 85                                   Mid
## 86                            Don't Know
## 87                                Higher
## 88                                   Mid
## 89                             Very high
## 90                                   Mid
## 91                                   Mid
## 92                                Higher
## 93                                   Mid
## 94                                Higher
## 95                                Higher
## 96                                Higher
## 97                                   Mid
## 98                                Higher
## 99                                   Mid
## 100                               Higher
## 101                            Very high
## 102                                  Mid
## 103                                  Mid
## 104                               Higher
## 105                            Very high
## 106                                  Mid
## 107                            Very high
## 108                               Higher
## 109                            Very high
## 110                                  Mid
## 111                               Higher
## 112                                 <NA>
## 113                               Higher
## 114                                  Mid
## 115                                  Mid
## 116                           Don't Know
## 117                            Very high
## 118                           Don't Know
## 119                               Higher
## 120                                  Mid
## 121                               Higher
## 122                            Very high
## 123                            Very high
## 124                               Higher
## 125                            Very high
## 126                            Very high
## 127                               Higher
## 128                               Higher
## 129                               Higher
## 130                                  Mid
## 131                            Very high
## 132                            Very high
## 133                                  Mid
## 134                               Higher
## 135                               Higher
## 136                           Don't Know
## 137                            Very high
## 138                            Very high
## 139                            Very high
## 140                            Very high
## 141                                  Mid
## 142                               Higher
## 143                               Higher
## 144                               Higher
## 145                               Higher
## 146                                  Mid
## 147                                 <NA>
## 148                               Higher
## 149                                  Mid
## 150                                  Mid
## 151                               Higher
## 152                                  Mid
## 153                           Don't Know
## 154                           Don't Know
## 155                               Higher
## 156                               Higher
## 157                                  Mid
## 158                               Higher
## 159                           Don't Know
## 160                                  Mid
## 161                               Higher
## 162                                  Mid
## 163                           Don't Know
## 164                               Higher
## 165                               Higher
## 166                               Higher
## 167                               Higher
## 168                               Higher
## 169                                  Mid
## 170                           Don't Know
## 171                           Don't Know
## 172                           Don't Know
## 173                           Don't Know
## 174                               Higher
## 175                               Higher
## 176                               Higher
## 177                                  Mid
## 178                                  Low
## 179                                 <NA>
## 180                                  Mid
## 181                                  Mid
## 182                                  Mid
## 183                           Don't Know
## 184                                  Low
## 185                                  Mid
## 186                                  Low
## 187                                  Mid
## 188                           Don't Know
## 189                                  Mid
## 190                            Very high
## 191                                  Mid
## 192                               Higher
## 193                               Higher
## 194                                  Mid
## 195                            Very high
## 196                                  Low
## 197                               Higher
## 198                                  Mid
## 199                               Higher
## 200                           Don't Know
## 201                                  Low
## 202                                  Mid
## 203                             Very Low
## 204                                  Mid
## 205                               Higher
## 206                                  Mid
## 207                                  Mid
## 208                            Very high
## 209                               Higher
## 210                               Higher
## 211                                  Mid
## 212                                  Low
## 213                                  Low
## 214                                  Low
## 215                                  Low
## 216                                  Low
## 217                               Higher
## 218                                  Low
## 219                                  Low
## 220                               Higher
## 221                                  Mid
## 222                                  Mid
## 223                                  Mid
## 224                                  Mid
## 225                                  Low
## 226                                  Low
## 227                               Higher
## 228                                  Mid
## 229                                  Low
## 230                                  Mid
## 231                               Higher
## 232                                  Mid
## 233                                  Mid
## 234                                  Low
## 235                                  Low
## 236                                  Mid
## 237                                  Mid
## 238                                  Mid
## 239                                  Low
## 240                                  Mid
## 241                                  Mid
## 242                                  Low
## 243                                  Low
## 244                                  Low
## 245                                  Low
## 246                                  Low
## 247                               Higher
## 248                                  Mid
## 249                                  Mid
## 250                                  Mid
## 251                               Higher
## 252                               Higher
## 253                            Very high
## 254                                  Mid
## 255                                  Low
## 256                               Higher
## 257                                  Mid
## 258                                  Mid
## 259                                  Low
## 260                               Higher
## 261                                  Mid
## 262                                  Mid
## 263                               Higher
## 264                                  Low
## 265                                  Mid
## 266                               Higher
## 267                               Higher
## 268                            Very high
## 269                               Higher
## 270                                  Low
## 271                                  Mid
## 272                               Higher
## 273                                  Mid
## 274                                  Low
## 275                               Higher
## 276                                  Mid
## 277                                  Mid
## 278                                  Mid
## 279                                 <NA>
## 280                               Higher
## 281                                  Mid
## 282                                  Mid
## 283                               Higher
## 284                                 <NA>
## 285                               Higher
## 286                               Higher
## 287                                  Mid
## 288                                  Mid
## 289                                  Mid
## 290                                  Mid
## 291                               Higher
## 292                               Higher
## 293                            Very high
## 294                                 <NA>
## 295                               Higher
## 296                               Higher
## 297                               Higher
## 298                                  Low
## 299                                  Mid
## 300                            Very high
## 302                                  Mid
## 303                                  Mid
## 304                                  Mid
## 305                                  Mid
## 306                                  Mid
## 307                                  Mid
## 308                                  Mid
## 309                           Don't Know
## 310                           Don't Know
## 311                                  Mid
## 312                                  Mid
## 313                               Higher
## 314                               Higher
## 315                           Don't Know
## 316                            Very high
## 317                             Very Low
## 318                               Higher
## 319                                  Mid
## 320                               Higher
## 321                               Higher
## 322                           Don't Know
## 323                           Don't Know
## 324                                  Mid
## 325                                  Mid
## 326                                  Mid
## 327                                  Mid
## 328                                  Mid
## 329                                  Low
## 330                                  Low
## 331                           Don't Know
## 332                            Very high
## 333                                  Low
## 334                            Very high
## 335                               Higher
## 336                                  Low
## 337                           Don't Know
## 338                             Very Low
## 339                               Higher
## 340                                  Low
## 341                                  Mid
## 342                                  Low
## 343                                  Low
## 344                                  Mid
## 345                                  Low
## 346                                  Mid
## 347                                  Mid
## 348                                  Mid
## 349                               Higher
## 350                                  Low
## 351                                  Mid
## 352                           Don't Know
## 353                                  Mid
## 354                           Don't Know
## 355                                  Mid
## 356                           Don't Know
## 357                                  Mid
## 358                           Don't Know
## 359                                  Low
## 360                               Higher
## 361                                  Low
## 362                                  Mid
## 363                                  Mid
## 364                                  Low
## 365                           Don't Know
## 366                                  Mid
## 367                                  Low
## 368                           Don't Know
## 369                                  Low
## 370                                  Low
## 371                                  Low
## 372                                  Mid
## 373                                  Mid
## 374                                  Mid
## 375                               Higher
## 376                                  Mid
## 377                                  Mid
## 378                                  Low
## 379                           Don't Know
## 380                           Don't Know
## 381                           Don't Know
## 382                           Don't Know
## 383                           Don't Know
## 384                           Don't Know
## 385                           Don't Know
## 386                           Don't Know
## 387                                  Low
## 388                           Don't Know
## 389                           Don't Know
## 390                                  Low
## 391                                  Low
## 392                           Don't Know
## 393                           Don't Know
## 394                           Don't Know
## 395                                  Mid
## 396                           Don't Know
## 397                                  Low
## 398                                  Low
## 399                           Don't Know
## 400                           Don't Know
## 401                                  Low
## 402                           Don't Know
## 403                                  Mid
## 404                           Don't Know
## 405                                 <NA>
## 406                           Don't Know
## 407                                  Mid
## 408                                  Low
## 409                                 <NA>
## 410                                  Mid
## 411                                  Low
## 412                                  Mid
## 413                                  Mid
## 414                                 <NA>
## 415                           Don't Know
## 416                                  Mid
## 417                                 <NA>
## 418                           Don't Know
## 419                                  Low
## 420                                 <NA>
## 421                                  Low
## 422                                 <NA>
## 423                                 <NA>
## 424                                  Mid
## 425                                  Mid
## 426                                  Mid
## 427                                  Mid
## 428                                 <NA>
## 429                                 <NA>
## 430                                  Mid
## 431                                  Mid
## 432                                 <NA>
## 433                                  Mid
## 434                                 <NA>
## 435                                 <NA>
## 436                                 <NA>
## 437                                  Mid
## 438                                  Mid
## 439                                  Mid
## 440                                  Low
## 441                                  Mid
## 442                                 <NA>
## 443                                  Mid
## 444                                  Mid
## 445                                  Mid
## 446                                  Low
## 447                                  Low
## 448                                  Mid
## 449                                 <NA>
## 450                                 <NA>
## 451                                 <NA>
## 452                                  Mid
## 453                               Higher
## 454                                  Low
## 455                                  Low
## 456                                  Mid
## 457                           Don't Know
## 458                                  Mid
## 459                                  Mid
## 460                                 <NA>
## 461                               Higher
## 462                                  Mid
## 463                           Don't Know
## 464                                  Low
## 465                               Higher
## 466                             Very Low
## 467                            Very high
## 468                               Higher
## 469                                  Mid
## 470                           Don't Know
## 471                           Don't Know
## 472                                  Mid
## 473                           Don't Know
## 474                           Don't Know
## 475                           Don't Know
## 476                           Don't Know
## 477                           Don't Know
## 478                             Very Low
## 479                           Don't Know
## 480                           Don't Know
## 481                             Very Low
## 482                             Very Low
## 483                                  Mid
## 484                           Don't Know
## 485                                 <NA>
## 486                               Higher
## 487                           Don't Know
## 488                           Don't Know
## 489                                  Mid
## 490                                  Mid
## 491                            Very high
## 492                                 <NA>
## 493                             Very Low
## 494                               Higher
## 495                                  Mid
## 496                               Higher
##      District.Level.Offices..Citizen.s.Participaton Police..Accountibility
## 1                                               Low                    Low
## 2                                            Higher                 Higher
## 3                                               Mid                    Mid
## 4                                               Mid                    Mid
## 5                                         Very high                 Higher
## 6                                        Don't Know             Don't Know
## 7                                         Very high              Very high
## 8                                               Low                    Low
## 9                                         Very high                 Higher
## 10                                              Mid                    Mid
## 11                                        Very high                 Higher
## 12                                             <NA>                   <NA>
## 13                                        Very high                 Higher
## 14                                              Low                    Mid
## 15                                              Low                    Low
## 16                                              Low                    Mid
## 17                                              Mid                    Mid
## 18                                             <NA>                   <NA>
## 19                                           Higher                    Mid
## 20                                              Mid               Very Low
## 21                                              Mid                    Mid
## 22                                              Mid                    Mid
## 23                                              Mid                    Low
## 24                                              Mid                 Higher
## 25                                              Mid                 Higher
## 26                                       Don't Know                 Higher
## 27                                              Mid              Very high
## 28                                           Higher             Don't Know
## 29                                       Don't Know             Don't Know
## 30                                              Mid                    Low
## 31                                              Mid                 Higher
## 32                                       Don't Know                 Higher
## 33                                           Higher                 Higher
## 34                                           Higher                    Mid
## 35                                           Higher                    Mid
## 36                                              Low                    Low
## 37                                           Higher                    Mid
## 38                                              Mid                 Higher
## 39                                             <NA>                    Low
## 40                                              Mid                    Low
## 41                                           Higher                 Higher
## 42                                              Mid                    Mid
## 43                                              Mid                 Higher
## 44                                              Mid                    Low
## 45                                              Mid                    Mid
## 46                                              Low                    Low
## 47                                              Mid                 Higher
## 48                                              Mid                 Higher
## 49                                              Low                 Higher
## 50                                             <NA>                 Higher
## 51                                       Don't Know                    Low
## 52                                       Don't Know                    Mid
## 53                                              Mid                    Mid
## 54                                              Mid                    Low
## 55                                              Low                 Higher
## 56                                         Very Low                    Low
## 57                                       Don't Know                 Higher
## 58                                       Don't Know             Don't Know
## 59                                       Don't Know                 Higher
## 60                                       Don't Know                 Higher
## 61                                              Mid                 Higher
## 62                                              Mid                    Mid
## 63                                              Mid                 Higher
## 64                                              Low                 Higher
## 65                                              Mid                 Higher
## 66                                              Mid                    Mid
## 67                                              Mid                 Higher
## 68                                              Mid                 Higher
## 69                                              Mid             Don't Know
## 70                                              Low               Very Low
## 71                                              Low                    Mid
## 72                                              Low                    Mid
## 73                                              Low                    Mid
## 74                                           Higher                 Higher
## 75                                              Mid                 Higher
## 76                                           Higher                 Higher
## 77                                              Mid                    Mid
## 78                                              Mid                    Mid
## 79                                              Mid                    Mid
## 80                                              Mid                 Higher
## 81                                              Low                    Mid
## 82                                              Mid                    Mid
## 83                                           Higher                   <NA>
## 84                                              Low                    Mid
## 85                                              Mid                    Mid
## 86                                       Don't Know             Don't Know
## 87                                       Don't Know                    Mid
## 88                                              Mid                 Higher
## 89                                              Mid                 Higher
## 90                                              Mid                 Higher
## 91                                              Mid                 Higher
## 92                                              Mid                    Mid
## 93                                              Mid                 Higher
## 94                                              Mid                 Higher
## 95                                              Mid                 Higher
## 96                                              Mid                 Higher
## 97                                              Mid                 Higher
## 98                                              Mid                 Higher
## 99                                              Low                 Higher
## 100                                          Higher                 Higher
## 101                                             Mid                    Mid
## 102                                             Low              Very high
## 103                                          Higher              Very high
## 104                                             Mid              Very high
## 105                                          Higher              Very high
## 106                                          Higher                 Higher
## 107                                             Low                    Mid
## 108                                             Low                 Higher
## 109                                             Mid              Very high
## 110                                             Mid                 Higher
## 111                                             Mid                 Higher
## 112                                             Mid              Very high
## 113                                       Very high              Very high
## 114                                             Mid              Very high
## 115                                             Mid              Very high
## 116                                      Don't Know              Very high
## 117                                          Higher              Very high
## 118                                      Don't Know              Very high
## 119                                          Higher              Very high
## 120                                       Very high              Very high
## 121                                          Higher              Very high
## 122                                             Mid                 Higher
## 123                                       Very high              Very high
## 124                                       Very high              Very high
## 125                                          Higher                 Higher
## 126                                       Very high              Very high
## 127                                          Higher              Very high
## 128                                          Higher                 Higher
## 129                                          Higher              Very high
## 130                                             Low                    Mid
## 131                                       Very high              Very high
## 132                                             Mid              Very high
## 133                                          Higher              Very high
## 134                                       Very high                    Mid
## 135                                          Higher              Very high
## 136                                      Don't Know             Don't Know
## 137                                             Mid              Very high
## 138                                             Mid                 Higher
## 139                                             Mid              Very high
## 140                                          Higher              Very high
## 141                                          Higher              Very high
## 142                                       Very high                 Higher
## 143                                             Mid                 Higher
## 144                                          Higher              Very high
## 145                                          Higher              Very high
## 146                                       Very high              Very high
## 147                                             Mid                 Higher
## 148                                       Very high                 Higher
## 149                                             Mid                 Higher
## 150                                          Higher                 Higher
## 151                                       Very high                 Higher
## 152                                          Higher                 Higher
## 153                                      Don't Know             Don't Know
## 154                                      Don't Know             Don't Know
## 155                                          Higher                 Higher
## 156                                       Very high                 Higher
## 157                                             Mid                 Higher
## 158                                             Mid              Very high
## 159                                      Don't Know                 Higher
## 160                                          Higher              Very high
## 161                                             Mid              Very high
## 162                                          Higher                    Mid
## 163                                      Don't Know                    Mid
## 164                                          Higher                    Low
## 165                                             Mid              Very high
## 166                                             Mid              Very high
## 167                                             Mid              Very high
## 168                                          Higher                    Mid
## 169                                             Mid                 Higher
## 170                                      Don't Know             Don't Know
## 171                                      Don't Know             Don't Know
## 172                                      Don't Know             Don't Know
## 173                                      Don't Know             Don't Know
## 174                                             Low                 Higher
## 175                                       Very high                    Mid
## 176                                          Higher                 Higher
## 177                                          Higher                    Mid
## 178                                             Mid             Don't Know
## 179                                            <NA>                 Higher
## 180                                             Mid                    Mid
## 181                                          Higher                 Higher
## 182                                             Mid                    Mid
## 183                                      Don't Know             Don't Know
## 184                                             Mid                 Higher
## 185                                          Higher                 Higher
## 186                                          Higher                 Higher
## 187                                             Mid                    Mid
## 188                                      Don't Know             Don't Know
## 189                                             Mid                 Higher
## 190                                       Very high                 Higher
## 191                                             Mid                 Higher
## 192                                          Higher                 Higher
## 193                                             Mid                 Higher
## 194                                          Higher                 Higher
## 195                                          Higher                 Higher
## 196                                             Mid                 Higher
## 197                                             Mid                 Higher
## 198                                             Low                 Higher
## 199                                          Higher                    Mid
## 200                                      Don't Know                 Higher
## 201                                          Higher                    Mid
## 202                                       Very high                    Mid
## 203                                       Very high              Very high
## 204                                       Very high                 Higher
## 205                                             Low                    Mid
## 206                                             Low              Very high
## 207                                             Low                 Higher
## 208                                          Higher              Very high
## 209                                          Higher                    Mid
## 210                                          Higher                 Higher
## 211                                      Don't Know              Very high
## 212                                             Mid                 Higher
## 213                                             Mid                 Higher
## 214                                             Mid                 Higher
## 215                                             Mid                 Higher
## 216                                             Low                 Higher
## 217                                          Higher                 Higher
## 218                                       Very high                 Higher
## 219                                             Low                    Low
## 220                                             Mid                 Higher
## 221                                          Higher                    Mid
## 222                                          Higher                    Mid
## 223                                             Low                    Mid
## 224                                          Higher                    Low
## 225                                       Very high                 Higher
## 226                                             Low                 Higher
## 227                                       Very high                 Higher
## 228                                             Mid                 Higher
## 229                                             Low                    Mid
## 230                                             Mid                    Low
## 231                                             Mid                 Higher
## 232                                             Mid              Very high
## 233                                             Mid                    Low
## 234                                             Mid                    Low
## 235                                             Mid                    Low
## 236                                          Higher                    Mid
## 237                                             Mid                    Low
## 238                                          Higher              Very high
## 239                                             Mid                    Low
## 240                                             Mid                    Mid
## 241                                             Low                    Low
## 242                                             Mid                    Low
## 243                                             Mid                    Low
## 244                                             Mid                    Low
## 245                                          Higher                    Mid
## 246                                             Low                 Higher
## 247                                             Mid                 Higher
## 248                                          Higher                 Higher
## 249                                          Higher                 Higher
## 250                                             Mid                 Higher
## 251                                             Mid                 Higher
## 252                                             Mid                 Higher
## 253                                             Mid                 Higher
## 254                                             Mid                 Higher
## 255                                          Higher                    Mid
## 256                                             Mid                 Higher
## 257                                             Low                    Mid
## 258                                             Mid                 Higher
## 259                                        Very Low                    Mid
## 260                                             Mid              Very high
## 261                                             Low                 Higher
## 262                                          Higher                    Mid
## 263                                          Higher                    Mid
## 264                                          Higher                    Mid
## 265                                             Mid                    Mid
## 266                                             Mid                 Higher
## 267                                             Low                    Mid
## 268                                             Mid                    Mid
## 269                                             Mid                 Higher
## 270                                             Mid                    Low
## 271                                             Low                 Higher
## 272                                          Higher                 Higher
## 273                                             Mid                    Mid
## 274                                             Mid                    Mid
## 275                                          Higher                 Higher
## 276                                             Mid              Very high
## 277                                             Low                    Mid
## 278                                             Mid                 Higher
## 279                                            <NA>                   <NA>
## 280                                             Mid                    Mid
## 281                                             Mid                 Higher
## 282                                          Higher                    Mid
## 283                                          Higher                    Mid
## 284                                            <NA>                    Mid
## 285                                          Higher                 Higher
## 286                                          Higher                    Mid
## 287                                             Mid                    Mid
## 288                                             Mid                    Mid
## 289                                             Mid                    Mid
## 290                                             Low              Very high
## 291                                             Mid                    Low
## 292                                       Very high              Very high
## 293                                             Mid              Very high
## 294                                          Higher                    Mid
## 295                                             Mid                 Higher
## 296                                          Higher                 Higher
## 297                                             Low                   <NA>
## 298                                             Mid                    Mid
## 299                                             Mid                    Mid
## 300                                          Higher              Very high
## 302                                             Mid                    Mid
## 303                                             Mid                    Mid
## 304                                             Mid                    Mid
## 305                                             Low                    Low
## 306                                             Mid                    Low
## 307                                        Very Low                    Mid
## 308                                             Low                    Mid
## 309                                      Don't Know             Don't Know
## 310                                      Don't Know                    Low
## 311                                             Mid                    Low
## 312                                             Mid                    Mid
## 313                                             Mid                    Low
## 314                                             Low                 Higher
## 315                                      Don't Know                    Mid
## 316                                             Low              Very high
## 317                                        Very Low             Don't Know
## 318                                          Higher                    Mid
## 319                                             Mid                 Higher
## 320                                          Higher                 Higher
## 321                                          Higher                    Mid
## 322                                      Don't Know             Don't Know
## 323                                      Don't Know             Don't Know
## 324                                             Low                    Mid
## 325                                             Mid                    Mid
## 326                                             Low                    Mid
## 327                                             Mid                    Mid
## 328                                             Low                    Low
## 329                                        Very Low                    Mid
## 330                                        Very Low                    Mid
## 331                                             Mid             Don't Know
## 332                                             Mid             Don't Know
## 333                                             Mid              Very high
## 334                                          Higher             Don't Know
## 335                                             Mid               Very Low
## 336                                             Low               Very Low
## 337                                       Very high             Don't Know
## 338                                             Mid               Very Low
## 339                                             Mid                    Mid
## 340                                             Mid                    Mid
## 341                                             Low                 Higher
## 342                                             Low                    Mid
## 343                                             Mid                    Low
## 344                                             Low                    Low
## 345                                             Mid                    Mid
## 346                                             Mid                    Mid
## 347                                             Mid                    Low
## 348                                             Mid                    Mid
## 349                                             Mid                    Mid
## 350                                             Low                    Low
## 351                                          Higher                    Low
## 352                                      Don't Know             Don't Know
## 353                                             Mid                    Low
## 354                                      Don't Know                    Low
## 355                                             Mid                    Low
## 356                                      Don't Know                    Low
## 357                                          Higher                    Mid
## 358                                      Don't Know                    Mid
## 359                                             Low                    Low
## 360                                          Higher                    Mid
## 361                                             Mid                 Higher
## 362                                             Mid                    Low
## 363                                          Higher                    Mid
## 364                                             Low                    Low
## 365                                      Don't Know             Don't Know
## 366                                             Low                    Low
## 367                                      Don't Know                    Low
## 368                                      Don't Know             Don't Know
## 369                                             Low               Very Low
## 370                                             Low                    Mid
## 371                                             Low                    Mid
## 372                                             Mid                    Mid
## 373                                             Mid                    Low
## 374                                             Mid                    Low
## 375                                          Higher                    Mid
## 376                                             Mid                    Mid
## 377                                             Mid                    Mid
## 378                                             Low                    Mid
## 379                                      Don't Know                    Low
## 380                                      Don't Know                    Low
## 381                                      Don't Know             Don't Know
## 382                                      Don't Know                    Low
## 383                                      Don't Know                    Low
## 384                                      Don't Know                    Low
## 385                                      Don't Know                    Low
## 386                                      Don't Know                    Low
## 387                                             Low                    Low
## 388                                      Don't Know                    Low
## 389                                      Don't Know                    Low
## 390                                      Don't Know                    Mid
## 391                                             Low                    Low
## 392                                      Don't Know                    Low
## 393                                      Don't Know             Don't Know
## 394                                      Don't Know                    Low
## 395                                             Low                    Mid
## 396                                      Don't Know                    Low
## 397                                             Low                    Low
## 398                                             Low                    Low
## 399                                      Don't Know                    Low
## 400                                      Don't Know                    Low
## 401                                             Low                    Low
## 402                                      Don't Know                    Low
## 403                                             Mid                    Mid
## 404                                      Don't Know             Don't Know
## 405                                            <NA>                    Mid
## 406                                      Don't Know             Don't Know
## 407                                             Mid                    Mid
## 408                                             Low                    Mid
## 409                                            <NA>                   <NA>
## 410                                             Mid                    Mid
## 411                                             Low                    Mid
## 412                                             Mid                    Mid
## 413                                             Mid                    Low
## 414                                            <NA>                   <NA>
## 415                                      Don't Know             Don't Know
## 416                                             Mid                    Mid
## 417                                      Don't Know                   <NA>
## 418                                      Don't Know                    Mid
## 419                                             Low                    Low
## 420                                            <NA>                   <NA>
## 421                                             Low                    Low
## 422                                            <NA>                   <NA>
## 423                                            <NA>                   <NA>
## 424                                             Mid                    Mid
## 425                                             Mid                    Mid
## 426                                             Low                    Mid
## 427                                             Mid                    Mid
## 428                                            <NA>                   <NA>
## 429                                            <NA>                   <NA>
## 430                                             Mid                    Mid
## 431                                             Mid                    Mid
## 432                                            <NA>                   <NA>
## 433                                             Mid                    Mid
## 434                                            <NA>                   <NA>
## 435                                            <NA>                   <NA>
## 436                                            <NA>                   <NA>
## 437                                             Mid                    Mid
## 438                                          Higher                 Higher
## 439                                             Mid                    Mid
## 440                                             Low                    Mid
## 441                                             Mid                    Mid
## 442                                            <NA>                   <NA>
## 443                                             Mid                    Mid
## 444                                             Low                    Low
## 445                                             Mid                    Mid
## 446                                             Low                    Mid
## 447                                             Mid                    Low
## 448                                             Mid                    Low
## 449                                            <NA>                   <NA>
## 450                                            <NA>                   <NA>
## 451                                            <NA>                   <NA>
## 452                                             Low                    Mid
## 453                                          Higher                 Higher
## 454                                             Low                    Mid
## 455                                             Low                    Low
## 456                                             Mid                 Higher
## 457                                      Don't Know             Don't Know
## 458                                             Mid                    Mid
## 459                                             Low                 Higher
## 460                                            <NA>                   <NA>
## 461                                            <NA>                   <NA>
## 462                                             Mid              Very high
## 463                                      Don't Know                 Higher
## 464                                             Mid                 Higher
## 465                                          Higher                 Higher
## 466                                        Very Low             Don't Know
## 467                                       Very high              Very high
## 468                                       Very high              Very high
## 469                                          Higher                 Higher
## 470                                      Don't Know                    Low
## 471                                             Low                    Low
## 472                                          Higher                    Mid
## 473                                      Don't Know             Don't Know
## 474                                      Don't Know                    Low
## 475                                      Don't Know                    Mid
## 476                                      Don't Know             Don't Know
## 477                                             Low                    Mid
## 478                                      Don't Know                    Low
## 479                                      Don't Know             Don't Know
## 480                                      Don't Know             Don't Know
## 481                                      Don't Know             Don't Know
## 482                                        Very Low               Very Low
## 483                                             Mid                    Mid
## 484                                      Don't Know             Don't Know
## 485                                            <NA>                   <NA>
## 486                                          Higher                    Mid
## 487                                      Don't Know             Don't Know
## 488                                      Don't Know             Don't Know
## 489                                             Mid                    Mid
## 490                                             Mid                 Higher
## 491                                       Very high                    Mid
## 492                                            <NA>                   <NA>
## 493                                        Very Low               Very Low
## 494                                          Higher              Very high
## 495                                             Mid                    Mid
## 496                                          Higher                 Higher
##      Police..Transparency Police..Rule.of.Law
## 1                     Low                 Low
## 2                     Mid                 Mid
## 3                     Mid                 Mid
## 4                     Mid              Higher
## 5               Very high           Very high
## 6                    <NA>          Don't Know
## 7               Very high           Very high
## 8                     Low                 Mid
## 9                  Higher           Very high
## 10                    Mid                 Mid
## 11                    Mid              Higher
## 12                   <NA>                <NA>
## 13                 Higher              Higher
## 14                    Low                 Low
## 15                    Low            Very Low
## 16                 Higher              Higher
## 17                    Mid            Very Low
## 18                   <NA>                <NA>
## 19                 Higher                 Mid
## 20               Very Low            Very Low
## 21                 Higher                 Mid
## 22                 Higher              Higher
## 23                    Mid                 Low
## 24                 Higher              Higher
## 25                 Higher              Higher
## 26                 Higher              Higher
## 27                 Higher              Higher
## 28              Very high              Higher
## 29             Don't Know          Don't Know
## 30                    Low                 Mid
## 31                    Mid              Higher
## 32                 Higher              Higher
## 33                 Higher              Higher
## 34                 Higher              Higher
## 35                    Mid                 Mid
## 36                    Mid              Higher
## 37                    Mid                 Mid
## 38                 Higher              Higher
## 39                    Low                 Mid
## 40                    Mid                 Mid
## 41                    Mid                 Mid
## 42                    Low                 Low
## 43                 Higher                 Mid
## 44                    Low                 Mid
## 45                 Higher                 Mid
## 46                    Low              Higher
## 47                    Mid                 Mid
## 48                 Higher                 Mid
## 49                    Mid                 Mid
## 50             Don't Know          Don't Know
## 51                    Low          Don't Know
## 52             Don't Know          Don't Know
## 53                    Mid          Don't Know
## 54                    Low                 Low
## 55                 Higher                 Mid
## 56                    Low                 Mid
## 57             Don't Know          Don't Know
## 58             Don't Know          Don't Know
## 59                 Higher          Don't Know
## 60                    Mid                 Mid
## 61                    Mid                 Mid
## 62                    Mid                 Mid
## 63                    Mid              Higher
## 64                    Mid                 Mid
## 65                    Mid              Higher
## 66                 Higher              Higher
## 67                    Mid                 Mid
## 68                    Mid              Higher
## 69             Don't Know          Don't Know
## 70                    Mid              Higher
## 71                 Higher              Higher
## 72                    Mid              Higher
## 73                    Mid                 Mid
## 74                 Higher                 Mid
## 75                 Higher                 Mid
## 76                 Higher                 Mid
## 77                    Mid                 Mid
## 78                    Mid                 Mid
## 79                    Mid                 Mid
## 80                    Mid                 Mid
## 81                    Mid                 Low
## 82                    Mid                 Mid
## 83                   <NA>                <NA>
## 84                    Mid                 Mid
## 85                    Mid              Higher
## 86             Don't Know          Don't Know
## 87                    Mid              Higher
## 88                 Higher              Higher
## 89                    Mid              Higher
## 90                    Mid                 Mid
## 91                 Higher                 Mid
## 92                 Higher                 Mid
## 93                    Mid                 Mid
## 94                 Higher              Higher
## 95                    Mid              Higher
## 96                 Higher              Higher
## 97                    Mid              Higher
## 98                    Mid              Higher
## 99                    Mid                 Mid
## 100                Higher              Higher
## 101                   Low                 Low
## 102             Very high           Very high
## 103             Very high           Very high
## 104             Very high           Very high
## 105             Very high           Very high
## 106                Higher                 Mid
## 107                Higher              Higher
## 108                   Mid           Very high
## 109             Very high           Very high
## 110                Higher           Very high
## 111                   Mid                 Mid
## 112             Very high           Very high
## 113             Very high           Very high
## 114             Very high           Very high
## 115             Very high           Very high
## 116             Very high           Very high
## 117             Very high           Very high
## 118             Very high           Very high
## 119             Very high           Very high
## 120             Very high           Very high
## 121             Very high           Very high
## 122                Higher              Higher
## 123             Very high              Higher
## 124                Higher              Higher
## 125                   Mid              Higher
## 126                Higher           Very high
## 127             Very high           Very high
## 128             Very high           Very high
## 129                Higher              Higher
## 130                   Mid              Higher
## 131                Higher           Very high
## 132                   Mid           Very high
## 133                   Mid                 Mid
## 134                   Mid                 Mid
## 135                Higher                 Mid
## 136            Don't Know          Don't Know
## 137                Higher           Very high
## 138                Higher           Very high
## 139             Very high              Higher
## 140            Don't Know           Very high
## 141                   Mid              Higher
## 142                Higher              Higher
## 143                   Mid              Higher
## 144             Very high           Very high
## 145             Very high           Very high
## 146                   Mid              Higher
## 147                   Low                 Mid
## 148                Higher              Higher
## 149                Higher              Higher
## 150                Higher              Higher
## 151                Higher           Very high
## 152                Higher              Higher
## 153            Don't Know          Don't Know
## 154            Don't Know          Don't Know
## 155                Higher              Higher
## 156                Higher           Very high
## 157                Higher              Higher
## 158                Higher              Higher
## 159                   Mid              Higher
## 160                Higher              Higher
## 161                Higher              Higher
## 162                Higher              Higher
## 163                   Mid              Higher
## 164                   Low                 Low
## 165                Higher              Higher
## 166                Higher              Higher
## 167                Higher              Higher
## 168                   Low                 Mid
## 169                Higher              Higher
## 170            Don't Know          Don't Know
## 171            Don't Know          Don't Know
## 172                   Low                 Mid
## 173            Don't Know          Don't Know
## 174                Higher                 Mid
## 175                Higher              Higher
## 176                Higher              Higher
## 177                Higher              Higher
## 178            Don't Know          Don't Know
## 179                Higher              Higher
## 180                   Mid                 Mid
## 181                Higher              Higher
## 182                Higher              Higher
## 183            Don't Know          Don't Know
## 184                Higher              Higher
## 185                Higher              Higher
## 186                Higher              Higher
## 187                Higher              Higher
## 188            Don't Know          Don't Know
## 189                Higher              Higher
## 190                Higher              Higher
## 191                Higher              Higher
## 192                Higher              Higher
## 193                Higher              Higher
## 194                Higher              Higher
## 195                Higher              Higher
## 196                Higher              Higher
## 197                Higher              Higher
## 198                Higher              Higher
## 199                Higher                 Mid
## 200                Higher              Higher
## 201                   Low                 Low
## 202                   Low                 Low
## 203                   Low                 Mid
## 204             Very high                 Mid
## 205                   Mid                 Mid
## 206             Very high              Higher
## 207             Very high              Higher
## 208                Higher              Higher
## 209                   Mid                 Mid
## 210                Higher              Higher
## 211                Higher              Higher
## 212                   Mid                 Mid
## 213                   Mid                 Mid
## 214                   Mid                 Mid
## 215                   Mid                 Mid
## 216                   Mid                 Mid
## 217                Higher                 Mid
## 218                Higher                 Mid
## 219                   Mid            Very Low
## 220                Higher                 Low
## 221                   Low                 Low
## 222                Higher                 Low
## 223                   Mid              Higher
## 224                   Low                 Mid
## 225             Very high              Higher
## 226                   Mid                 Low
## 227                   Mid              Higher
## 228                Higher                 Mid
## 229                Higher              Higher
## 230                   Mid                 Low
## 231                   Mid                 Low
## 232                Higher              Higher
## 233                   Mid                 Low
## 234                   Mid                 Mid
## 235                   Mid                 Mid
## 236                Higher                 Low
## 237                   Mid                 Low
## 238                   Mid              Higher
## 239                   Mid                 Low
## 240                Higher                 Low
## 241                   Mid                 Mid
## 242                   Mid                 Mid
## 243                   Mid                 Low
## 244                   Mid                 Mid
## 245                   Mid              Higher
## 246                Higher              Higher
## 247             Very high              Higher
## 248                Higher              Higher
## 249                   Mid              Higher
## 250                   Mid              Higher
## 251                   Mid                 Mid
## 252                Higher              Higher
## 253                Higher           Very high
## 254                Higher                 Mid
## 255                   Mid                 Mid
## 256                   Mid                 Mid
## 257                Higher              Higher
## 258                   Mid              Higher
## 259                   Low                 Low
## 260             Very high                 Mid
## 261                Higher                 Mid
## 262                   Mid                 Mid
## 263                   Low                 Mid
## 264                   Mid                <NA>
## 265                   Low                 Low
## 266                Higher              Higher
## 267                   Mid                 Mid
## 268                   Low              Higher
## 269                   Mid                 Mid
## 270                   Low                 Low
## 271                Higher              Higher
## 272                Higher              Higher
## 273                   Mid                 Mid
## 274                   Mid                 Mid
## 275                Higher              Higher
## 276                   Mid              Higher
## 277                   Mid                 Mid
## 278                Higher              Higher
## 279                  <NA>                <NA>
## 280                   Low                <NA>
## 281                Higher              Higher
## 282                Higher                 Low
## 283                   Mid                 Low
## 284                   Mid                <NA>
## 285                   Mid                 Mid
## 286                   Mid                 Mid
## 287                   Mid                 Mid
## 288                   Mid                 Mid
## 289             Very high           Very high
## 290             Very high           Very high
## 291                   Low                 Low
## 292                   Mid                 Mid
## 293             Very high           Very high
## 294                Higher                <NA>
## 295                Higher                <NA>
## 296                Higher              Higher
## 297             Very high              Higher
## 298             Very high           Very high
## 299                   Mid              Higher
## 300                   Mid              Higher
## 302                   Mid                <NA>
## 303                   Mid                <NA>
## 304                   Low                <NA>
## 305                   Mid                <NA>
## 306                   Low                <NA>
## 307                   Mid                <NA>
## 308                   Low                <NA>
## 309            Don't Know                <NA>
## 310                   Low                <NA>
## 311                   Low                <NA>
## 312                   Mid                <NA>
## 313                   Low                <NA>
## 314                   Mid                <NA>
## 315            Don't Know                <NA>
## 316             Very high                <NA>
## 317            Don't Know                <NA>
## 318                   Low                <NA>
## 319              Very Low                <NA>
## 320                Higher                <NA>
## 321                   Mid                <NA>
## 322            Don't Know                <NA>
## 323            Don't Know                <NA>
## 324                   Mid                <NA>
## 325                   Mid                <NA>
## 326                   Low                <NA>
## 327                   Mid                <NA>
## 328                   Low                <NA>
## 329                   Mid                <NA>
## 330                Higher                <NA>
## 331                   Mid                <NA>
## 332            Don't Know                <NA>
## 333             Very high                <NA>
## 334            Don't Know                <NA>
## 335                   Low                <NA>
## 336                   Mid                <NA>
## 337            Don't Know                <NA>
## 338                   Mid                <NA>
## 339                   Mid                <NA>
## 340                   Low                <NA>
## 341                   Mid                <NA>
## 342                   Mid                <NA>
## 343                   Low                <NA>
## 344                   Mid                <NA>
## 345                   Low                <NA>
## 346                   Mid                <NA>
## 347              Very Low                <NA>
## 348                   Low                <NA>
## 349                   Low                <NA>
## 350              Very Low                <NA>
## 351              Very Low                <NA>
## 352            Don't Know          Don't Know
## 353                   Low                 Low
## 354                   Low          Don't Know
## 355                   Low                 Low
## 356                   Low                 Low
## 357                   Low                 Mid
## 358                   Mid                 Mid
## 359                   Low                 Low
## 360                Higher                 Mid
## 361                Higher                 Mid
## 362                   Low                 Low
## 363                   Mid                 Mid
## 364                   Low                 Low
## 365            Don't Know          Don't Know
## 366                   Low                 Mid
## 367                   Low                 Low
## 368            Don't Know          Don't Know
## 369                   Low                 Mid
## 370                   Mid                 Mid
## 371                   Mid                 Low
## 372                Higher              Higher
## 373                   Low                 Low
## 374                   Mid              Higher
## 375                   Mid                 Mid
## 376                   Mid                 Mid
## 377                   Mid                 Mid
## 378                   Mid                 Mid
## 379                   Low                 Low
## 380                   Low                 Low
## 381            Don't Know          Don't Know
## 382                   Low                 Low
## 383                   Low                 Low
## 384                   Low                 Mid
## 385                   Low                 Low
## 386                   Low                 Low
## 387                   Low                 Low
## 388                   Low                 Low
## 389                   Low                 Low
## 390                   Low                 Mid
## 391                   Low                 Low
## 392                   Low                 Low
## 393            Don't Know          Don't Know
## 394                   Low                 Low
## 395                   Mid                 Mid
## 396                   Low                 Low
## 397                   Low                 Low
## 398                   Low                 Low
## 399                   Low                 Low
## 400                   Low                 Low
## 401                   Low                 Low
## 402                   Low                 Low
## 403                   Mid                 Mid
## 404            Don't Know          Don't Know
## 405                  <NA>                <NA>
## 406            Don't Know          Don't Know
## 407                   Mid                 Mid
## 408                   Mid                 Mid
## 409                   Mid                <NA>
## 410                   Mid                 Mid
## 411                   Mid                 Mid
## 412                   Mid                 Mid
## 413                   Low                 Low
## 414                  <NA>                <NA>
## 415            Don't Know          Don't Know
## 416                   Mid                 Mid
## 417                  <NA>                <NA>
## 418                   Mid                 Low
## 419                   Low                 Low
## 420                  <NA>                <NA>
## 421                   Low                 Low
## 422                  <NA>                <NA>
## 423                  <NA>                <NA>
## 424                   Mid                 Mid
## 425                   Low                 Mid
## 426                   Low                 Mid
## 427                   Mid                 Mid
## 428                  <NA>                <NA>
## 429                  <NA>                <NA>
## 430                   Mid                 Mid
## 431                   Mid                 Mid
## 432                  <NA>                <NA>
## 433                   Mid                 Mid
## 434                  <NA>                <NA>
## 435                  <NA>                <NA>
## 436                  <NA>                <NA>
## 437                   Mid                 Mid
## 438                Higher              Higher
## 439                   Mid                 Mid
## 440                   Mid                 Low
## 441                   Mid                 Mid
## 442                  <NA>                <NA>
## 443                   Mid                 Low
## 444                   Mid                 Low
## 445                   Mid                 Mid
## 446                   Mid                 Mid
## 447                   Low                 Mid
## 448                   Low                 Mid
## 449                  <NA>                <NA>
## 450                  <NA>                <NA>
## 451                  <NA>                <NA>
## 452                   Mid                 Low
## 453                   Mid              Higher
## 454                   Mid                 Mid
## 455                   Low                 Low
## 456                   Mid              Higher
## 457            Don't Know          Don't Know
## 458                   Mid              Higher
## 459                  <NA>                <NA>
## 460                  <NA>                 Low
## 461                  <NA>              Higher
## 462             Very high           Very high
## 463                Higher              Higher
## 464                   Low                 Mid
## 465                Higher              Higher
## 466            Don't Know          Don't Know
## 467             Very high           Very high
## 468             Very high           Very high
## 469                Higher              Higher
## 470              Very Low                 Low
## 471                Higher          Don't Know
## 472                   Mid                 Mid
## 473            Don't Know          Don't Know
## 474                   Low                 Low
## 475                   Mid                 Mid
## 476            Don't Know          Don't Know
## 477                   Mid                <NA>
## 478                   Low            Very Low
## 479            Don't Know          Don't Know
## 480            Don't Know          Don't Know
## 481            Don't Know            Very Low
## 482              Very Low            Very Low
## 483                   Mid                 Mid
## 484            Don't Know          Don't Know
## 485                  <NA>                <NA>
## 486                Higher              Higher
## 487            Don't Know          Don't Know
## 488            Don't Know          Don't Know
## 489            Don't Know                 Mid
## 490              Very Low                 Mid
## 491                   Mid                 Mid
## 492                  <NA>                <NA>
## 493              Very Low            Very Low
## 494                Higher                 Mid
## 495                Higher              Higher
## 496                Higher              Higher
##      Police..Citizen.s.Participaton NGO.CBO..Accountibility
## 1                               Low                     Low
## 2                        Don't Know              Don't Know
## 3                               Mid                  Higher
## 4                               Mid                     Mid
## 5                         Very high               Very high
## 6                        Don't Know              Don't Know
## 7                         Very high                  Higher
## 8                               Mid                     Mid
## 9                         Very high                     Mid
## 10                              Mid                  Higher
## 11                           Higher                     Mid
## 12                             <NA>                    <NA>
## 13                           Higher                  Higher
## 14                              Low                     Low
## 15                              Low                     Low
## 16                              Low                    <NA>
## 17                              Mid                Very Low
## 18                             <NA>                    <NA>
## 19                              Mid                  Higher
## 20                              Mid                     Low
## 21                           Higher                  Higher
## 22                              Low               Very high
## 23                              Mid                     Mid
## 24                           Higher                     Mid
## 25                           Higher                    <NA>
## 26                           Higher              Don't Know
## 27                           Higher                    <NA>
## 28                       Don't Know              Don't Know
## 29                       Don't Know              Don't Know
## 30                              Low                  Higher
## 31                              Mid                    <NA>
## 32                        Very high              Don't Know
## 33                           Higher                     Mid
## 34                              Mid                  Higher
## 35                              Mid                     Low
## 36                              Mid                     Mid
## 37                              Mid                  Higher
## 38                              Mid                     Low
## 39                              Mid                     Mid
## 40                              Mid                  Higher
## 41                              Mid                  Higher
## 42                         Very Low                     Mid
## 43                              Mid                     Mid
## 44                              Mid                     Mid
## 45                              Mid                     Mid
## 46                              Mid                     Mid
## 47                              Mid                     Mid
## 48                              Mid                  Higher
## 49                             <NA>                     Mid
## 50                             <NA>                  Higher
## 51                       Don't Know              Don't Know
## 52                       Don't Know               Very high
## 53                       Don't Know                  Higher
## 54                              Mid                     Mid
## 55                              Low                  Higher
## 56                       Don't Know              Don't Know
## 57                       Don't Know              Don't Know
## 58                       Don't Know              Don't Know
## 59                       Don't Know              Don't Know
## 60                       Don't Know              Don't Know
## 61                              Low                  Higher
## 62                              Mid                  Higher
## 63                              Mid                  Higher
## 64                              Low                  Higher
## 65                              Mid                  Higher
## 66                              Mid                  Higher
## 67                           Higher                  Higher
## 68                              Mid                  Higher
## 69                       Don't Know                  Higher
## 70                              Mid                  Higher
## 71                              Mid                  Higher
## 72                              Low                  Higher
## 73                              Low                  Higher
## 74                              Mid                  Higher
## 75                           Higher                  Higher
## 76                              Mid                  Higher
## 77                              Mid                    <NA>
## 78                              Mid                  Higher
## 79                              Mid                  Higher
## 80                              Mid                     Mid
## 81                              Low                  Higher
## 82                           Higher                  Higher
## 83                             <NA>                     Mid
## 84                              Low                     Mid
## 85                              Mid                  Higher
## 86                       Don't Know                  Higher
## 87                           Higher                  Higher
## 88                              Mid               Very high
## 89                              Mid                  Higher
## 90                              Mid                  Higher
## 91                              Mid                  Higher
## 92                              Mid                     Mid
## 93                              Mid                  Higher
## 94                              Mid                  Higher
## 95                              Mid                  Higher
## 96                              Mid                  Higher
## 97                              Mid                  Higher
## 98                              Mid                  Higher
## 99                           Higher                  Higher
## 100                          Higher                  Higher
## 101                        Very Low               Very high
## 102                             Low                     Mid
## 103                       Very high                     Mid
## 104                       Very high                     Low
## 105                          Higher                  Higher
## 106                             Low                  Higher
## 107                       Very high                  Higher
## 108                          Higher                     Mid
## 109                       Very high                  Higher
## 110                       Very high                  Higher
## 111                          Higher                     Mid
## 112                             Low                     Mid
## 113                       Very high              Don't Know
## 114                       Very high               Very high
## 115                       Very high                  Higher
## 116                       Very high              Don't Know
## 117                          Higher              Don't Know
## 118                       Very high              Don't Know
## 119                          Higher                  Higher
## 120                             Mid               Very high
## 121                       Very high                  Higher
## 122                          Higher               Very high
## 123                       Very high               Very high
## 124                       Very high               Very high
## 125                          Higher               Very high
## 126                             Mid               Very high
## 127                       Very high               Very high
## 128                             Mid               Very high
## 129                          Higher                  Higher
## 130                             Mid                     Mid
## 131                             Low                     Mid
## 132                          Higher                     Mid
## 133                             Mid                  Higher
## 134                             Mid               Very high
## 135                             Mid                     Mid
## 136                      Don't Know              Don't Know
## 137                             Mid                     Mid
## 138                          Higher                     Mid
## 139                          Higher                  Higher
## 140                          Higher               Very high
## 141                             Low               Very high
## 142                       Very high                     Mid
## 143                       Very high               Very high
## 144                             Mid               Very high
## 145                             Mid                  Higher
## 146                             Low               Very high
## 147                             Low                     Mid
## 148                          Higher              Don't Know
## 149                          Higher               Very high
## 150                             Mid                  Higher
## 151                      Don't Know              Don't Know
## 152                             Mid               Very high
## 153                      Don't Know                  Higher
## 154                      Don't Know                  Higher
## 155                          Higher                  Higher
## 156                      Don't Know              Don't Know
## 157                          Higher                  Higher
## 158                             Mid               Very high
## 159                          Higher                  Higher
## 160                             Mid                  Higher
## 161                          Higher               Very high
## 162                             Mid                  Higher
## 163                          Higher              Don't Know
## 164                             Low                  Higher
## 165                             Mid               Very high
## 166                             Mid                     Mid
## 167                             Mid               Very high
## 168                          Higher              Don't Know
## 169                             Mid              Don't Know
## 170                      Don't Know              Don't Know
## 171                      Don't Know              Don't Know
## 172                             Low              Don't Know
## 173                      Don't Know              Don't Know
## 174                          Higher              Don't Know
## 175                          Higher              Don't Know
## 176                          Higher                  Higher
## 177                          Higher              Don't Know
## 178                      Don't Know                     Mid
## 179                       Very high                     Mid
## 180                             Low                  Higher
## 181                          Higher                     Mid
## 182                          Higher                  Higher
## 183                      Don't Know              Don't Know
## 184                          Higher                    <NA>
## 185                          Higher                     Mid
## 186                             Mid                  Higher
## 187                          Higher                     Mid
## 188                      Don't Know              Don't Know
## 189                          Higher                     Mid
## 190                          Higher                  Higher
## 191                          Higher                     Mid
## 192                          Higher               Very high
## 193                          Higher                     Mid
## 194                             Mid                     Mid
## 195                          Higher              Don't Know
## 196                          Higher              Don't Know
## 197                          Higher                  Higher
## 198                          Higher              Don't Know
## 199                          Higher                  Higher
## 200                          Higher              Don't Know
## 201                             Mid                     Mid
## 202                          Higher                  Higher
## 203                          Higher                     Mid
## 204                       Very high                  Higher
## 205                          Higher                     Mid
## 206                             Mid               Very high
## 207                             Mid                     Mid
## 208                          Higher               Very high
## 209                          Higher                  Higher
## 210                             Mid                     Mid
## 211                          Higher                  Higher
## 212                      Don't Know               Very high
## 213                      Don't Know               Very high
## 214                      Don't Know               Very high
## 215                      Don't Know               Very high
## 216                      Don't Know               Very high
## 217                       Very high                     Low
## 218                          Higher                     Mid
## 219                          Higher                  Higher
## 220                             Low                     Mid
## 221                          Higher                  Higher
## 222                             Mid                     Low
## 223                          Higher                  Higher
## 224                          Higher                  Higher
## 225                          Higher                     Mid
## 226                          Higher                     Low
## 227                       Very high                     Low
## 228                             Mid                  Higher
## 229                             Low                     Mid
## 230                             Mid                     Low
## 231                          Higher                     Mid
## 232                          Higher                     Mid
## 233                             Mid                     Mid
## 234                             Mid                     Mid
## 235                             Mid                     Mid
## 236                          Higher                     Mid
## 237                             Mid                  Higher
## 238                       Very high               Very high
## 239                             Low                     Mid
## 240                          Higher                     Mid
## 241                             Mid                     Mid
## 242                             Mid                     Mid
## 243                             Mid                     Mid
## 244                             Mid                     Mid
## 245                          Higher                     Low
## 246                             Mid                     Mid
## 247                       Very high                     Low
## 248                       Very high               Very high
## 249                       Very high                  Higher
## 250                          Higher                  Higher
## 251                             Low                     Low
## 252                             Mid                  Higher
## 253                             Mid                  Higher
## 254                             Mid                     Low
## 255                             Mid                     Mid
## 256                             Low                  Higher
## 257                             Low                  Higher
## 258                             Low                     Mid
## 259                        Very Low                  Higher
## 260                             Mid                     Mid
## 261                             Low               Very high
## 262                             Mid                     Low
## 263                          Higher                  Higher
## 264                             Low                     Mid
## 265                             Low                     Mid
## 266                             Mid               Very high
## 267                             Mid              Don't Know
## 268                             Mid                  Higher
## 269                             Mid                     Mid
## 270                          Higher               Very high
## 271                          Higher                     Low
## 272                          Higher                  Higher
## 273                             Mid                     Mid
## 274                             Low                     Low
## 275                          Higher                  Higher
## 276                          Higher                  Higher
## 277                             Mid                  Higher
## 278                          Higher                     Mid
## 279                            <NA>                    <NA>
## 280                            <NA>                     Low
## 281                          Higher                     Mid
## 282                             Mid                  Higher
## 283                             Mid                  Higher
## 284                            <NA>                  Higher
## 285                             Low                     Low
## 286                             Mid                     Mid
## 287                             Mid                  Higher
## 288                             Mid                     Mid
## 289                          Higher              Don't Know
## 290                             Low                     Mid
## 291                             Low                     Low
## 292                             Mid                     Mid
## 293                             Low              Don't Know
## 294                          Higher                     Low
## 295                             Low                     Mid
## 296                             Mid                     Low
## 297                          Higher                     Low
## 298                       Very high                     Mid
## 299                          Higher                     Low
## 300                          Higher                  Higher
## 302                             Mid                     Low
## 303                             Low                     Mid
## 304                        Very Low                     Low
## 305                             Mid               Very high
## 306                             Low                     Low
## 307                        Very Low                     Low
## 308                             Low                     Mid
## 309                      Don't Know              Don't Know
## 310                             Low                     Low
## 311                             Mid                     Low
## 312                             Mid                     Mid
## 313                             Low                     Low
## 314                             Low                  Higher
## 315                      Don't Know              Don't Know
## 316                             Low               Very high
## 317                      Don't Know              Don't Know
## 318                        Very Low                Very Low
## 319                             Mid                  Higher
## 320                          Higher               Very high
## 321                        Very Low                  Higher
## 322                      Don't Know              Don't Know
## 323                      Don't Know              Don't Know
## 324                             Low                     Mid
## 325                             Low                     Mid
## 326                             Low                     Mid
## 327                             Mid                     Mid
## 328                             Mid                     Low
## 329                             Mid                  Higher
## 330                        Very Low                Very Low
## 331                             Low                     Mid
## 332                      Don't Know              Don't Know
## 333                        Very Low                  Higher
## 334                       Very high              Don't Know
## 335                        Very Low                  Higher
## 336                             Low               Very high
## 337                      Don't Know                Very Low
## 338                             Mid               Very high
## 339                          Higher                  Higher
## 340                             Low                     Mid
## 341                             Low                  Higher
## 342                             Mid                     Low
## 343                             Mid                     Low
## 344                             Low                     Low
## 345                             Low              Don't Know
## 346                             Mid                  Higher
## 347                             Low                     Low
## 348                             Low                     Mid
## 349                             Low                     Low
## 350                             Low                     Low
## 351                             Low                     Low
## 352                      Don't Know              Don't Know
## 353                             Low                     Mid
## 354                      Don't Know              Don't Know
## 355                             Low                     Mid
## 356                      Don't Know                     Mid
## 357                             Mid                     Mid
## 358                             Mid                     Mid
## 359                             Low              Don't Know
## 360                          Higher                  Higher
## 361                             Mid                     Mid
## 362                             Low                     Mid
## 363                             Mid                     Mid
## 364                             Low                     Mid
## 365                      Don't Know              Don't Know
## 366                             Low                     Low
## 367                             Low                     Low
## 368                      Don't Know                     Low
## 369                             Low              Don't Know
## 370                             Low                     Low
## 371                             Mid                     Mid
## 372                             Mid                     Mid
## 373                             Low                     Low
## 374                             Mid                     Mid
## 375                             Mid                  Higher
## 376                             Mid                     Mid
## 377                             Mid                     Low
## 378                             Mid                     Mid
## 379                             Low              Don't Know
## 380                             Low                     Mid
## 381                      Don't Know              Don't Know
## 382                             Low              Don't Know
## 383                             Low              Don't Know
## 384                             Mid              Don't Know
## 385                             Low              Don't Know
## 386                             Low              Don't Know
## 387                             Low                     Low
## 388                             Low              Don't Know
## 389                             Low              Don't Know
## 390                      Don't Know                  Higher
## 391                             Low                     Mid
## 392                             Low              Don't Know
## 393                      Don't Know              Don't Know
## 394                             Low              Don't Know
## 395                             Mid                     Low
## 396                             Low                     Low
## 397                             Low                     Low
## 398                             Low                     Low
## 399                             Low              Don't Know
## 400                             Low              Don't Know
## 401                             Low                     Mid
## 402                             Low              Don't Know
## 403                             Mid                     Mid
## 404                      Don't Know              Don't Know
## 405                            <NA>                     Mid
## 406                      Don't Know              Don't Know
## 407                             Mid              Don't Know
## 408                             Mid                     Low
## 409                            <NA>                    <NA>
## 410                             Mid                     Mid
## 411                             Mid                     Mid
## 412                             Mid                     Low
## 413                             Low                     Low
## 414                            <NA>                    <NA>
## 415                      Don't Know              Don't Know
## 416                             Mid                     Mid
## 417                            <NA>                    <NA>
## 418                             Low              Don't Know
## 419                             Low                     Mid
## 420                            <NA>                    <NA>
## 421                             Low                     Low
## 422                            <NA>                    <NA>
## 423                            <NA>                    <NA>
## 424                             Mid              Don't Know
## 425                             Mid                     Mid
## 426                             Low                     Mid
## 427                             Mid                     Mid
## 428                            <NA>                    <NA>
## 429                            <NA>                    <NA>
## 430                             Mid                     Mid
## 431                             Mid                     Mid
## 432                            <NA>                    <NA>
## 433                             Mid                     Mid
## 434                            <NA>                    <NA>
## 435                            <NA>                    <NA>
## 436                            <NA>                    <NA>
## 437                             Mid                     Mid
## 438                       Very high                  Higher
## 439                             Mid                     Mid
## 440                             Low                     Mid
## 441                             Mid                     Mid
## 442                            <NA>                    <NA>
## 443                             Low                     Mid
## 444                             Mid                     Low
## 445                             Mid                     Mid
## 446                             Mid                     Low
## 447                             Mid                     Low
## 448                             Mid                     Low
## 449                            <NA>                    <NA>
## 450                            <NA>                    <NA>
## 451                            <NA>                    <NA>
## 452                             Mid                     Mid
## 453                          Higher                    <NA>
## 454                             Mid                     Low
## 455                             Low                    <NA>
## 456                          Higher                    <NA>
## 457                      Don't Know              Don't Know
## 458                        Very Low                     Mid
## 459                            <NA>                     Mid
## 460                            <NA>               Very high
## 461                            <NA>                    <NA>
## 462                          Higher                     Mid
## 463                          Higher                    <NA>
## 464                             Mid                     Mid
## 465                          Higher                  Higher
## 466                      Don't Know                    <NA>
## 467                          Higher                  Higher
## 468                       Very high               Very high
## 469                          Higher                  Higher
## 470                             Mid                     Mid
## 471                             Mid                     Low
## 472                             Mid               Very high
## 473                      Don't Know              Don't Know
## 474                             Low              Don't Know
## 475                             Mid                     Mid
## 476                      Don't Know              Don't Know
## 477                            <NA>                     Low
## 478                      Don't Know                     Low
## 479                      Don't Know              Don't Know
## 480                      Don't Know              Don't Know
## 481                      Don't Know              Don't Know
## 482                        Very Low                Very Low
## 483                             Mid              Don't Know
## 484                      Don't Know              Don't Know
## 485                            <NA>                    <NA>
## 486                          Higher                     Mid
## 487                      Don't Know              Don't Know
## 488                      Don't Know              Don't Know
## 489                             Mid                     Low
## 490                             Low                Very Low
## 491                             Mid               Very high
## 492                            <NA>                    <NA>
## 493                        Very Low                Very Low
## 494                          Higher               Very high
## 495                          Higher                     Low
## 496                          Higher                  Higher
##      NGO.CBO..Transparency NGO.CBO..Rule.of.Law
## 1                      Low                  Low
## 2               Don't Know           Don't Know
## 3                   Higher                  Low
## 4                      Mid                  Mid
## 5                   Higher                  Mid
## 6                     <NA>           Don't Know
## 7                   Higher               Higher
## 8                      Mid               Higher
## 9                      Mid                  Mid
## 10                     Mid                  Mid
## 11                     Mid                  Mid
## 12                    <NA>                 <NA>
## 13               Very high               Higher
## 14                     Low                  Low
## 15                     Low                  Low
## 16                     Mid             Very Low
## 17                Very Low                  Mid
## 18                    <NA>                 <NA>
## 19                     Mid                  Mid
## 20                     Low                  Mid
## 21                  Higher               Higher
## 22                     Mid                  Low
## 23                     Low                  Mid
## 24                     Mid                  Mid
## 25                    <NA>                 <NA>
## 26              Don't Know           Don't Know
## 27                    <NA>                 <NA>
## 28               Very high               Higher
## 29              Don't Know           Don't Know
## 30                  Higher               Higher
## 31                    <NA>                 <NA>
## 32              Don't Know           Don't Know
## 33                     Mid                  Mid
## 34                     Mid               Higher
## 35                    <NA>                 <NA>
## 36                  Higher                  Mid
## 37                  Higher               Higher
## 38                     Mid                  Mid
## 39                     Mid               Higher
## 40                     Mid               Higher
## 41                  Higher               Higher
## 42                     Mid                  Mid
## 43                  Higher               Higher
## 44                     Low                  Mid
## 45                  Higher                  Mid
## 46                     Mid               Higher
## 47                     Mid                  Mid
## 48                     Mid                  Mid
## 49                    <NA>                  Mid
## 50              Don't Know           Don't Know
## 51                    <NA>           Don't Know
## 52               Very high            Very high
## 53                     Mid               Higher
## 54                     Mid                  Mid
## 55                  Higher                  Mid
## 56              Don't Know           Don't Know
## 57              Don't Know           Don't Know
## 58              Don't Know           Don't Know
## 59              Don't Know           Don't Know
## 60              Don't Know           Don't Know
## 61                     Mid                  Mid
## 62                  Higher               Higher
## 63                     Mid               Higher
## 64                     Mid                  Mid
## 65                     Mid               Higher
## 66                     Mid               Higher
## 67                     Mid               Higher
## 68                     Mid               Higher
## 69               Very high                  Mid
## 70                     Mid                  Low
## 71                  Higher                  Mid
## 72                  Higher               Higher
## 73                  Higher               Higher
## 74                  Higher               Higher
## 75                  Higher               Higher
## 76                  Higher               Higher
## 77                    <NA>                 <NA>
## 78                  Higher               Higher
## 79                     Mid                  Mid
## 80                     Mid               Higher
## 81                     Mid                  Low
## 82                     Mid                  Mid
## 83                     Mid                  Mid
## 84                     Mid                  Mid
## 85                     Mid               Higher
## 86                  Higher               Higher
## 87                  Higher               Higher
## 88                  Higher               Higher
## 89                  Higher               Higher
## 90                  Higher               Higher
## 91                     Mid                  Low
## 92                     Mid               Higher
## 93                     Mid                  Mid
## 94                  Higher               Higher
## 95                     Mid                  Mid
## 96                  Higher               Higher
## 97                     Mid                  Mid
## 98                     Mid               Higher
## 99                     Low                  Mid
## 100                 Higher               Higher
## 101              Very high            Very high
## 102                    Mid                  Low
## 103                    Low            Very high
## 104                    Low                  Mid
## 105                 Higher               Higher
## 106                    Mid                  Mid
## 107                    Mid               Higher
## 108                    Low                  Low
## 109                 Higher               Higher
## 110                    Mid                  Mid
## 111                 Higher            Very high
## 112              Very high                  Mid
## 113             Don't Know           Don't Know
## 114                 Higher               Higher
## 115                    Mid                  Mid
## 116             Don't Know           Don't Know
## 117             Don't Know               Higher
## 118             Don't Know           Don't Know
## 119              Very high               Higher
## 120                    Mid               Higher
## 121                 Higher               Higher
## 122              Very high            Very high
## 123              Very high            Very high
## 124              Very high                 <NA>
## 125              Very high            Very high
## 126              Very high            Very high
## 127              Very high            Very high
## 128              Very high               Higher
## 129              Very high            Very high
## 130                    Low                  Low
## 131                 Higher               Higher
## 132                    Mid                  Mid
## 133                 Higher               Higher
## 134                 Higher            Very high
## 135                    Mid               Higher
## 136             Don't Know           Don't Know
## 137              Very high               Higher
## 138                    Mid                  Mid
## 139                 Higher            Very high
## 140             Don't Know               Higher
## 141                 Higher            Very high
## 142                 Higher                  Mid
## 143                 Higher            Very high
## 144                 Higher               Higher
## 145                 Higher               Higher
## 146                 Higher            Very high
## 147              Very high                  Mid
## 148             Don't Know           Don't Know
## 149                 Higher               Higher
## 150                    Mid                  Mid
## 151             Don't Know           Don't Know
## 152              Very high               Higher
## 153                 Higher               Higher
## 154                    Mid               Higher
## 155                 Higher               Higher
## 156             Don't Know           Don't Know
## 157                 Higher               Higher
## 158              Very high               Higher
## 159                 Higher               Higher
## 160              Very high               Higher
## 161              Very high               Higher
## 162                    Mid               Higher
## 163             Don't Know           Don't Know
## 164                 Higher               Higher
## 165              Very high               Higher
## 166                    Mid               Higher
## 167                 Higher               Higher
## 168             Don't Know           Don't Know
## 169             Don't Know           Don't Know
## 170             Don't Know           Don't Know
## 171             Don't Know           Don't Know
## 172             Don't Know           Don't Know
## 173             Don't Know           Don't Know
## 174             Don't Know           Don't Know
## 175             Don't Know           Don't Know
## 176                 Higher               Higher
## 177             Don't Know           Don't Know
## 178                 Higher               Higher
## 179                    Mid                  Mid
## 180                    Mid               Higher
## 181                    Mid                  Mid
## 182                 Higher               Higher
## 183             Don't Know           Don't Know
## 184                   <NA>                 <NA>
## 185                 Higher               Higher
## 186                 Higher               Higher
## 187                 Higher               Higher
## 188             Don't Know           Don't Know
## 189                    Mid                  Mid
## 190                 Higher               Higher
## 191                    Mid                  Mid
## 192              Very high            Very high
## 193                    Mid                  Mid
## 194                    Mid                  Mid
## 195             Don't Know           Don't Know
## 196             Don't Know           Don't Know
## 197                 Higher               Higher
## 198             Don't Know           Don't Know
## 199                 Higher               Higher
## 200             Don't Know           Don't Know
## 201                    Mid                  Mid
## 202                    Low                  Mid
## 203                    Mid               Higher
## 204              Very high               Higher
## 205                    Mid               Higher
## 206                 Higher            Very high
## 207                 Higher            Very high
## 208                 Higher            Very high
## 209                 Higher               Higher
## 210                    Mid                  Mid
## 211                    Mid                  Mid
## 212                 Higher               Higher
## 213                 Higher               Higher
## 214                 Higher            Very high
## 215                    Mid               Higher
## 216                 Higher               Higher
## 217                    Mid               Higher
## 218                    Mid               Higher
## 219                    Mid                  Low
## 220                    Low                  Mid
## 221                 Higher               Higher
## 222                    Mid                  Mid
## 223                    Low                  Mid
## 224                    Mid                  Mid
## 225                    Low                  Mid
## 226                    Mid                  Low
## 227                 Higher                  Mid
## 228                 Higher                  Mid
## 229                 Higher               Higher
## 230                    Mid                  Low
## 231              Very high                  Low
## 232                    Mid               Higher
## 233                 Higher                  Low
## 234                 Higher                  Low
## 235                 Higher                  Low
## 236                 Higher               Higher
## 237                    Mid                  Low
## 238                 Higher                  Mid
## 239                 Higher                  Mid
## 240                    Mid               Higher
## 241                 Higher                  Low
## 242                 Higher                  Low
## 243                 Higher                  Low
## 244                 Higher                  Low
## 245              Very high                  Mid
## 246                    Mid                  Mid
## 247                    Mid                  Mid
## 248                 Higher               Higher
## 249                    Mid               Higher
## 250                 Higher             Very Low
## 251                 Higher                  Mid
## 252                    Mid               Higher
## 253                 Higher                 <NA>
## 254                 Higher                  Mid
## 255                    Low                  Low
## 256                 Higher               Higher
## 257                    Mid                  Mid
## 258                    Mid                  Mid
## 259                    Mid                  Low
## 260                 Higher                  Mid
## 261              Very high               Higher
## 262                    Mid                  Mid
## 263                    Mid               Higher
## 264                    Mid                  Mid
## 265                    Mid                  Mid
## 266              Very high            Very high
## 267              Very high            Very high
## 268                    Low                  Mid
## 269                 Higher                  Mid
## 270                 Higher                  Mid
## 271                    Low                  Low
## 272                 Higher               Higher
## 273                 Higher                  Mid
## 274                    Low                  Low
## 275                 Higher               Higher
## 276                 Higher                  Mid
## 277                 Higher               Higher
## 278                    Mid                  Mid
## 279                   <NA>                 <NA>
## 280                    Mid                  Mid
## 281                    Mid                  Mid
## 282                 Higher               Higher
## 283                 Higher               Higher
## 284                 Higher                 <NA>
## 285                    Low                  Low
## 286                    Low                  Low
## 287                 Higher               Higher
## 288                    Mid                  Mid
## 289             Don't Know           Don't Know
## 290                    Mid               Higher
## 291                    Low                  Low
## 292                 Higher            Very high
## 293               Very Low                  Low
## 294                    Low                  Low
## 295                 Higher                 <NA>
## 296             Don't Know                  Mid
## 297                    Low                 <NA>
## 298                    Low                  Low
## 299                    Low                  Low
## 300                    Mid               Higher
## 302                   <NA>                 <NA>
## 303                    Mid                 <NA>
## 304               Very Low                 <NA>
## 305                    Mid                 <NA>
## 306                    Mid                 <NA>
## 307                    Mid                 <NA>
## 308                    Low                 <NA>
## 309             Don't Know                 <NA>
## 310                    Low                 <NA>
## 311                    Low                 <NA>
## 312                    Mid                 <NA>
## 313                    Low                 <NA>
## 314                    Mid                 <NA>
## 315             Don't Know                 <NA>
## 316              Very high                 <NA>
## 317             Don't Know                 <NA>
## 318                    Low                 <NA>
## 319               Very Low                 <NA>
## 320              Very high                 <NA>
## 321                 Higher                 <NA>
## 322             Don't Know                 <NA>
## 323             Don't Know                 <NA>
## 324                    Mid                 <NA>
## 325                    Mid                 <NA>
## 326                    Low                 <NA>
## 327                    Mid                 <NA>
## 328                    Mid                 <NA>
## 329                    Low                 <NA>
## 330                 Higher                 <NA>
## 331             Don't Know                 <NA>
## 332                 Higher                 <NA>
## 333                    Low                 <NA>
## 334              Very high                 <NA>
## 335                 Higher                 <NA>
## 336              Very high                 <NA>
## 337                    Low                 <NA>
## 338                    Mid                 <NA>
## 339                    Mid                 <NA>
## 340                    Low                 <NA>
## 341                    Mid                 <NA>
## 342                    Low                 <NA>
## 343                 Higher                 <NA>
## 344                    Mid                 <NA>
## 345             Don't Know                 <NA>
## 346                 Higher                 <NA>
## 347               Very Low                 <NA>
## 348                    Low                 <NA>
## 349                    Mid                 <NA>
## 350                    Low                 <NA>
## 351                    Mid                 <NA>
## 352             Don't Know           Don't Know
## 353                    Mid                  Mid
## 354             Don't Know           Don't Know
## 355                    Low                  Mid
## 356                    Mid                  Mid
## 357                    Mid                  Mid
## 358                    Mid                  Mid
## 359             Don't Know           Don't Know
## 360                 Higher                  Mid
## 361                    Mid                  Mid
## 362                    Mid                  Mid
## 363                    Mid                  Mid
## 364                    Mid                  Mid
## 365             Don't Know           Don't Know
## 366                    Low                  Low
## 367                    Mid                  Mid
## 368                    Low                  Low
## 369             Don't Know           Don't Know
## 370                    Low                  Low
## 371                    Mid                  Mid
## 372                    Mid                  Mid
## 373                    Low                  Low
## 374                 Higher                  Mid
## 375                 Higher                  Mid
## 376                    Mid                  Mid
## 377                    Low                  Low
## 378                    Mid                  Mid
## 379             Don't Know           Don't Know
## 380                    Mid                  Mid
## 381             Don't Know           Don't Know
## 382             Don't Know           Don't Know
## 383             Don't Know           Don't Know
## 384             Don't Know           Don't Know
## 385             Don't Know           Don't Know
## 386             Don't Know           Don't Know
## 387                    Low                  Low
## 388             Don't Know           Don't Know
## 389             Don't Know           Don't Know
## 390                 Higher                  Mid
## 391                    Mid                  Mid
## 392             Don't Know           Don't Know
## 393             Don't Know           Don't Know
## 394             Don't Know           Don't Know
## 395                    Low                  Low
## 396                    Low                  Low
## 397                    Low                  Low
## 398                    Low                  Low
## 399             Don't Know           Don't Know
## 400             Don't Know           Don't Know
## 401                    Mid                  Mid
## 402             Don't Know           Don't Know
## 403                    Mid                  Mid
## 404             Don't Know           Don't Know
## 405                   <NA>                 <NA>
## 406             Don't Know           Don't Know
## 407             Don't Know           Don't Know
## 408                    Low                  Low
## 409             Don't Know                 <NA>
## 410                    Low                  Low
## 411                    Mid                  Mid
## 412                    Low                  Low
## 413                    Low                  Low
## 414                   <NA>                 <NA>
## 415             Don't Know           Don't Know
## 416                    Mid                  Mid
## 417                   <NA>                 <NA>
## 418             Don't Know           Don't Know
## 419                    Mid                  Mid
## 420                   <NA>                 <NA>
## 421                    Low                  Low
## 422                   <NA>                 <NA>
## 423                   <NA>                 <NA>
## 424             Don't Know           Don't Know
## 425                    Low                  Mid
## 426                    Low                  Mid
## 427                    Mid                  Mid
## 428                   <NA>                 <NA>
## 429                   <NA>                 <NA>
## 430                    Mid                  Mid
## 431                    Mid                  Mid
## 432                   <NA>                 <NA>
## 433                    Mid                  Mid
## 434                   <NA>                 <NA>
## 435                   <NA>                 <NA>
## 436                   <NA>                 <NA>
## 437                    Mid                  Mid
## 438                 Higher               Higher
## 439                    Mid                  Mid
## 440                    Mid                  Low
## 441                    Mid                  Mid
## 442                   <NA>                 <NA>
## 443                    Mid                  Mid
## 444                    Mid                  Mid
## 445                    Mid                  Mid
## 446                    Low                  Low
## 447                    Low                  Mid
## 448                    Low                  Mid
## 449                   <NA>                 <NA>
## 450                   <NA>                 <NA>
## 451                   <NA>                 <NA>
## 452                    Mid                  Mid
## 453                   <NA>                 <NA>
## 454                    Low                  Low
## 455                   <NA>                 <NA>
## 456                   <NA>                 <NA>
## 457             Don't Know           Don't Know
## 458                    Mid                  Mid
## 459                    Mid                  Mid
## 460                   <NA>                 <NA>
## 461             Don't Know                 <NA>
## 462                    Mid               Higher
## 463                   <NA>                 <NA>
## 464                    Low                  Low
## 465                    Mid                  Mid
## 466                   <NA>                 <NA>
## 467                 Higher               Higher
## 468              Very high            Very high
## 469                    Mid               Higher
## 470              Very high               Higher
## 471                    Low             Very Low
## 472              Very high            Very high
## 473             Don't Know           Don't Know
## 474             Don't Know           Don't Know
## 475                    Mid                  Mid
## 476             Don't Know           Don't Know
## 477                    Low                 <NA>
## 478                    Low             Very Low
## 479             Don't Know           Don't Know
## 480             Don't Know           Don't Know
## 481             Don't Know             Very Low
## 482               Very Low             Very Low
## 483             Don't Know                 <NA>
## 484             Don't Know           Don't Know
## 485                   <NA>                 <NA>
## 486                    Mid                  Mid
## 487             Don't Know           Don't Know
## 488             Don't Know           Don't Know
## 489             Don't Know                  Mid
## 490               Very Low             Very Low
## 491              Very high            Very high
## 492                   <NA>                 <NA>
## 493               Very Low             Very Low
## 494              Very high                  Mid
## 495             Don't Know               Higher
## 496                 Higher               Higher
##      NGO.CBO..Citizen.s.Participaton Private.Sector..Accountibility
## 1                                Low                            Mid
## 2                         Don't Know                     Don't Know
## 3                             Higher                         Higher
## 4                                Mid                         Higher
## 5                             Higher                         Higher
## 6                         Don't Know                     Don't Know
## 7                             Higher                            Mid
## 8                                Mid                         Higher
## 9                                Mid                            Mid
## 10                               Mid                         Higher
## 11                               Mid                      Very high
## 12                              <NA>                           <NA>
## 13                         Very high                            Mid
## 14                               Mid                            Mid
## 15                               Mid                            Mid
## 16                          Very Low                      Very high
## 17                          Very Low                           <NA>
## 18                              <NA>                           <NA>
## 19                               Low                            Mid
## 20                               Mid                           <NA>
## 21                            Higher                            Mid
## 22                         Very high                      Very high
## 23                               Low                            Mid
## 24                               Mid                            Mid
## 25                              <NA>                            Mid
## 26                        Don't Know                         Higher
## 27                              <NA>                         Higher
## 28                        Don't Know                     Don't Know
## 29                        Don't Know                     Don't Know
## 30                               Mid                            Mid
## 31                              <NA>                            Mid
## 32                        Don't Know                     Don't Know
## 33                               Mid                            Mid
## 34                               Mid                         Higher
## 35                              <NA>                         Higher
## 36                            Higher                      Very high
## 37                            Higher                            Mid
## 38                               Mid                            Mid
## 39                               Mid                         Higher
## 40                               Mid                            Mid
## 41                               Mid                         Higher
## 42                               Mid                         Higher
## 43                               Mid                         Higher
## 44                               Mid                            Mid
## 45                               Mid                         Higher
## 46                               Mid                            Mid
## 47                               Mid                            Mid
## 48                               Low                         Higher
## 49                               Mid                            Mid
## 50                              <NA>                         Higher
## 51                        Don't Know                     Don't Know
## 52                        Don't Know                     Don't Know
## 53                            Higher                         Higher
## 54                               Mid                            Mid
## 55                               Low                         Higher
## 56                        Don't Know                     Don't Know
## 57                        Don't Know                     Don't Know
## 58                        Don't Know                     Don't Know
## 59                        Don't Know                     Don't Know
## 60                        Don't Know                         Higher
## 61                               Mid                         Higher
## 62                            Higher                         Higher
## 63                               Mid                         Higher
## 64                               Mid                         Higher
## 65                               Mid                         Higher
## 66                               Mid                         Higher
## 67                            Higher                           <NA>
## 68                               Mid                         Higher
## 69                         Very high                            Mid
## 70                               Mid                            Mid
## 71                            Higher                            Mid
## 72                            Higher                         Higher
## 73                            Higher                            Mid
## 74                            Higher                         Higher
## 75                            Higher                            Mid
## 76                            Higher                            Mid
## 77                              <NA>                      Very high
## 78                            Higher                         Higher
## 79                            Higher                           <NA>
## 80                               Mid                            Mid
## 81                               Mid                            Mid
## 82                               Mid                            Mid
## 83                               Mid                         Higher
## 84                               Mid                         Higher
## 85                               Mid                         Higher
## 86                            Higher                     Don't Know
## 87                            Higher                         Higher
## 88                            Higher                         Higher
## 89                               Mid                         Higher
## 90                               Mid                            Mid
## 91                               Mid                         Higher
## 92                               Mid                         Higher
## 93                               Low                         Higher
## 94                               Mid                         Higher
## 95                               Mid                            Mid
## 96                            Higher                         Higher
## 97                               Mid                         Higher
## 98                               Mid                         Higher
## 99                               Mid                         Higher
## 100                           Higher                         Higher
## 101                        Very high                            Mid
## 102                        Very high                            Mid
## 103                           Higher                     Don't Know
## 104                           Higher                            Low
## 105                           Higher                            Low
## 106                           Higher                            Mid
## 107                           Higher                      Very high
## 108                              Low                            Mid
## 109                           Higher                         Higher
## 110                              Low                         Higher
## 111                              Low                         Higher
## 112                        Very high                            Mid
## 113                       Don't Know                      Very high
## 114                           Higher                         Higher
## 115                              Mid                         Higher
## 116                       Don't Know                            Mid
## 117                             <NA>                      Very high
## 118                       Don't Know                     Don't Know
## 119                        Very high                      Very high
## 120                           Higher                         Higher
## 121                              Mid                         Higher
## 122                        Very high                            Mid
## 123                           Higher                      Very high
## 124                        Very high                      Very high
## 125                        Very high                         Higher
## 126                           Higher                      Very high
## 127                           Higher                         Higher
## 128                           Higher                         Higher
## 129                        Very high                      Very high
## 130                              Mid                         Higher
## 131                           Higher                      Very high
## 132                              Low                            Mid
## 133                           Higher                            Mid
## 134                           Higher                      Very high
## 135                              Low                            Mid
## 136                       Don't Know                     Don't Know
## 137                           Higher                            Low
## 138                        Very high                            Mid
## 139                              Mid                         Higher
## 140                              Mid                         Higher
## 141                           Higher                         Higher
## 142                              Low                         Higher
## 143                           Higher                         Higher
## 144                           Higher                      Very high
## 145                        Very high                      Very high
## 146                              Mid                         Higher
## 147                           Higher                            Mid
## 148                       Don't Know                         Higher
## 149                           Higher                         Higher
## 150                              Mid                         Higher
## 151                       Don't Know                     Don't Know
## 152                           Higher                            Mid
## 153                           Higher                     Don't Know
## 154                        Very high                     Don't Know
## 155                           Higher                         Higher
## 156                       Don't Know                     Don't Know
## 157                           Higher                     Don't Know
## 158                        Very high                            Mid
## 159                           Higher                            Mid
## 160                        Very high                            Mid
## 161                        Very high                           <NA>
## 162                        Very high                         Higher
## 163                       Don't Know                     Don't Know
## 164                           Higher                     Don't Know
## 165                              Mid                            Mid
## 166                           Higher                            Mid
## 167                        Very high                            Mid
## 168                       Don't Know                     Don't Know
## 169                       Don't Know                     Don't Know
## 170                       Don't Know                     Don't Know
## 171                       Don't Know                     Don't Know
## 172                       Don't Know                     Don't Know
## 173                       Don't Know                     Don't Know
## 174                       Don't Know                         Higher
## 175                       Don't Know                     Don't Know
## 176                           Higher                            Mid
## 177                       Don't Know                     Don't Know
## 178                              Mid                     Don't Know
## 179                           Higher                     Don't Know
## 180                              Mid                         Higher
## 181                              Mid                            Mid
## 182                           Higher                      Very high
## 183                       Don't Know                     Don't Know
## 184                             <NA>                     Don't Know
## 185                        Very high                            Mid
## 186                           Higher                         Higher
## 187                           Higher                            Mid
## 188                       Don't Know                     Don't Know
## 189                              Mid                         Higher
## 190                           Higher                            Mid
## 191                              Mid                         Higher
## 192                        Very high                         Higher
## 193                              Mid                         Higher
## 194                           Higher                      Very high
## 195                       Don't Know                     Don't Know
## 196                       Don't Know                            Mid
## 197                           Higher                      Very high
## 198                       Don't Know                         Higher
## 199                           Higher                         Higher
## 200                       Don't Know                     Don't Know
## 201                           Higher                      Very high
## 202                              Mid                         Higher
## 203                        Very high                            Low
## 204                        Very high                      Very high
## 205                              Mid                         Higher
## 206                           Higher                            Mid
## 207                           Higher                         Higher
## 208                           Higher                            Mid
## 209                              Mid                         Higher
## 210                           Higher                         Higher
## 211                              Mid                         Higher
## 212                           Higher                            Low
## 213                           Higher                            Low
## 214                           Higher                         Higher
## 215                           Higher                            Low
## 216                           Higher                            Low
## 217                              Low                            Mid
## 218                           Higher                         Higher
## 219                              Mid                            Mid
## 220                              Mid                         Higher
## 221                           Higher                            Mid
## 222                           Higher                            Low
## 223                              Low                            Mid
## 224                           Higher                         Higher
## 225                           Higher                            Mid
## 226                        Very high                            Mid
## 227                           Higher                            Mid
## 228                              Low                            Mid
## 229                              Mid                            Low
## 230                              Mid                            Mid
## 231                        Very high                            Low
## 232                           Higher                      Very high
## 233                              Low                            Mid
## 234                              Low                            Mid
## 235                              Low                            Mid
## 236                        Very high                         Higher
## 237                           Higher                      Very high
## 238                           Higher                      Very high
## 239                              Low                            Mid
## 240                           Higher                            Mid
## 241                              Low                            Mid
## 242                              Low                            Mid
## 243                              Mid                            Mid
## 244                              Low                            Mid
## 245                        Very high                         Higher
## 246                              Mid                            Mid
## 247                              Mid                            Mid
## 248                              Mid                      Very high
## 249                           Higher                         Higher
## 250                           Higher                       Very Low
## 251                             <NA>                            Mid
## 252                             <NA>                            Mid
## 253                             <NA>                     Don't Know
## 254                             <NA>                            Mid
## 255                             <NA>                            Mid
## 256                             <NA>                         Higher
## 257                             <NA>                            Mid
## 258                             <NA>                         Higher
## 259                             <NA>                            Mid
## 260                             <NA>                            Mid
## 261                             <NA>                            Mid
## 262                             <NA>                            Mid
## 263                             <NA>                            Mid
## 264                             <NA>                         Higher
## 265                             <NA>                         Higher
## 266                             <NA>                         Higher
## 267                             <NA>                         Higher
## 268                             <NA>                         Higher
## 269                             <NA>                         Higher
## 270                             <NA>                            Mid
## 271                             <NA>                       Very Low
## 272                             <NA>                         Higher
## 273                             <NA>                         Higher
## 274                             <NA>                            Mid
## 275                             <NA>                         Higher
## 276                             <NA>                      Very high
## 277                             <NA>                            Mid
## 278                             <NA>                         Higher
## 279                             <NA>                           <NA>
## 280                             <NA>                         Higher
## 281                             <NA>                            Mid
## 282                             <NA>                         Higher
## 283                             <NA>                            Mid
## 284                             <NA>                            Mid
## 285                             <NA>                            Low
## 286                             <NA>                            Low
## 287                             <NA>                            Mid
## 288                             <NA>                            Mid
## 289                             <NA>                     Don't Know
## 290                             <NA>                            Low
## 291                             <NA>                            Low
## 292                             <NA>                     Don't Know
## 293                             <NA>                     Don't Know
## 294                             <NA>                            Mid
## 295                             <NA>                            Mid
## 296                             <NA>                     Don't Know
## 297                             <NA>                            Low
## 298                             <NA>                            Mid
## 299                             <NA>                         Higher
## 300                             <NA>                         Higher
## 302                              Low                       Very Low
## 303                              Low                            Low
## 304                              Low                       Very Low
## 305                              Mid                     Don't Know
## 306                              Low                            Mid
## 307                              Low                       Very Low
## 308                              Mid                            Low
## 309                       Don't Know                     Don't Know
## 310                              Low                            Low
## 311                              Mid                            Low
## 312                              Mid                            Mid
## 313                              Low                            Low
## 314                              Mid                         Higher
## 315                       Don't Know                     Don't Know
## 316                              Low                      Very high
## 317                       Don't Know                       Very Low
## 318                         Very Low                       Very Low
## 319                              Mid                         Higher
## 320                        Very high                            Mid
## 321                              Mid                         Higher
## 322                       Don't Know                     Don't Know
## 323                       Don't Know                     Don't Know
## 324                              Low                            Mid
## 325                              Mid                            Mid
## 326                              Mid                            Mid
## 327                              Mid                            Low
## 328                              Mid                            Low
## 329                         Very Low                       Very Low
## 330                         Very Low                       Very Low
## 331                       Don't Know                            Mid
## 332                        Very high                     Don't Know
## 333                              Mid                            Mid
## 334                        Very high                     Don't Know
## 335                        Very high                       Very Low
## 336                        Very high                      Very high
## 337                        Very high                       Very Low
## 338                           Higher                      Very high
## 339                           Higher                         Higher
## 340                              Low                            Low
## 341                              Low                         Higher
## 342                              Low                            Low
## 343                              Mid                            Mid
## 344                              Low                            Low
## 345                              Mid                     Don't Know
## 346                           Higher                         Higher
## 347                              Low                            Mid
## 348                              Mid                            Mid
## 349                              Mid                            Low
## 350                         Very Low                            Low
## 351                              Low                            Low
## 352                       Don't Know                     Don't Know
## 353                              Mid                            Mid
## 354                       Don't Know                     Don't Know
## 355                              Mid                            Low
## 356                              Mid                     Don't Know
## 357                              Mid                            Mid
## 358                           Higher                            Mid
## 359                       Don't Know                            Low
## 360                              Mid                         Higher
## 361                              Mid                            Low
## 362                              Mid                            Low
## 363                              Mid                         Higher
## 364                              Mid                            Low
## 365                       Don't Know                     Don't Know
## 366                              Low                            Low
## 367                              Mid                            Low
## 368                              Low                            Low
## 369                       Don't Know                            Low
## 370                              Low                            Low
## 371                              Mid                            Low
## 372                           Higher                         Higher
## 373                              Low                            Low
## 374                           Higher                            Low
## 375                           Higher                            Mid
## 376                              Mid                            Mid
## 377                              Mid                            Mid
## 378                              Mid                            Low
## 379                       Don't Know                            Low
## 380                              Mid                     Don't Know
## 381                       Don't Know                     Don't Know
## 382                       Don't Know                     Don't Know
## 383                       Don't Know                     Don't Know
## 384                       Don't Know                            Low
## 385                       Don't Know                     Don't Know
## 386                       Don't Know                            Low
## 387                              Low                            Low
## 388                       Don't Know                     Don't Know
## 389                       Don't Know                     Don't Know
## 390                           Higher                            Low
## 391                           Higher                            Low
## 392                       Don't Know                            Low
## 393                       Don't Know                     Don't Know
## 394                       Don't Know                     Don't Know
## 395                              Mid                            Low
## 396                              Low                     Don't Know
## 397                              Mid                            Low
## 398                              Mid                            Low
## 399                       Don't Know                     Don't Know
## 400                       Don't Know                     Don't Know
## 401                              Mid                            Low
## 402                       Don't Know                     Don't Know
## 403                              Mid                            Low
## 404                       Don't Know                         Higher
## 405                             <NA>                            Mid
## 406                       Don't Know                     Don't Know
## 407                       Don't Know                     Don't Know
## 408                              Low                            Mid
## 409                             <NA>                           <NA>
## 410                              Low                            Mid
## 411                              Mid                     Don't Know
## 412                              Low                            Mid
## 413                              Low                            Mid
## 414                             <NA>                           <NA>
## 415                       Don't Know                     Don't Know
## 416                              Mid                            Mid
## 417                       Don't Know                           <NA>
## 418                       Don't Know                     Don't Know
## 419                              Mid                            Low
## 420                             <NA>                           <NA>
## 421                              Low                            Mid
## 422                             <NA>                           <NA>
## 423                             <NA>                           <NA>
## 424                       Don't Know                     Don't Know
## 425                              Mid                            Mid
## 426                              Low                            Mid
## 427                              Mid                            Mid
## 428                             <NA>                           <NA>
## 429                             <NA>                           <NA>
## 430                              Mid                            Mid
## 431                              Mid                            Mid
## 432                             <NA>                           <NA>
## 433                              Mid                            Mid
## 434                             <NA>                           <NA>
## 435                             <NA>                           <NA>
## 436                             <NA>                           <NA>
## 437                              Mid                            Mid
## 438                           Higher                         Higher
## 439                              Mid                            Mid
## 440                              Low                            Mid
## 441                              Mid                            Mid
## 442                             <NA>                           <NA>
## 443                              Low                            Low
## 444                              Low                            Low
## 445                              Mid                            Mid
## 446                              Low                            Mid
## 447                              Mid                            Low
## 448                              Low                            Low
## 449                             <NA>                           <NA>
## 450                             <NA>                           <NA>
## 451                             <NA>                           <NA>
## 452                              Low                            Mid
## 453                             <NA>                           <NA>
## 454                              Low                            Low
## 455                             <NA>                            Mid
## 456                             <NA>                         Higher
## 457                       Don't Know                     Don't Know
## 458                           Higher                         Higher
## 459                              Mid                         Higher
## 460                             <NA>                           <NA>
## 461                             <NA>                     Don't Know
## 462                              Mid                         Higher
## 463                             <NA>                      Very high
## 464                           Higher                         Higher
## 465                              Mid                         Higher
## 466                             <NA>                       Very Low
## 467                           Higher                         Higher
## 468                              Mid                      Very high
## 469                              Mid                            Mid
## 470                        Very high                            Mid
## 471                           Higher                         Higher
## 472                        Very high                            Mid
## 473                       Don't Know                     Don't Know
## 474                       Don't Know                     Don't Know
## 475                              Mid                            Low
## 476                       Don't Know                     Don't Know
## 477                             <NA>                            Mid
## 478                       Don't Know                            Low
## 479                       Don't Know                     Don't Know
## 480                       Don't Know                     Don't Know
## 481                       Don't Know                     Don't Know
## 482                         Very Low                       Very Low
## 483                             <NA>                         Higher
## 484                       Don't Know                     Don't Know
## 485                             <NA>                           <NA>
## 486                              Mid                            Mid
## 487                       Don't Know                     Don't Know
## 488                       Don't Know                     Don't Know
## 489                       Don't Know                            Low
## 490                         Very Low                         Higher
## 491                        Very high                            Low
## 492                             <NA>                           <NA>
## 493                         Very Low                       Very Low
## 494                              Mid                            Low
## 495                              Mid                            Mid
## 496                           Higher                         Higher
##      Private.Sector..Transparency Private.Sector..Rule.of.Law
## 1                             Mid                         Mid
## 2                      Don't Know                  Don't Know
## 3                          Higher                      Higher
## 4                          Higher                      Higher
## 5                             Mid                         Mid
## 6                            <NA>                  Don't Know
## 7                          Higher                         Mid
## 8                          Higher                   Very high
## 9                             Mid                         Mid
## 10                      Very high                   Very high
## 11                      Very high                      Higher
## 12                           <NA>                        <NA>
## 13                            Mid                      Higher
## 14                            Low                         Low
## 15                            Mid                         Low
## 16                            Mid                         Low
## 17                            Low                         Mid
## 18                           <NA>                        <NA>
## 19                            Mid                         Low
## 20                            Mid                         Mid
## 21                            Mid                      Higher
## 22                            Mid                    Very Low
## 23                            Low                      Higher
## 24                            Low                         Mid
## 25                            Mid                         Mid
## 26                         Higher                      Higher
## 27                         Higher                      Higher
## 28                     Don't Know                  Don't Know
## 29                     Don't Know                  Don't Know
## 30                            Mid                      Higher
## 31                            Mid                         Mid
## 32                     Don't Know                  Don't Know
## 33                            Mid                      Higher
## 34                            Mid                         Mid
## 35                         Higher                      Higher
## 36                         Higher                         Mid
## 37                            Mid                         Mid
## 38                            Mid                         Mid
## 39                         Higher                      Higher
## 40                            Mid                         Mid
## 41                         Higher                      Higher
## 42                            Mid                         Low
## 43                            Mid                         Mid
## 44                            Low                         Mid
## 45                      Very high                         Mid
## 46                      Very high                   Very high
## 47                            Mid                         Mid
## 48                         Higher                         Mid
## 49                            Mid                         Mid
## 50                      Very high                   Very high
## 51                     Don't Know                  Don't Know
## 52                     Don't Know                  Don't Know
## 53                         Higher                      Higher
## 54                            Mid                         Mid
## 55                         Higher                         Mid
## 56                     Don't Know                  Don't Know
## 57                     Don't Know                  Don't Know
## 58                     Don't Know                  Don't Know
## 59                     Don't Know                  Don't Know
## 60                         Higher                      Higher
## 61                            Mid                         Mid
## 62                         Higher                      Higher
## 63                         Higher                      Higher
## 64                            Mid                         Mid
## 65                            Mid                      Higher
## 66                            Mid                         Mid
## 67                           <NA>                        <NA>
## 68                            Mid                         Mid
## 69                         Higher                         Mid
## 70                         Higher                      Higher
## 71                            Mid                      Higher
## 72                            Mid                         Mid
## 73                            Mid                         Mid
## 74                         Higher                      Higher
## 75                         Higher                         Mid
## 76                         Higher                         Mid
## 77                      Very high                         Mid
## 78                         Higher                      Higher
## 79                           <NA>                        <NA>
## 80                         Higher                         Mid
## 81                            Mid                         Mid
## 82                         Higher                         Mid
## 83                            Mid                         Mid
## 84                         Higher                      Higher
## 85                            Mid                         Mid
## 86                     Don't Know                  Don't Know
## 87                         Higher                      Higher
## 88                         Higher                      Higher
## 89                         Higher                      Higher
## 90                            Mid                      Higher
## 91                            Mid                         Mid
## 92                            Mid                         Mid
## 93                            Mid                         Mid
## 94                            Mid                      Higher
## 95                         Higher                      Higher
## 96                         Higher                      Higher
## 97                            Mid                      Higher
## 98                         Higher                         Mid
## 99                            Mid                         Mid
## 100                           Mid                         Mid
## 101                           Low                    Very Low
## 102                    Don't Know                      Higher
## 103                     Very high                      Higher
## 104                      Very Low                      Higher
## 105                        Higher                   Very high
## 106                        Higher                      Higher
## 107                        Higher                         Mid
## 108                           Mid                      Higher
## 109                           Mid                      Higher
## 110                           Mid                         Mid
## 111                           Mid                      Higher
## 112                        Higher                   Very high
## 113                     Very high                   Very high
## 114                        Higher                   Very high
## 115                        Higher                   Very high
## 116                           Mid                         Mid
## 117                        Higher                      Higher
## 118                    Don't Know                  Don't Know
## 119                     Very high                      Higher
## 120                     Very high                      Higher
## 121                        Higher                   Very high
## 122                           Mid                         Mid
## 123                     Very high                   Very high
## 124                     Very high                         Mid
## 125                        Higher                         Mid
## 126                     Very high                      Higher
## 127                        Higher                         Mid
## 128                     Very high                         Mid
## 129                        Higher                      Higher
## 130                        Higher                      Higher
## 131                     Very high                         Mid
## 132                     Very high                      Higher
## 133                           Low                         Mid
## 134                           Mid                         Mid
## 135                        Higher                         Mid
## 136                    Don't Know                  Don't Know
## 137                        Higher                   Very high
## 138                        Higher                   Very high
## 139                     Very high                      Higher
## 140                    Don't Know                   Very high
## 141                        Higher                   Very high
## 142                        Higher                   Very high
## 143                     Very high                      Higher
## 144                     Very high                      Higher
## 145                     Very high                   Very high
## 146                        Higher                   Very high
## 147                        Higher                      Higher
## 148                        Higher                         Low
## 149                           Mid                      Higher
## 150                        Higher                         Low
## 151                    Don't Know                  Don't Know
## 152                        Higher                   Very high
## 153                    Don't Know                  Don't Know
## 154                    Don't Know                  Don't Know
## 155                           Mid                      Higher
## 156                    Don't Know                  Don't Know
## 157                    Don't Know                  Don't Know
## 158                        Higher                   Very high
## 159                           Mid                      Higher
## 160                        Higher                   Very high
## 161                        Higher                   Very high
## 162                        Higher                         Mid
## 163                    Don't Know                  Don't Know
## 164                    Don't Know                  Don't Know
## 165                        Higher                   Very high
## 166                           Low                   Very high
## 167                        Higher                   Very high
## 168                    Don't Know                  Don't Know
## 169                    Don't Know                  Don't Know
## 170                    Don't Know                  Don't Know
## 171                    Don't Know                  Don't Know
## 172                    Don't Know                  Don't Know
## 173                    Don't Know                  Don't Know
## 174                        Higher                         Mid
## 175                    Don't Know                  Don't Know
## 176                           Mid                      Higher
## 177                    Don't Know                  Don't Know
## 178                    Don't Know                  Don't Know
## 179                    Don't Know                  Don't Know
## 180                           Mid                      Higher
## 181                           Mid                         Mid
## 182                     Very high                   Very high
## 183                    Don't Know                  Don't Know
## 184                    Don't Know                  Don't Know
## 185                           Mid                         Mid
## 186                        Higher                      Higher
## 187                        Higher                      Higher
## 188                    Don't Know                  Don't Know
## 189                        Higher                      Higher
## 190                           Mid                         Mid
## 191                        Higher                      Higher
## 192                           Mid                         Mid
## 193                        Higher                      Higher
## 194                     Very high                   Very high
## 195                    Don't Know                  Don't Know
## 196                        Higher                      Higher
## 197                     Very high                   Very high
## 198                        Higher                      Higher
## 199                        Higher                      Higher
## 200                    Don't Know                  Don't Know
## 201                           Low                         Mid
## 202                           Mid                         Mid
## 203                           Mid                   Very high
## 204                        Higher                      Higher
## 205                           Mid                         Low
## 206                        Higher                   Very high
## 207                           Mid                      Higher
## 208                           Mid                      Higher
## 209                     Very high                      Higher
## 210                     Very high                      Higher
## 211                           Mid                         Mid
## 212                           Mid                         Mid
## 213                           Mid                         Mid
## 214                           Mid                         Mid
## 215                           Mid                         Mid
## 216                           Mid                         Mid
## 217                        Higher                      Higher
## 218                     Very high                         Low
## 219                        Higher                      Higher
## 220                     Very high                         Mid
## 221                           Mid                         Mid
## 222                           Mid                      Higher
## 223                           Mid                      Higher
## 224                     Very high                      Higher
## 225                        Higher                      Higher
## 226                           Mid                      Higher
## 227                           Mid                         Low
## 228                           Mid                         Mid
## 229                        Higher                   Very high
## 230                        Higher                         Low
## 231                        Higher                         Low
## 232                        Higher                         Mid
## 233                           Mid                         Mid
## 234                           Mid                         Mid
## 235                           Mid                         Mid
## 236                     Very high                      Higher
## 237                           Mid                      Higher
## 238                        Higher                         Mid
## 239                           Mid                         Mid
## 240                           Mid                      Higher
## 241                           Mid                         Mid
## 242                           Mid                         Mid
## 243                           Mid                      Higher
## 244                           Mid                         Mid
## 245                           Low                         Low
## 246                           Mid                         Mid
## 247                        Higher                   Very high
## 248                        Higher                      Higher
## 249                           Mid                      Higher
## 250                           Mid                         Mid
## 251                        Higher                         Mid
## 252                           Mid                      Higher
## 253                    Don't Know                  Don't Know
## 254                        Higher                         Mid
## 255                           Mid                         Mid
## 256                        Higher                      Higher
## 257                        Higher                      Higher
## 258                           Mid                      Higher
## 259                        Higher                         Mid
## 260                           Low                         Low
## 261                           Mid                         Mid
## 262                           Mid                         Low
## 263                           Mid                      Higher
## 264                        Higher                      Higher
## 265                        Higher                      Higher
## 266                        Higher                      Higher
## 267                        Higher                      Higher
## 268                        Higher                         Mid
## 269                        Higher                      Higher
## 270                        Higher                      Higher
## 271                           Low                         Low
## 272                        Higher                      Higher
## 273                        Higher                         Mid
## 274                           Mid                         Mid
## 275                        Higher                      Higher
## 276                           Mid                      Higher
## 277                           Mid                         Mid
## 278                        Higher                         Mid
## 279                          <NA>                        <NA>
## 280                           Mid                         Mid
## 281                           Mid                         Mid
## 282                        Higher                         Mid
## 283                           Mid                         Mid
## 284                           Mid                        <NA>
## 285                           Mid                         Mid
## 286                           Low                         Low
## 287                           Mid                         Mid
## 288                           Mid                         Mid
## 289                    Don't Know                  Don't Know
## 290                           Mid                         Mid
## 291                           Low                         Low
## 292                    Don't Know                      Higher
## 293                           Low                         Low
## 294                          <NA>                        <NA>
## 295                     Very high                        <NA>
## 296                    Don't Know                         Mid
## 297                           Low                         Mid
## 298                           Mid                         Mid
## 299                        Higher                      Higher
## 300                           Mid                   Very high
## 302                      Very Low                    Very Low
## 303                           Mid                         Mid
## 304                      Very Low                    Very Low
## 305                           Mid                         Mid
## 306                           Low                         Low
## 307                           Mid                         Mid
## 308                           Low                    Very Low
## 309                    Don't Know                  Don't Know
## 310                           Mid                         Mid
## 311                           Low                         Mid
## 312                           Mid                         Mid
## 313                           Low                         Low
## 314                           Mid                      Higher
## 315                    Don't Know                  Don't Know
## 316                     Very high                   Very high
## 317                      Very Low                    Very Low
## 318                           Low                   Very high
## 319                      Very Low                         Mid
## 320                           Mid                         Mid
## 321                        Higher                      Higher
## 322                    Don't Know                  Don't Know
## 323                    Don't Know                  Don't Know
## 324                           Mid                         Mid
## 325                           Mid                         Mid
## 326                           Low                         Mid
## 327                           Mid                         Mid
## 328                           Low                         Low
## 329                           Mid                         Low
## 330                           Low                         Low
## 331                           Low                         Mid
## 332                      Very Low                  Don't Know
## 333                           Mid                         Mid
## 334                    Don't Know                  Don't Know
## 335                           Mid                      Higher
## 336                     Very high                      Higher
## 337                      Very Low                      Higher
## 338                        Higher                      Higher
## 339                        Higher                   Very high
## 340                           Low                      Higher
## 341                           Mid                         Mid
## 342                           Low                         Low
## 343                        Higher                      Higher
## 344                           Mid                         Low
## 345                           Mid                         Mid
## 346                        Higher                      Higher
## 347                      Very Low                         Low
## 348                           Low                         Mid
## 349                           Low                         Low
## 350                           Low                         Mid
## 351                           Low                         Low
## 352                    Don't Know                  Don't Know
## 353                           Mid                         Mid
## 354                    Don't Know                  Don't Know
## 355                           Low                         Low
## 356                    Don't Know                  Don't Know
## 357                           Low                         Low
## 358                           Mid                         Mid
## 359                           Low                         Low
## 360                           Mid                         Mid
## 361                           Low                         Mid
## 362                           Low                         Mid
## 363                           Mid                         Mid
## 364                           Low                         Low
## 365                    Don't Know                  Don't Know
## 366                           Low                         Low
## 367                           Low                         Low
## 368                           Low                         Low
## 369                           Low                         Low
## 370                           Mid                         Mid
## 371                           Mid                         Low
## 372                        Higher                         Mid
## 373                           Low                         Low
## 374                           Mid                         Mid
## 375                           Mid                         Mid
## 376                           Low                         Mid
## 377                           Mid                         Mid
## 378                           Low                         Low
## 379                           Low                         Low
## 380                    Don't Know                  Don't Know
## 381                    Don't Know                  Don't Know
## 382                    Don't Know                  Don't Know
## 383                    Don't Know                  Don't Know
## 384                           Low                         Mid
## 385                    Don't Know                  Don't Know
## 386                           Low                         Low
## 387                           Low                         Low
## 388                    Don't Know                  Don't Know
## 389                    Don't Know                  Don't Know
## 390                           Low                         Low
## 391                           Low                         Low
## 392                           Low                         Low
## 393                    Don't Know                  Don't Know
## 394                    Don't Know                  Don't Know
## 395                           Low                         Low
## 396                    Don't Know                  Don't Know
## 397                           Low                         Low
## 398                           Low                         Low
## 399                    Don't Know                  Don't Know
## 400                    Don't Know                  Don't Know
## 401                           Low                         Low
## 402                    Don't Know                  Don't Know
## 403                           Low                         Low
## 404                        Higher                      Higher
## 405                          <NA>                        <NA>
## 406                    Don't Know                  Don't Know
## 407                    Don't Know                  Don't Know
## 408                           Mid                         Mid
## 409                    Don't Know                        <NA>
## 410                           Mid                         Mid
## 411                    Don't Know                  Don't Know
## 412                           Mid                         Mid
## 413                           Mid                         Mid
## 414                          <NA>                        <NA>
## 415                    Don't Know                  Don't Know
## 416                           Mid                         Mid
## 417                          <NA>                        <NA>
## 418                    Don't Know                  Don't Know
## 419                           Low                         Low
## 420                          <NA>                        <NA>
## 421                           Mid                         Mid
## 422                          <NA>                        <NA>
## 423                          <NA>                        <NA>
## 424                    Don't Know                  Don't Know
## 425                           Low                         Mid
## 426                           Low                         Mid
## 427                           Mid                         Mid
## 428                          <NA>                        <NA>
## 429                          <NA>                        <NA>
## 430                           Mid                         Mid
## 431                           Mid                         Mid
## 432                          <NA>                        <NA>
## 433                           Mid                         Mid
## 434                          <NA>                        <NA>
## 435                          <NA>                        <NA>
## 436                          <NA>                        <NA>
## 437                           Mid                         Mid
## 438                        Higher                      Higher
## 439                           Mid                         Mid
## 440                           Mid                         Low
## 441                           Mid                         Mid
## 442                          <NA>                        <NA>
## 443                           Mid                         Mid
## 444                           Mid                         Low
## 445                           Mid                         Mid
## 446                           Mid                         Mid
## 447                           Mid                         Mid
## 448                           Mid                         Mid
## 449                          <NA>                        <NA>
## 450                          <NA>                        <NA>
## 451                          <NA>                        <NA>
## 452                           Low                         Mid
## 453                          <NA>                        <NA>
## 454                           Low                         Low
## 455                           Mid                         Mid
## 456                           Mid                      Higher
## 457                    Don't Know                  Don't Know
## 458                           Mid                      Higher
## 459                           Mid                         Mid
## 460                    Don't Know                        <NA>
## 461                          <NA>                        <NA>
## 462                        Higher                      Higher
## 463                        Higher                         Mid
## 464                           Mid                      Higher
## 465                        Higher                      Higher
## 466                      Very Low                    Very Low
## 467                        Higher                      Higher
## 468                     Very high                   Very high
## 469                           Mid                         Mid
## 470                           Low                         Low
## 471                           Mid                    Very Low
## 472                           Mid                         Mid
## 473                    Don't Know                  Don't Know
## 474                    Don't Know                  Don't Know
## 475                           Low                         Low
## 476                    Don't Know                  Don't Know
## 477                           Mid                        <NA>
## 478                           Low                    Very Low
## 479                    Don't Know                  Don't Know
## 480                    Don't Know                  Don't Know
## 481                    Don't Know                    Very Low
## 482                      Very Low                    Very Low
## 483                        Higher                      Higher
## 484                    Don't Know                  Don't Know
## 485                          <NA>                        <NA>
## 486                           Mid                         Mid
## 487                    Don't Know                  Don't Know
## 488                    Don't Know                  Don't Know
## 489                    Don't Know                         Low
## 490                        Higher                      Higher
## 491                           Low                         Low
## 492                          <NA>                        <NA>
## 493                      Very Low                    Very Low
## 494                           Mid                      Higher
## 495                           Mid                         Mid
## 496                        Higher                      Higher
##      Private.Sector..Citizen.s.Participaton
## 1                                       Mid
## 2                                Don't Know
## 3                                    Higher
## 4                                       Mid
## 5                                       Mid
## 6                                Don't Know
## 7                                       Mid
## 8                                    Higher
## 9                                       Mid
## 10                                Very high
## 11                                   Higher
## 12                                     <NA>
## 13                                   Higher
## 14                                      Mid
## 15                                   Higher
## 16                                Very high
## 17                                      Low
## 18                                     <NA>
## 19                                      Mid
## 20                                      Mid
## 21                                      Mid
## 22                                 Very Low
## 23                                      Low
## 24                                      Mid
## 25                                      Mid
## 26                                   Higher
## 27                                   Higher
## 28                               Don't Know
## 29                               Don't Know
## 30                                   Higher
## 31                                      Mid
## 32                               Don't Know
## 33                                      Mid
## 34                                      Mid
## 35                                Very high
## 36                                      Mid
## 37                                      Mid
## 38                                      Mid
## 39                                      Mid
## 40                                      Mid
## 41                                   Higher
## 42                                      Mid
## 43                                   Higher
## 44                                      Mid
## 45                                      Mid
## 46                                   Higher
## 47                                      Mid
## 48                                      Low
## 49                                      Mid
## 50                                     <NA>
## 51                               Don't Know
## 52                               Don't Know
## 53                               Don't Know
## 54                                      Mid
## 55                                      Low
## 56                               Don't Know
## 57                               Don't Know
## 58                               Don't Know
## 59                               Don't Know
## 60                                   Higher
## 61                                      Mid
## 62                                   Higher
## 63                                   Higher
## 64                                      Low
## 65                                      Mid
## 66                                      Mid
## 67                                     <NA>
## 68                                      Mid
## 69                                   Higher
## 70                                      Mid
## 71                                      Mid
## 72                                      Low
## 73                                      Mid
## 74                                   Higher
## 75                                   Higher
## 76                                   Higher
## 77                                      Mid
## 78                                   Higher
## 79                                     <NA>
## 80                                      Mid
## 81                                      Mid
## 82                                   Higher
## 83                                      Mid
## 84                                   Higher
## 85                                   Higher
## 86                               Don't Know
## 87                                   Higher
## 88                                   Higher
## 89                                   Higher
## 90                                      Mid
## 91                                      Low
## 92                                      Mid
## 93                                      Low
## 94                                      Mid
## 95                                      Mid
## 96                                   Higher
## 97                                   Higher
## 98                                      Mid
## 99                                      Mid
## 100                                     Mid
## 101                               Very high
## 102                                     Mid
## 103                              Don't Know
## 104                                     Low
## 105                               Very high
## 106                                     Low
## 107                               Very high
## 108                                  Higher
## 109                                  Higher
## 110                               Very high
## 111                                     Mid
## 112                                  Higher
## 113                               Very high
## 114                               Very high
## 115                                  Higher
## 116                                  Higher
## 117                                  Higher
## 118                              Don't Know
## 119                                  Higher
## 120                                     Mid
## 121                                     Mid
## 122                                     Mid
## 123                               Very high
## 124                               Very high
## 125                                  Higher
## 126                                     Mid
## 127                               Very high
## 128                                     Mid
## 129                                  Higher
## 130                                  Higher
## 131                                     Low
## 132                                  Higher
## 133                                     Mid
## 134                                  Higher
## 135                                  Higher
## 136                              Don't Know
## 137                               Very high
## 138                                     Mid
## 139                                  Higher
## 140                                  Higher
## 141                                     Mid
## 142                                  Higher
## 143                                     Mid
## 144                                     Mid
## 145                               Very high
## 146                                     Mid
## 147                                     Mid
## 148                                     Mid
## 149                                  Higher
## 150                                     Low
## 151                              Don't Know
## 152                                     Mid
## 153                              Don't Know
## 154                              Don't Know
## 155                                  Higher
## 156                              Don't Know
## 157                              Don't Know
## 158                                     Mid
## 159                                  Higher
## 160                                     Mid
## 161                                     Mid
## 162                               Very high
## 163                              Don't Know
## 164                              Don't Know
## 165                                     Mid
## 166                                  Higher
## 167                                     Mid
## 168                              Don't Know
## 169                              Don't Know
## 170                              Don't Know
## 171                              Don't Know
## 172                              Don't Know
## 173                              Don't Know
## 174                                  Higher
## 175                              Don't Know
## 176                                  Higher
## 177                              Don't Know
## 178                              Don't Know
## 179                              Don't Know
## 180                                  Higher
## 181                                     Mid
## 182                               Very high
## 183                              Don't Know
## 184                              Don't Know
## 185                                     Mid
## 186                               Very high
## 187                                  Higher
## 188                              Don't Know
## 189                                  Higher
## 190                                  Higher
## 191                                  Higher
## 192                                     Mid
## 193                                  Higher
## 194                               Very high
## 195                              Don't Know
## 196                                  Higher
## 197                               Very high
## 198                                  Higher
## 199                                  Higher
## 200                              Don't Know
## 201                               Very high
## 202                                     Mid
## 203                                  Higher
## 204                               Very high
## 205                                  Higher
## 206                                     Low
## 207                                  Higher
## 208                               Very high
## 209                                  Higher
## 210                                     Mid
## 211                                     Mid
## 212                                     Mid
## 213                                     Mid
## 214                                  Higher
## 215                                     Mid
## 216                                     Mid
## 217                                     Mid
## 218                               Very high
## 219                                     Mid
## 220                                     Mid
## 221                                     Low
## 222                                     Mid
## 223                                  Higher
## 224                                     Low
## 225                                     Mid
## 226                                  Higher
## 227                                  Higher
## 228                                  Higher
## 229                                     Mid
## 230                                     Low
## 231                               Very high
## 232                                     Mid
## 233                                     Mid
## 234                                     Low
## 235                                     Low
## 236                               Very high
## 237                               Very high
## 238                                  Higher
## 239                                     Low
## 240                                  Higher
## 241                                     Low
## 242                                     Low
## 243                                     Low
## 244                                     Low
## 245                                  Higher
## 246                                     Mid
## 247                                  Higher
## 248                                     Mid
## 249                                  Higher
## 250                               Very high
## 251                                     Mid
## 252                                  Higher
## 253                              Don't Know
## 254                                     Mid
## 255                                  Higher
## 256                                     Low
## 257                                     Mid
## 258                                     Low
## 259                                     Low
## 260                                     Mid
## 261                                     Low
## 262                                     Low
## 263                                  Higher
## 264                                     Mid
## 265                                  Higher
## 266                                  Higher
## 267                                     Mid
## 268                                  Higher
## 269                                  Higher
## 270                                     Low
## 271                                     Low
## 272                                  Higher
## 273                                     Mid
## 274                                     Low
## 275                                  Higher
## 276                                  Higher
## 277                                     Mid
## 278                                     Mid
## 279                                    <NA>
## 280                                     Mid
## 281                                     Mid
## 282                                  Higher
## 283                                     Mid
## 284                                    <NA>
## 285                                     Mid
## 286                                     Low
## 287                                     Mid
## 288                                     Mid
## 289                              Don't Know
## 290                                  Higher
## 291                                     Low
## 292                                     Mid
## 293                                     Low
## 294                                     Mid
## 295                                  Higher
## 296                                     Mid
## 297                                     Mid
## 298                                     Mid
## 299                                     Mid
## 300                                  Higher
## 302                                Very Low
## 303                                     Low
## 304                                Very Low
## 305                                     Mid
## 306                              Don't Know
## 307                                Very Low
## 308                                Very Low
## 309                              Don't Know
## 310                                     Low
## 311                                     Low
## 312                                     Mid
## 313                                     Low
## 314                                     Low
## 315                              Don't Know
## 316                                     Low
## 317                                Very Low
## 318                                Very Low
## 319                                     Mid
## 320                                     Mid
## 321                                  Higher
## 322                              Don't Know
## 323                              Don't Know
## 324                                     Low
## 325                                     Low
## 326                                     Low
## 327                                     Mid
## 328                                     Mid
## 329                                     Low
## 330                                     Mid
## 331                               Very high
## 332                               Very high
## 333                                     Mid
## 334                                  Higher
## 335                                  Higher
## 336                                  Higher
## 337                                     Mid
## 338                                     Mid
## 339                                     Mid
## 340                                     Low
## 341                                     Low
## 342                                     Low
## 343                                     Mid
## 344                                     Low
## 345                                     Low
## 346                                  Higher
## 347                                     Low
## 348                                     Mid
## 349                                     Low
## 350                                     Low
## 351                                     Low
## 352                              Don't Know
## 353                                     Mid
## 354                              Don't Know
## 355                                     Low
## 356                              Don't Know
## 357                                     Low
## 358                                     Mid
## 359                                     Low
## 360                                  Higher
## 361                                     Low
## 362                                     Mid
## 363                                     Mid
## 364                                     Low
## 365                              Don't Know
## 366                                     Low
## 367                                     Low
## 368                                     Low
## 369                                     Low
## 370                                     Low
## 371                                     Low
## 372                                  Higher
## 373                                     Low
## 374                                     Low
## 375                              Don't Know
## 376                                     Mid
## 377                                     Mid
## 378                                     Low
## 379                                     Low
## 380                              Don't Know
## 381                              Don't Know
## 382                              Don't Know
## 383                              Don't Know
## 384                                     Low
## 385                              Don't Know
## 386                                     Low
## 387                                     Low
## 388                              Don't Know
## 389                              Don't Know
## 390                              Don't Know
## 391                                     Low
## 392                                     Low
## 393                              Don't Know
## 394                              Don't Know
## 395                                     Low
## 396                              Don't Know
## 397                                     Low
## 398                                     Low
## 399                              Don't Know
## 400                              Don't Know
## 401                                     Low
## 402                              Don't Know
## 403                                     Low
## 404                                  Higher
## 405                                    <NA>
## 406                              Don't Know
## 407                              Don't Know
## 408                                     Mid
## 409                                    <NA>
## 410                                     Mid
## 411                              Don't Know
## 412                                     Mid
## 413                                     Mid
## 414                                    <NA>
## 415                              Don't Know
## 416                                     Mid
## 417                              Don't Know
## 418                              Don't Know
## 419                                     Low
## 420                                    <NA>
## 421                                     Mid
## 422                                    <NA>
## 423                                    <NA>
## 424                              Don't Know
## 425                                     Mid
## 426                                     Low
## 427                                     Mid
## 428                                    <NA>
## 429                                    <NA>
## 430                                     Mid
## 431                                     Mid
## 432                                    <NA>
## 433                                     Mid
## 434                                    <NA>
## 435                                    <NA>
## 436                                    <NA>
## 437                                     Mid
## 438                                  Higher
## 439                                     Mid
## 440                                     Low
## 441                                     Mid
## 442                                    <NA>
## 443                                     Low
## 444                                    <NA>
## 445                                     Mid
## 446                                     Mid
## 447                                     Mid
## 448                                     Low
## 449                                    <NA>
## 450                                    <NA>
## 451                                    <NA>
## 452                                     Mid
## 453                                    <NA>
## 454                                     Low
## 455                                     Mid
## 456                                  Higher
## 457                              Don't Know
## 458                                     Low
## 459                                     Mid
## 460                                    <NA>
## 461                                    <NA>
## 462                                  Higher
## 463                                     Low
## 464                                     Mid
## 465                                  Higher
## 466                                Very Low
## 467                                  Higher
## 468                               Very high
## 469                                     Mid
## 470                                     Mid
## 471                               Very high
## 472                                     Mid
## 473                              Don't Know
## 474                              Don't Know
## 475                                     Low
## 476                              Don't Know
## 477                                    <NA>
## 478                              Don't Know
## 479                              Don't Know
## 480                              Don't Know
## 481                              Don't Know
## 482                                Very Low
## 483                                  Higher
## 484                              Don't Know
## 485                                    <NA>
## 486                                     Mid
## 487                              Don't Know
## 488                              Don't Know
## 489                              Don't Know
## 490                                  Higher
## 491                                     Low
## 492                                    <NA>
## 493                                Very Low
## 494                                     Mid
## 495                                     Low
## 496                                  Higher
##      Banking.Institutions..Accountibility
## 1                                  Higher
## 2                                     Mid
## 3                                  Higher
## 4                               Very high
## 5                                  Higher
## 6                              Don't Know
## 7                                  Higher
## 8                                  Higher
## 9                               Very high
## 10                                 Higher
## 11                                 Higher
## 12                                   <NA>
## 13                              Very high
## 14                                 Higher
## 15                                 Higher
## 16                                    Mid
## 17                               Very Low
## 18                                   <NA>
## 19                                 Higher
## 20                                    Low
## 21                                 Higher
## 22                                 Higher
## 23                                 Higher
## 24                                    Mid
## 25                                    Mid
## 26                             Don't Know
## 27                                 Higher
## 28                             Don't Know
## 29                              Very high
## 30                                 Higher
## 31                                    Mid
## 32                             Don't Know
## 33                                 Higher
## 34                                 Higher
## 35                                 Higher
## 36                                 Higher
## 37                                    Mid
## 38                                 Higher
## 39                                 Higher
## 40                              Very high
## 41                                 Higher
## 42                                 Higher
## 43                                 Higher
## 44                              Very high
## 45                                 Higher
## 46                                    Mid
## 47                                 Higher
## 48                              Very high
## 49                                 Higher
## 50                              Very high
## 51                              Very high
## 52                                 Higher
## 53                                 Higher
## 54                                    Mid
## 55                              Very high
## 56                                 Higher
## 57                              Very high
## 58                                 Higher
## 59                             Don't Know
## 60                              Very high
## 61                                    Mid
## 62                                 Higher
## 63                              Very high
## 64                              Very high
## 65                              Very high
## 66                              Very high
## 67                              Very high
## 68                                 Higher
## 69                                 Higher
## 70                                 Higher
## 71                                 Higher
## 72                              Very high
## 73                                 Higher
## 74                              Very high
## 75                              Very high
## 76                              Very high
## 77                                 Higher
## 78                              Very high
## 79                                 Higher
## 80                              Very high
## 81                              Very high
## 82                              Very high
## 83                              Very high
## 84                                 Higher
## 85                                   <NA>
## 86                                 Higher
## 87                                 Higher
## 88                              Very high
## 89                                 Higher
## 90                                 Higher
## 91                              Very high
## 92                              Very high
## 93                                 Higher
## 94                              Very high
## 95                                 Higher
## 96                                 Higher
## 97                                 Higher
## 98                                 Higher
## 99                                 Higher
## 100                                Higher
## 101                             Very high
## 102                                Higher
## 103                                   Mid
## 104                                Higher
## 105                             Very high
## 106                                Higher
## 107                                Higher
## 108                                Higher
## 109                             Very high
## 110                                Higher
## 111                             Very high
## 112                             Very high
## 113                            Don't Know
## 114                             Very high
## 115                             Very high
## 116                             Very high
## 117                             Very high
## 118                             Very high
## 119                             Very high
## 120                             Very high
## 121                             Very high
## 122                                   Mid
## 123                             Very high
## 124                             Very high
## 125                             Very high
## 126                             Very high
## 127                             Very high
## 128                             Very high
## 129                             Very high
## 130                              Very Low
## 131                            Don't Know
## 132                                Higher
## 133                             Very high
## 134                             Very high
## 135                                Higher
## 136                            Don't Know
## 137                             Very high
## 138                             Very high
## 139                             Very high
## 140                             Very high
## 141                             Very high
## 142                             Very high
## 143                             Very high
## 144                             Very high
## 145                             Very high
## 146                             Very high
## 147                                   Mid
## 148                            Don't Know
## 149                                   Low
## 150                                   Low
## 151                            Don't Know
## 152                                Higher
## 153                                  <NA>
## 154                            Don't Know
## 155                            Don't Know
## 156                            Don't Know
## 157                            Don't Know
## 158                             Very high
## 159                            Don't Know
## 160                             Very high
## 161                             Very high
## 162                            Don't Know
## 163                            Don't Know
## 164                            Don't Know
## 165                             Very high
## 166                            Don't Know
## 167                             Very high
## 168                             Very high
## 169                            Don't Know
## 170                            Don't Know
## 171                            Don't Know
## 172                            Don't Know
## 173                            Don't Know
## 174                            Don't Know
## 175                            Don't Know
## 176                            Don't Know
## 177                            Don't Know
## 178                            Don't Know
## 179                            Don't Know
## 180                                Higher
## 181                            Don't Know
## 182                            Don't Know
## 183                            Don't Know
## 184                            Don't Know
## 185                                Higher
## 186                                   Mid
## 187                                Higher
## 188                            Don't Know
## 189                            Don't Know
## 190                            Don't Know
## 191                            Don't Know
## 192                            Don't Know
## 193                            Don't Know
## 194                            Don't Know
## 195                            Don't Know
## 196                            Don't Know
## 197                            Don't Know
## 198                            Don't Know
## 199                            Don't Know
## 200                            Don't Know
## 201                                   Mid
## 202                                   Mid
## 203                                Higher
## 204                                   Mid
## 205                                   Mid
## 206                                Higher
## 207                                   Mid
## 208                                   Mid
## 209                                Higher
## 210                              Very Low
## 211                                Higher
## 212                                Higher
## 213                                Higher
## 214                                Higher
## 215                                Higher
## 216                                Higher
## 217                                   Low
## 218                                   Low
## 219                                   Low
## 220                                   Mid
## 221                                   Low
## 222                                Higher
## 223                                   Mid
## 224                                Higher
## 225                                   Mid
## 226                                   Mid
## 227                                   Mid
## 228                                   Mid
## 229                             Very high
## 230                                   Mid
## 231                              Very Low
## 232                             Very high
## 233                                   Mid
## 234                                   Mid
## 235                                   Mid
## 236                                   Mid
## 237                                   Mid
## 238                                   Mid
## 239                                   Mid
## 240                                   Mid
## 241                                   Mid
## 242                                   Mid
## 243                                   Mid
## 244                                   Mid
## 245                                   Mid
## 246                                   Mid
## 247                              Very Low
## 248                             Very high
## 249                                Higher
## 250                                Higher
## 251                                   Mid
## 252                                   Mid
## 253                            Don't Know
## 254                                   Mid
## 255                                   Mid
## 256                                   Mid
## 257                                Higher
## 258                                   Mid
## 259                                Higher
## 260                                   Low
## 261                             Very high
## 262                                   Mid
## 263                                   Low
## 264                                Higher
## 265                                   Mid
## 266                                   Mid
## 267                             Very high
## 268                                   Mid
## 269                                   Mid
## 270                                   Mid
## 271                                   Mid
## 272                                Higher
## 273                                   Mid
## 274                                   Low
## 275                                Higher
## 276                                Higher
## 277                                   Mid
## 278                                   Mid
## 279                                  <NA>
## 280                                Higher
## 281                                   Mid
## 282                                Higher
## 283                                Higher
## 284                                Higher
## 285                                   Mid
## 286                                   Low
## 287                                Higher
## 288                                Higher
## 289                            Don't Know
## 290                                   Mid
## 291                                   Low
## 292                                   Mid
## 293                                   Mid
## 294                                Higher
## 295                                   Mid
## 296                                   Mid
## 297                                   Low
## 298                                   Mid
## 299                                   Mid
## 300                                   Mid
## 302                             Very high
## 303                             Very high
## 304                                   Mid
## 305                                Higher
## 306                                   Low
## 307                                Higher
## 308                                Higher
## 309                            Don't Know
## 310                             Very high
## 311                                Higher
## 312                                Higher
## 313                                Higher
## 314                                Higher
## 315                            Don't Know
## 316                                Higher
## 317                                   Mid
## 318                             Very high
## 319                                Higher
## 320                                   Mid
## 321                                Higher
## 322                            Don't Know
## 323                            Don't Know
## 324                                   Mid
## 325                                   Mid
## 326                                Higher
## 327                                Higher
## 328                             Very high
## 329                            Don't Know
## 330                                Higher
## 331                                Higher
## 332                            Don't Know
## 333                                Higher
## 334                            Don't Know
## 335                              Very Low
## 336                              Very Low
## 337                             Very high
## 338                                   Low
## 339                                   Low
## 340                                Higher
## 341                                Higher
## 342                                   Mid
## 343                                Higher
## 344                                Higher
## 345                             Very high
## 346                                Higher
## 347                             Very high
## 348                                Higher
## 349                             Very high
## 350                                   Low
## 351                             Very high
## 352                            Don't Know
## 353                                   Mid
## 354                                   Mid
## 355                                   Mid
## 356                                   Mid
## 357                                Higher
## 358                                Higher
## 359                                   Mid
## 360                                Higher
## 361                                   Mid
## 362                                   Mid
## 363                                   Mid
## 364                                   Mid
## 365                                   Mid
## 366                                   Mid
## 367                                   Mid
## 368                                   Mid
## 369                                   Low
## 370                                   Mid
## 371                                   Mid
## 372                                Higher
## 373                                   Mid
## 374                                Higher
## 375                                   Mid
## 376                                   Mid
## 377                                Higher
## 378                                   Low
## 379                                   Mid
## 380                                   Mid
## 381                                   Mid
## 382                                   Mid
## 383                                   Mid
## 384                                   Mid
## 385                                   Mid
## 386                                Higher
## 387                                Higher
## 388                                   Mid
## 389                                   Mid
## 390                                   Low
## 391                                   Low
## 392                                   Mid
## 393                                   Mid
## 394                                   Mid
## 395                                   Mid
## 396                                   Mid
## 397                                   Mid
## 398                                   Mid
## 399                                   Mid
## 400                                   Mid
## 401                                Higher
## 402                            Don't Know
## 403                                   Mid
## 404                                Higher
## 405                                   Mid
## 406                            Don't Know
## 407                            Don't Know
## 408                                   Mid
## 409                                  <NA>
## 410                                   Mid
## 411                                   Low
## 412                                   Mid
## 413                                   Mid
## 414                                  <NA>
## 415                            Don't Know
## 416                                   Mid
## 417                                  <NA>
## 418                            Don't Know
## 419                                   Low
## 420                                  <NA>
## 421                                   Mid
## 422                                  <NA>
## 423                                  <NA>
## 424                            Don't Know
## 425                                   Mid
## 426                                   Mid
## 427                                   Mid
## 428                                  <NA>
## 429                                  <NA>
## 430                                   Mid
## 431                                   Mid
## 432                                  <NA>
## 433                                   Mid
## 434                                  <NA>
## 435                                  <NA>
## 436                                  <NA>
## 437                                   Mid
## 438                                Higher
## 439                                   Mid
## 440                                   Mid
## 441                                   Mid
## 442                                  <NA>
## 443                                   Mid
## 444                                   Low
## 445                                   Mid
## 446                                   Mid
## 447                                   Low
## 448                                   Mid
## 449                                  <NA>
## 450                                  <NA>
## 451                                  <NA>
## 452                                   Mid
## 453                                Higher
## 454                                Higher
## 455                                Higher
## 456                                Higher
## 457                            Don't Know
## 458                                Higher
## 459                                Higher
## 460                                  <NA>
## 461                            Don't Know
## 462                             Very high
## 463                                   Mid
## 464                                   Low
## 465                             Very high
## 466                              Very Low
## 467                             Very high
## 468                             Very high
## 469                                Higher
## 470                             Very high
## 471                                   Low
## 472                             Very high
## 473                            Don't Know
## 474                                Higher
## 475                                   Mid
## 476                            Don't Know
## 477                                Higher
## 478                                   Low
## 479                            Don't Know
## 480                            Don't Know
## 481                            Don't Know
## 482                              Very Low
## 483                                   Mid
## 484                            Don't Know
## 485                                  <NA>
## 486                             Very high
## 487                            Don't Know
## 488                            Don't Know
## 489                                   Mid
## 490                                Higher
## 491                                Higher
## 492                                  <NA>
## 493                                   Low
## 494                                   Mid
## 495                                Higher
## 496                                Higher
##      Banking.Institutions..Transparency Banking.Institutions..Rule.of.Law
## 1                                Higher                            Higher
## 2                                   Mid                            Higher
## 3                                Higher                            Higher
## 4                             Very high                         Very high
## 5                                Higher                               Mid
## 6                                  <NA>                        Don't Know
## 7                             Very high                            Higher
## 8                                Higher                               Mid
## 9                                Higher                            Higher
## 10                            Very high                         Very high
## 11                               Higher                               Mid
## 12                                 <NA>                              <NA>
## 13                            Very high                            Higher
## 14                                  Mid                               Low
## 15                                  Mid                          Very Low
## 16                               Higher                            Higher
## 17                           Don't Know                        Don't Know
## 18                                 <NA>                              <NA>
## 19                               Higher                               Mid
## 20                                  Mid                               Low
## 21                               Higher                            Higher
## 22                               Higher                               Mid
## 23                                  Low                               Mid
## 24                                  Mid                               Mid
## 25                                  Mid                               Low
## 26                           Don't Know                        Don't Know
## 27                               Higher                            Higher
## 28                           Don't Know                        Don't Know
## 29                            Very high                         Very high
## 30                               Higher                            Higher
## 31                                  Mid                               Mid
## 32                           Don't Know                        Don't Know
## 33                               Higher                            Higher
## 34                               Higher                               Mid
## 35                               Higher                               Mid
## 36                                  Mid                            Higher
## 37                                  Mid                               Mid
## 38                               Higher                            Higher
## 39                                  Mid                               Mid
## 40                                  Mid                               Mid
## 41                                  Mid                            Higher
## 42                               Higher                            Higher
## 43                               Higher                            Higher
## 44                            Very high                               Mid
## 45                                 <NA>                               Mid
## 46                                  Mid                         Very high
## 47                               Higher                            Higher
## 48                            Very high                               Mid
## 49                               Higher                            Higher
## 50                           Don't Know                              <NA>
## 51                            Very high                        Don't Know
## 52                               Higher                        Don't Know
## 53                            Very high                            Higher
## 54                                  Mid                               Mid
## 55                               Higher                               Mid
## 56                               Higher                            Higher
## 57                            Very high                        Don't Know
## 58                               Higher                            Higher
## 59                           Don't Know                        Don't Know
## 60                            Very high                         Very high
## 61                                  Mid                               Mid
## 62                                  Mid                            Higher
## 63                                  Low                               Mid
## 64                                  Mid                               Mid
## 65                                  Mid                               Mid
## 66                                  Mid                               Mid
## 67                                  Low                               Mid
## 68                                  Mid                               Mid
## 69                            Very high                            Higher
## 70                               Higher                         Very high
## 71                            Very high                            Higher
## 72                                  Mid                            Higher
## 73                               Higher                            Higher
## 74                                  Mid                            Higher
## 75                                  Mid                               Mid
## 76                                  Low                               Mid
## 77                               Higher                            Higher
## 78                                  Mid                               Mid
## 79                                  Low                               Mid
## 80                                  Low                               Mid
## 81                                  Low                               Mid
## 82                                  Low                               Low
## 83                                  Low                               Low
## 84                                  Mid                            Higher
## 85                                 <NA>                              <NA>
## 86                               Higher                            Higher
## 87                               Higher                            Higher
## 88                                  Mid                            Higher
## 89                               Higher                            Higher
## 90                               Higher                            Higher
## 91                                  Mid                               Mid
## 92                               Higher                               Mid
## 93                                  Mid                            Higher
## 94                                  Mid                               Mid
## 95                               Higher                            Higher
## 96                               Higher                            Higher
## 97                                  Low                            Higher
## 98                                  Low                            Higher
## 99                                  Mid                               Mid
## 100                              Higher                            Higher
## 101                              Higher                         Very high
## 102                           Very high                         Very high
## 103                              Higher                            Higher
## 104                              Higher                         Very high
## 105                           Very high                         Very high
## 106                                 Low                         Very high
## 107                              Higher                               Mid
## 108                              Higher                               Mid
## 109                           Very high                         Very high
## 110                           Very high                            Higher
## 111                              Higher                            Higher
## 112                                <NA>                               Mid
## 113                          Don't Know                        Don't Know
## 114                           Very high                         Very high
## 115                           Very high                         Very high
## 116                           Very high                         Very high
## 117                           Very high                         Very high
## 118                           Very high                         Very high
## 119                           Very high                         Very high
## 120                           Very high                         Very high
## 121                           Very high                            Higher
## 122                              Higher                            Higher
## 123                           Very high                         Very high
## 124                           Very high                         Very high
## 125                           Very high                         Very high
## 126                           Very high                         Very high
## 127                           Very high                         Very high
## 128                           Very high                            Higher
## 129                           Very high                         Very high
## 130                                 Low                               Low
## 131                          Don't Know                        Don't Know
## 132                                 Mid                         Very high
## 133                              Higher                            Higher
## 134                           Very high                         Very high
## 135                                 Mid                            Higher
## 136                          Don't Know                        Don't Know
## 137                           Very high                         Very high
## 138                                 Mid                         Very high
## 139                              Higher                         Very high
## 140                          Don't Know                         Very high
## 141                           Very high                         Very high
## 142                           Very high                            Higher
## 143                              Higher                         Very high
## 144                              Higher                         Very high
## 145                                 Mid                            Higher
## 146                           Very high                         Very high
## 147                              Higher                               Low
## 148                          Don't Know                        Don't Know
## 149                                 Low                               Low
## 150                                 Mid                          Very Low
## 151                          Don't Know                        Don't Know
## 152                              Higher                               Mid
## 153                                <NA>                              <NA>
## 154                          Don't Know                        Don't Know
## 155                          Don't Know                        Don't Know
## 156                          Don't Know                        Don't Know
## 157                          Don't Know                        Don't Know
## 158                              Higher                         Very high
## 159                          Don't Know                        Don't Know
## 160                              Higher                         Very high
## 161                              Higher                         Very high
## 162                          Don't Know                        Don't Know
## 163                          Don't Know                        Don't Know
## 164                          Don't Know                        Don't Know
## 165                              Higher                         Very high
## 166                          Don't Know                        Don't Know
## 167                              Higher                         Very high
## 168                          Don't Know                        Don't Know
## 169                          Don't Know                        Don't Know
## 170                          Don't Know                        Don't Know
## 171                          Don't Know                        Don't Know
## 172                          Don't Know                        Don't Know
## 173                          Don't Know                        Don't Know
## 174                          Don't Know                        Don't Know
## 175                          Don't Know                        Don't Know
## 176                          Don't Know                        Don't Know
## 177                          Don't Know                        Don't Know
## 178                          Don't Know                        Don't Know
## 179                          Don't Know                        Don't Know
## 180                              Higher                            Higher
## 181                          Don't Know                        Don't Know
## 182                          Don't Know                        Don't Know
## 183                          Don't Know                        Don't Know
## 184                          Don't Know                        Don't Know
## 185                              Higher                            Higher
## 186                                 Mid                            Higher
## 187                              Higher                            Higher
## 188                          Don't Know                        Don't Know
## 189                          Don't Know                        Don't Know
## 190                          Don't Know                        Don't Know
## 191                          Don't Know                        Don't Know
## 192                          Don't Know                        Don't Know
## 193                          Don't Know                        Don't Know
## 194                          Don't Know                        Don't Know
## 195                          Don't Know                        Don't Know
## 196                          Don't Know                        Don't Know
## 197                          Don't Know                        Don't Know
## 198                          Don't Know                        Don't Know
## 199                          Don't Know                        Don't Know
## 200                          Don't Know                        Don't Know
## 201                                 Low                               Low
## 202                                 Low                               Mid
## 203                              Higher                               Low
## 204                                 Low                         Very high
## 205                              Higher                               Low
## 206                           Very high                               Mid
## 207                           Very high                               Mid
## 208                                 Mid                            Higher
## 209                           Very high                            Higher
## 210                                 Low                               Mid
## 211                                 Mid                               Mid
## 212                                 Mid                            Higher
## 213                                 Mid                               Mid
## 214                                 Mid                            Higher
## 215                          Don't Know                               Mid
## 216                                 Mid                               Mid
## 217                              Higher                               Mid
## 218                                 Low                               Mid
## 219                                 Mid                               Mid
## 220                              Higher                               Mid
## 221                                 Low                            Higher
## 222                                 Low                               Mid
## 223                                 Mid                               Mid
## 224                           Very high                               Mid
## 225                                 Low                               Low
## 226                                 Low                               Low
## 227                              Higher                         Very high
## 228                                 Mid                               Mid
## 229                                 Mid                            Higher
## 230                                 Mid                               Mid
## 231                                 Mid                               Low
## 232                              Higher                               Mid
## 233                                 Mid                            Higher
## 234                                 Mid                            Higher
## 235                                 Mid                            Higher
## 236                              Higher                         Very high
## 237                                 Low                               Mid
## 238                                 Mid                            Higher
## 239                                 Mid                            Higher
## 240                                 Mid                            Higher
## 241                                 Mid                            Higher
## 242                                 Mid                            Higher
## 243                                 Mid                            Higher
## 244                                 Mid                            Higher
## 245                              Higher                            Higher
## 246                                 Mid                               Mid
## 247                              Higher                               Mid
## 248                              Higher                         Very high
## 249                              Higher                         Very high
## 250                                 Mid                            Higher
## 251                                 Mid                               Mid
## 252                                 Mid                            Higher
## 253                                <NA>                        Don't Know
## 254                              Higher                               Mid
## 255                                 Low                            Higher
## 256                                 Mid                               Mid
## 257                                 Mid                            Higher
## 258                              Higher                            Higher
## 259                                 Mid                               Low
## 260                                 Low                          Very Low
## 261                           Very high                               Mid
## 262                                 Low                               Low
## 263                                 Low                            Higher
## 264                                 Mid                               Mid
## 265                                 Mid                               Mid
## 266                                 Mid                               Mid
## 267                           Very high                         Very high
## 268                                 Mid                            Higher
## 269                                 Mid                               Mid
## 270                                 Low                               Low
## 271                                 Mid                               Mid
## 272                              Higher                            Higher
## 273                              Higher                               Mid
## 274                                 Low                               Low
## 275                                 Mid                               Mid
## 276                              Higher                               Mid
## 277                                 Mid                               Mid
## 278                                 Mid                               Mid
## 279                                <NA>                              <NA>
## 280                                 Mid                            Higher
## 281                                 Mid                               Mid
## 282                              Higher                               Mid
## 283                              Higher                               Mid
## 284                              Higher                              <NA>
## 285                                 Mid                               Low
## 286                                 Low                               Low
## 287                              Higher                            Higher
## 288                                 Mid                               Mid
## 289                              Higher                        Don't Know
## 290                                 Mid                               Mid
## 291                                 Low                            Higher
## 292                              Higher                         Very high
## 293                                 Low                               Low
## 294                                <NA>                              <NA>
## 295                              Higher                              <NA>
## 296                                 Mid                               Mid
## 297                                 Low                               Mid
## 298                                 Low                               Low
## 299                                 Mid                               Mid
## 300                                 Low                            Higher
## 302                              Higher                               Mid
## 303                              Higher                            Higher
## 304                                 Mid                               Mid
## 305                                 Mid                               Mid
## 306                                 Low                         Very high
## 307                              Higher                               Mid
## 308                              Higher                            Higher
## 309                          Don't Know                        Don't Know
## 310                           Very high                         Very high
## 311                              Higher                            Higher
## 312                              Higher                               Mid
## 313                              Higher                               Mid
## 314                                 Mid                            Higher
## 315                          Don't Know                        Don't Know
## 316                           Very high                         Very high
## 317                                 Mid                               Low
## 318                           Very high                         Very high
## 319                            Very Low                               Mid
## 320                                 Mid                               Mid
## 321                              Higher                            Higher
## 322                          Don't Know                        Don't Know
## 323                          Don't Know                        Don't Know
## 324                                 Mid                               Mid
## 325                                 Mid                               Mid
## 326                                 Low                               Mid
## 327                              Higher                               Mid
## 328                           Very high                         Very high
## 329                          Don't Know                        Don't Know
## 330                              Higher                        Don't Know
## 331                                 Mid                               Mid
## 332                          Don't Know                        Don't Know
## 333                                 Low                            Higher
## 334                          Don't Know                        Don't Know
## 335                            Very Low                         Very high
## 336                            Very Low                          Very Low
## 337                              Higher                               Mid
## 338                                 Low                               Low
## 339                                 Low                            Higher
## 340                                 Mid                            Higher
## 341                                 Mid                               Mid
## 342                                 Mid                               Mid
## 343                              Higher                            Higher
## 344                                 Mid                            Higher
## 345                           Very high                            Higher
## 346                              Higher                            Higher
## 347                           Very high                         Very high
## 348                              Higher                               Mid
## 349                           Very high                         Very high
## 350                                 Mid                               Mid
## 351                           Very high                         Very high
## 352                          Don't Know                        Don't Know
## 353                                 Mid                               Mid
## 354                                 Low                               Mid
## 355                                 Mid                               Mid
## 356                                 Mid                               Mid
## 357                              Higher                            Higher
## 358                                 Mid                               Mid
## 359                                 Mid                               Mid
## 360                                 Mid                               Mid
## 361                                 Mid                               Mid
## 362                                 Mid                               Mid
## 363                                 Mid                               Mid
## 364                                 Mid                               Mid
## 365                                 Mid                               Mid
## 366                                 Mid                               Mid
## 367                                 Mid                               Mid
## 368                                 Mid                               Mid
## 369                                 Mid                               Mid
## 370                                 Mid                               Mid
## 371                                 Mid                               Mid
## 372                              Higher                            Higher
## 373                                 Mid                               Mid
## 374                              Higher                            Higher
## 375                                 Mid                               Mid
## 376                                 Mid                               Mid
## 377                              Higher                            Higher
## 378                                 Low                               Low
## 379                                 Mid                               Mid
## 380                                 Mid                               Mid
## 381                                 Mid                               Mid
## 382                                 Mid                               Mid
## 383                                 Mid                               Mid
## 384                                 Mid                               Mid
## 385                                 Mid                               Mid
## 386                              Higher                            Higher
## 387                                 Mid                               Mid
## 388                                 Mid                               Mid
## 389                                 Mid                               Mid
## 390                                 Low                               Low
## 391                                 Low                               Low
## 392                                 Mid                               Mid
## 393                                 Mid                               Mid
## 394                                 Mid                               Mid
## 395                                 Mid                               Mid
## 396                                 Mid                               Mid
## 397                                 Mid                               Mid
## 398                                 Mid                               Mid
## 399                                 Mid                               Mid
## 400                                 Mid                               Mid
## 401                              Higher                            Higher
## 402                          Don't Know                        Don't Know
## 403                                 Mid                               Mid
## 404                              Higher                            Higher
## 405                                <NA>                              <NA>
## 406                          Don't Know                        Don't Know
## 407                          Don't Know                        Don't Know
## 408                                 Mid                               Mid
## 409                                 Mid                              <NA>
## 410                                 Mid                               Mid
## 411                                 Low                               Low
## 412                                 Mid                               Mid
## 413                                 Mid                               Mid
## 414                                <NA>                              <NA>
## 415                          Don't Know                        Don't Know
## 416                                 Mid                               Mid
## 417                                <NA>                              <NA>
## 418                          Don't Know                        Don't Know
## 419                                 Low                               Low
## 420                                <NA>                              <NA>
## 421                                 Mid                               Mid
## 422                                <NA>                              <NA>
## 423                                <NA>                              <NA>
## 424                          Don't Know                        Don't Know
## 425                                 Low                               Mid
## 426                                 Low                               Mid
## 427                                 Mid                               Mid
## 428                                <NA>                              <NA>
## 429                                <NA>                              <NA>
## 430                                 Mid                               Mid
## 431                                 Mid                               Mid
## 432                                <NA>                              <NA>
## 433                                 Mid                               Mid
## 434                                <NA>                              <NA>
## 435                                <NA>                              <NA>
## 436                                <NA>                              <NA>
## 437                                 Mid                               Mid
## 438                              Higher                            Higher
## 439                                 Mid                               Mid
## 440                                 Mid                               Low
## 441                                 Mid                               Mid
## 442                                <NA>                              <NA>
## 443                                 Mid                               Mid
## 444                                 Mid                               Low
## 445                                 Mid                               Mid
## 446                                 Mid                               Mid
## 447                                 Mid                               Mid
## 448                                 Mid                               Mid
## 449                                <NA>                              <NA>
## 450                                <NA>                              <NA>
## 451                                <NA>                              <NA>
## 452                                 Low                               Mid
## 453                                 Mid                            Higher
## 454                              Higher                            Higher
## 455                              Higher                            Higher
## 456                              Higher                            Higher
## 457                          Don't Know                        Don't Know
## 458                              Higher                            Higher
## 459                              Higher                            Higher
## 460                                <NA>                          Very Low
## 461                                <NA>                              <NA>
## 462                           Very high                         Very high
## 463                              Higher                        Don't Know
## 464                                 Mid                            Higher
## 465                           Very high                         Very high
## 466                            Very Low                          Very Low
## 467                           Very high                         Very high
## 468                           Very high                         Very high
## 469                              Higher                               Low
## 470                           Very high                            Higher
## 471                                 Mid                            Higher
## 472                           Very high                         Very high
## 473                          Don't Know                        Don't Know
## 474                              Higher                            Higher
## 475                                 Mid                               Mid
## 476                          Don't Know                        Don't Know
## 477                              Higher                              <NA>
## 478                                 Low                          Very Low
## 479                          Don't Know                        Don't Know
## 480                          Don't Know                        Don't Know
## 481                          Don't Know                          Very Low
## 482                            Very Low                          Very Low
## 483                                 Mid                               Mid
## 484                          Don't Know                        Don't Know
## 485                                <NA>                              <NA>
## 486                           Very high                         Very high
## 487                          Don't Know                        Don't Know
## 488                          Don't Know                        Don't Know
## 489                          Don't Know                        Don't Know
## 490                              Higher                            Higher
## 491                              Higher                            Higher
## 492                                <NA>                              <NA>
## 493                              Higher                            Higher
## 494                                 Mid                               Mid
## 495                           Very high                        Don't Know
## 496                              Higher                            Higher
##      Banking.Institutions..Citizen.s.Participaton
## 1                                          Higher
## 2                                             Mid
## 3                                          Higher
## 4                                          Higher
## 5                                          Higher
## 6                                      Don't Know
## 7                                             Mid
## 8                                             Mid
## 9                                          Higher
## 10                                      Very high
## 11                                            Mid
## 12                                           <NA>
## 13                                         Higher
## 14                                            Low
## 15                                         Higher
## 16                                      Very high
## 17                                            Mid
## 18                                           <NA>
## 19                                      Very high
## 20                                            Mid
## 21                                         Higher
## 22                                      Very high
## 23                                            Low
## 24                                            Mid
## 25                                            Mid
## 26                                     Don't Know
## 27                                         Higher
## 28                                     Don't Know
## 29                                     Don't Know
## 30                                         Higher
## 31                                            Mid
## 32                                     Don't Know
## 33                                         Higher
## 34                                      Very high
## 35                                            Mid
## 36                                           <NA>
## 37                                            Mid
## 38                                            Mid
## 39                                            Mid
## 40                                         Higher
## 41                                            Mid
## 42                                            Mid
## 43                                         Higher
## 44                                            Mid
## 45                                            Mid
## 46                                            Mid
## 47                                            Mid
## 48                                            Low
## 49                                         Higher
## 50                                           <NA>
## 51                                     Don't Know
## 52                                     Don't Know
## 53                                      Very high
## 54                                            Mid
## 55                                            Mid
## 56                                         Higher
## 57                                     Don't Know
## 58                                         Higher
## 59                                     Don't Know
## 60                                     Don't Know
## 61                                            Mid
## 62                                            Mid
## 63                                            Mid
## 64                                            Mid
## 65                                            Mid
## 66                                            Low
## 67                                            Mid
## 68                                            Mid
## 69                                      Very high
## 70                                            Mid
## 71                                            Mid
## 72                                            Mid
## 73                                            Low
## 74                                            Mid
## 75                                            Low
## 76                                            Low
## 77                                            Mid
## 78                                         Higher
## 79                                            Mid
## 80                                            Mid
## 81                                            Low
## 82                                            Mid
## 83                                            Mid
## 84                                            Mid
## 85                                           <NA>
## 86                                         Higher
## 87                                         Higher
## 88                                         Higher
## 89                                            Mid
## 90                                            Low
## 91                                            Low
## 92                                            Mid
## 93                                            Mid
## 94                                         Higher
## 95                                            Mid
## 96                                            Mid
## 97                                         Higher
## 98                                            Mid
## 99                                            Mid
## 100                                        Higher
## 101                                           Mid
## 102                                        Higher
## 103                                           Mid
## 104                                           Mid
## 105                                     Very high
## 106                                     Very high
## 107                                           Mid
## 108                                           Low
## 109                                     Very high
## 110                                           Mid
## 111                                           Low
## 112                                           Mid
## 113                                    Don't Know
## 114                                     Very high
## 115                                           Mid
## 116                                     Very high
## 117                                        Higher
## 118                                     Very high
## 119                                     Very high
## 120                                     Very high
## 121                                           Mid
## 122                                        Higher
## 123                                        Higher
## 124                                     Very high
## 125                                     Very high
## 126                                     Very high
## 127                                     Very high
## 128                                        Higher
## 129                                     Very high
## 130                                           Low
## 131                                    Don't Know
## 132                                           Mid
## 133                                     Very high
## 134                                     Very high
## 135                                           Mid
## 136                                    Don't Know
## 137                                           Mid
## 138                                        Higher
## 139                                           Mid
## 140                                     Very high
## 141                                        Higher
## 142                                     Very high
## 143                                     Very high
## 144                                     Very high
## 145                                     Very high
## 146                                        Higher
## 147                                           Mid
## 148                                    Don't Know
## 149                                           Low
## 150                                      Very Low
## 151                                    Don't Know
## 152                                        Higher
## 153                                          <NA>
## 154                                    Don't Know
## 155                                    Don't Know
## 156                                    Don't Know
## 157                                    Don't Know
## 158                                        Higher
## 159                                    Don't Know
## 160                                        Higher
## 161                                        Higher
## 162                                    Don't Know
## 163                                    Don't Know
## 164                                    Don't Know
## 165                                        Higher
## 166                                    Don't Know
## 167                                        Higher
## 168                                        Higher
## 169                                    Don't Know
## 170                                    Don't Know
## 171                                    Don't Know
## 172                                    Don't Know
## 173                                    Don't Know
## 174                                    Don't Know
## 175                                    Don't Know
## 176                                    Don't Know
## 177                                    Don't Know
## 178                                    Don't Know
## 179                                    Don't Know
## 180                                        Higher
## 181                                    Don't Know
## 182                                    Don't Know
## 183                                    Don't Know
## 184                                    Don't Know
## 185                                        Higher
## 186                                        Higher
## 187                                        Higher
## 188                                    Don't Know
## 189                                    Don't Know
## 190                                    Don't Know
## 191                                    Don't Know
## 192                                    Don't Know
## 193                                    Don't Know
## 194                                    Don't Know
## 195                                    Don't Know
## 196                                    Don't Know
## 197                                    Don't Know
## 198                                    Don't Know
## 199                                    Don't Know
## 200                                    Don't Know
## 201                                     Very high
## 202                                        Higher
## 203                                        Higher
## 204                                           Low
## 205                                        Higher
## 206                                           Mid
## 207                                     Very high
## 208                                     Very high
## 209                                        Higher
## 210                                        Higher
## 211                                           Mid
## 212                                           Mid
## 213                                        Higher
## 214                                           Mid
## 215                                        Higher
## 216                                        Higher
## 217                                           Low
## 218                                        Higher
## 219                                           Low
## 220                                        Higher
## 221                                           Mid
## 222                                           Low
## 223                                        Higher
## 224                                      Very Low
## 225                                        Higher
## 226                                     Very high
## 227                                        Higher
## 228                                           Mid
## 229                                     Very high
## 230                                           Low
## 231                                           Low
## 232                                           Mid
## 233                                           Low
## 234                                        Higher
## 235                                        Higher
## 236                                        Higher
## 237                                        Higher
## 238                                     Very high
## 239                                        Higher
## 240                                        Higher
## 241                                        Higher
## 242                                        Higher
## 243                                        Higher
## 244                                        Higher
## 245                                           Mid
## 246                                           Mid
## 247                                        Higher
## 248                                     Very high
## 249                                           Mid
## 250                                           Mid
## 251                                           Mid
## 252                                           Mid
## 253                                    Don't Know
## 254                                           Mid
## 255                                           Mid
## 256                                           Mid
## 257                                           Mid
## 258                                           Mid
## 259                                           Low
## 260                                      Very Low
## 261                                           Mid
## 262                                           Low
## 263                                           Mid
## 264                                           Low
## 265                                           Mid
## 266                                           Mid
## 267                                        Higher
## 268                                        Higher
## 269                                           Mid
## 270                                           Low
## 271                                           Mid
## 272                                        Higher
## 273                                           Mid
## 274                                           Mid
## 275                                           Mid
## 276                                        Higher
## 277                                           Mid
## 278                                           Mid
## 279                                          <NA>
## 280                                        Higher
## 281                                           Mid
## 282                                           Mid
## 283                                           Mid
## 284                                          <NA>
## 285                                           Low
## 286                                           Low
## 287                                        Higher
## 288                                           Mid
## 289                                     Very high
## 290                                           Mid
## 291                                           Mid
## 292                                        Higher
## 293                                           Low
## 294                                           Mid
## 295                                        Higher
## 296                                        Higher
## 297                                           Low
## 298                                           Low
## 299                                           Low
## 300                                           Mid
## 302                                      Very Low
## 303                                           Mid
## 304                                           Low
## 305                                           Mid
## 306                                     Very high
## 307                                      Very Low
## 308                                           Low
## 309                                    Don't Know
## 310                                     Very high
## 311                                           Low
## 312                                           Mid
## 313                                        Higher
## 314                                        Higher
## 315                                    Don't Know
## 316                                           Low
## 317                                      Very Low
## 318                                     Very high
## 319                                           Mid
## 320                                           Mid
## 321                                        Higher
## 322                                    Don't Know
## 323                                    Don't Know
## 324                                           Low
## 325                                           Low
## 326                                           Low
## 327                                           Mid
## 328                                        Higher
## 329                                        Higher
## 330                                     Very high
## 331                                        Higher
## 332                                     Very high
## 333                                           Low
## 334                                     Very high
## 335                                        Higher
## 336                                      Very Low
## 337                                           Low
## 338                                     Very high
## 339                                           Low
## 340                                        Higher
## 341                                           Low
## 342                                           Mid
## 343                                           Mid
## 344                                     Very high
## 345                                        Higher
## 346                                        Higher
## 347                                        Higher
## 348                                           Mid
## 349                                        Higher
## 350                                           Mid
## 351                                     Very high
## 352                                    Don't Know
## 353                                           Mid
## 354                                    Don't Know
## 355                                           Mid
## 356                                           Mid
## 357                                        Higher
## 358                                           Mid
## 359                                           Mid
## 360                                           Mid
## 361                                           Mid
## 362                                           Mid
## 363                                        Higher
## 364                                        Higher
## 365                                           Mid
## 366                                           Mid
## 367                                           Mid
## 368                                           Mid
## 369                                           Low
## 370                                           Mid
## 371                                           Mid
## 372                                           Mid
## 373                                           Mid
## 374                                     Very high
## 375                                           Mid
## 376                                           Mid
## 377                                        Higher
## 378                                           Low
## 379                                           Mid
## 380                                           Mid
## 381                                           Mid
## 382                                           Mid
## 383                                           Mid
## 384                                           Mid
## 385                                           Mid
## 386                                        Higher
## 387                                           Mid
## 388                                           Mid
## 389                                           Mid
## 390                                    Don't Know
## 391                                           Low
## 392                                           Mid
## 393                                           Mid
## 394                                           Mid
## 395                                           Mid
## 396                                           Mid
## 397                                           Mid
## 398                                           Mid
## 399                                           Mid
## 400                                           Mid
## 401                                        Higher
## 402                                    Don't Know
## 403                                           Mid
## 404                                        Higher
## 405                                          <NA>
## 406                                    Don't Know
## 407                                    Don't Know
## 408                                           Mid
## 409                                          <NA>
## 410                                           Mid
## 411                                           Low
## 412                                           Mid
## 413                                           Mid
## 414                                          <NA>
## 415                                    Don't Know
## 416                                           Mid
## 417                                    Don't Know
## 418                                    Don't Know
## 419                                           Low
## 420                                          <NA>
## 421                                           Mid
## 422                                          <NA>
## 423                                          <NA>
## 424                                    Don't Know
## 425                                           Mid
## 426                                           Low
## 427                                           Mid
## 428                                          <NA>
## 429                                          <NA>
## 430                                           Mid
## 431                                           Mid
## 432                                          <NA>
## 433                                           Mid
## 434                                          <NA>
## 435                                          <NA>
## 436                                          <NA>
## 437                                           Mid
## 438                                           Mid
## 439                                           Mid
## 440                                           Low
## 441                                           Mid
## 442                                          <NA>
## 443                                           Low
## 444                                      Very Low
## 445                                           Mid
## 446                                           Mid
## 447                                           Mid
## 448                                           Mid
## 449                                          <NA>
## 450                                          <NA>
## 451                                          <NA>
## 452                                           Low
## 453                                        Higher
## 454                                        Higher
## 455                                        Higher
## 456                                        Higher
## 457                                    Don't Know
## 458                                      Very Low
## 459                                        Higher
## 460                                          <NA>
## 461                                          <NA>
## 462                                     Very high
## 463                                     Very high
## 464                                           Mid
## 465                                     Very high
## 466                                      Very Low
## 467                                     Very high
## 468                                     Very high
## 469                                        Higher
## 470                                           Mid
## 471                                     Very high
## 472                                     Very high
## 473                                    Don't Know
## 474                                        Higher
## 475                                           Mid
## 476                                    Don't Know
## 477                                          <NA>
## 478                                    Don't Know
## 479                                    Don't Know
## 480                                    Don't Know
## 481                                    Don't Know
## 482                                      Very Low
## 483                                           Mid
## 484                                    Don't Know
## 485                                          <NA>
## 486                                     Very high
## 487                                    Don't Know
## 488                                    Don't Know
## 489                                    Don't Know
## 490                                        Higher
## 491                                        Higher
## 492                                          <NA>
## 493                                        Higher
## 494                                           Mid
## 495                                     Very high
## 496                                        Higher
##      Development.of..Primary.School Development.of..Secondary.School
## 1                          Very bad                         Very bad
## 2                          Very bad                         Very bad
## 3                 Not bad, not good                              Bad
## 4                 Not bad, not good                Not bad, not good
## 5                 Not bad, not good                             Good
## 6                 Not bad, not good                             Good
## 7                 Not bad, not good                             Good
## 8                 Not bad, not good                Not bad, not good
## 9                 Not bad, not good                Not bad, not good
## 10                Not bad, not good                             Good
## 11                Not bad, not good                             Good
## 12                              Bad                              Bad
## 13                Not bad, not good                Not bad, not good
## 14                             Good                             Good
## 15                             <NA>                             Good
## 16                Not bad, not good                             Good
## 17                         Very bad                              Bad
## 18                             Good                             Good
## 19                Not bad, not good                Not bad, not good
## 20                Not bad, not good                             Good
## 21                Not bad, not good                Not bad, not good
## 22                             Good                Not bad, not good
## 23                             Good                             <NA>
## 24                             Good                Not bad, not good
## 25                             Good                             Good
## 26                             Good                              Bad
## 27                             Good                             Good
## 28                Not bad, not good                              Bad
## 29                             Good                             Good
## 30                Not bad, not good                Not bad, not good
## 31                             Good                             Good
## 32                             Good                             Good
## 33                             Good                             Good
## 34                Not bad, not good                Not bad, not good
## 35                Not bad, not good                              Bad
## 36                              Bad                Not bad, not good
## 37                Not bad, not good                Not bad, not good
## 38                Not bad, not good                Not bad, not good
## 39                             Good                             Good
## 40                Not bad, not good                Not bad, not good
## 41                              Bad                Not bad, not good
## 42                Not bad, not good                             Good
## 43                Not bad, not good                             Good
## 44                              Bad                              Bad
## 45                             Good                             Good
## 46                         Very bad                         Very bad
## 47                              Bad                Not bad, not good
## 48                             Good                Not bad, not good
## 49                Not bad, not good                Not bad, not good
## 50                             Good                             Good
## 51                       Don't Know                       Don't Know
## 52                Not bad, not good                Not bad, not good
## 53                Not bad, not good                Not bad, not good
## 54                             Good                Not bad, not good
## 55                             Good                Not bad, not good
## 56                Not bad, not good                Not bad, not good
## 57                Not bad, not good                Not bad, not good
## 58                             Good                Not bad, not good
## 59                Not bad, not good                Not bad, not good
## 60                             Good                             Good
## 61                Not bad, not good                Not bad, not good
## 62                              Bad                              Bad
## 63                Not bad, not good                Not bad, not good
## 64                         Very bad                         Very bad
## 65                Not bad, not good                Not bad, not good
## 66                         Very bad                              Bad
## 67                              Bad                              Bad
## 68                              Bad                              Bad
## 69                Not bad, not good                Not bad, not good
## 70                Not bad, not good                Not bad, not good
## 71                             Good                             Good
## 72                              Bad                         Very bad
## 73                              Bad                              Bad
## 74                         Very bad                         Very bad
## 75                         Very bad                         Very bad
## 76                         Very bad                         Very bad
## 77                         Very bad                         Very bad
## 78                         Very bad                         Very bad
## 79                         Very bad                         Very bad
## 80                         Very bad                         Very bad
## 81                              Bad                              Bad
## 82                         Very bad                         Very bad
## 83                         Very bad                         Very bad
## 84                         Very bad                         Very bad
## 85                Not bad, not good                             Good
## 86                Not bad, not good                             Good
## 87                Not bad, not good                Not bad, not good
## 88                             Good                             Good
## 89                Not bad, not good                Not bad, not good
## 90                Not bad, not good                Not bad, not good
## 91                Not bad, not good                Not bad, not good
## 92                Not bad, not good                Not bad, not good
## 93                Not bad, not good                Not bad, not good
## 94                Not bad, not good                Not bad, not good
## 95                Not bad, not good                Not bad, not good
## 96                Not bad, not good                Not bad, not good
## 97                Not bad, not good                Not bad, not good
## 98                Not bad, not good                Not bad, not good
## 99                Not bad, not good                Not bad, not good
## 100               Not bad, not good                Not bad, not good
## 101                            Good                             Good
## 102                            Good                             Good
## 103                            Good                             Good
## 104                            Good                             Good
## 105               Not bad, not good                             Good
## 106                            Good                             Good
## 107                            Good                             Good
## 108                            Good                             Good
## 109                            Good                             Good
## 110                            Good                             Good
## 111                            Good                             Good
## 112               Not bad, not good                Not bad, not good
## 113                            Good                             Good
## 114                            Good                              Bad
## 115               Not bad, not good                Not bad, not good
## 116                            Good                             Good
## 117                            Good                             Good
## 118                            Good                             Good
## 119                             Bad                              Bad
## 120                             Bad                         Very bad
## 121                            Good                Not bad, not good
## 122               Not bad, not good                Not bad, not good
## 123               Not bad, not good                Not bad, not good
## 124               Not bad, not good                Not bad, not good
## 125               Not bad, not good                Not bad, not good
## 126                             Bad                              Bad
## 127               Not bad, not good                             Good
## 128                             Bad                Not bad, not good
## 129               Not bad, not good                              Bad
## 130               Not bad, not good                Not bad, not good
## 131               Not bad, not good                              Bad
## 132                            Good                             Good
## 133               Not bad, not good                Not bad, not good
## 134                             Bad                Not bad, not good
## 135               Not bad, not good                Not bad, not good
## 136               Not bad, not good                Not bad, not good
## 137               Not bad, not good                Not bad, not good
## 138                            Good                             Good
## 139               Not bad, not good                              Bad
## 140               Not bad, not good                Not bad, not good
## 141               Not bad, not good                Not bad, not good
## 142               Not bad, not good                Not bad, not good
## 143               Not bad, not good                Not bad, not good
## 144                            Good                             Good
## 145               Not bad, not good                Not bad, not good
## 146               Not bad, not good                Not bad, not good
## 147                             Bad                Not bad, not good
## 148               Not bad, not good                             Good
## 149                             Bad                              Bad
## 150                             Bad                Not bad, not good
## 151                            Good                             Good
## 152               Not bad, not good                             Good
## 153                             Bad                Not bad, not good
## 154               Not bad, not good                Not bad, not good
## 155                             Bad                Not bad, not good
## 156                            Good                             Good
## 157                             Bad                Not bad, not good
## 158                             Bad                Not bad, not good
## 159                             Bad                Not bad, not good
## 160                             Bad                Not bad, not good
## 161                             Bad                             Good
## 162                             Bad                Not bad, not good
## 163                             Bad                Not bad, not good
## 164                             Bad                Not bad, not good
## 165                             Bad                Not bad, not good
## 166                             Bad                Not bad, not good
## 167                             Bad                Not bad, not good
## 168                        Very bad                              Bad
## 169                        Very bad                Not bad, not good
## 170                        Very bad                Not bad, not good
## 171                        Very bad                              Bad
## 172                        Very bad                              Bad
## 173                        Very bad                Not bad, not good
## 174               Not bad, not good                             Good
## 175                        Very bad                Not bad, not good
## 176                             Bad                Not bad, not good
## 177                             Bad                Not bad, not good
## 178                             Bad                Not bad, not good
## 179                             Bad                Not bad, not good
## 180                             Bad                Not bad, not good
## 181               Not bad, not good                             Good
## 182               Not bad, not good                             Good
## 183                             Bad                Not bad, not good
## 184               Not bad, not good                             Good
## 185               Not bad, not good                             Good
## 186               Not bad, not good                Not bad, not good
## 187                             Bad                Not bad, not good
## 188               Not bad, not good                             Good
## 189                             Bad                Not bad, not good
## 190               Not bad, not good                             Good
## 191               Not bad, not good                             Good
## 192               Not bad, not good                             Good
## 193               Not bad, not good                             Good
## 194               Not bad, not good                             Good
## 195               Not bad, not good                             Good
## 196                             Bad                Not bad, not good
## 197                             Bad                Not bad, not good
## 198                            Good                             Good
## 199               Not bad, not good                Not bad, not good
## 200               Not bad, not good                             Good
## 201                             Bad                              Bad
## 202               Not bad, not good                Not bad, not good
## 203                            Good                Not bad, not good
## 204                            Good                Not bad, not good
## 205                             Bad                Not bad, not good
## 206               Not bad, not good                Not bad, not good
## 207               Not bad, not good                Not bad, not good
## 208               Not bad, not good                             Good
## 209               Not bad, not good                Not bad, not good
## 210                             Bad                Not bad, not good
## 211               Not bad, not good                Not bad, not good
## 212               Not bad, not good                Not bad, not good
## 213               Not bad, not good                Not bad, not good
## 214               Not bad, not good                Not bad, not good
## 215               Not bad, not good                Not bad, not good
## 216               Not bad, not good                Not bad, not good
## 217               Not bad, not good                Not bad, not good
## 218               Not bad, not good                Not bad, not good
## 219               Not bad, not good                Not bad, not good
## 220                             Bad                Not bad, not good
## 221                             Bad                Not bad, not good
## 222                             Bad                Not bad, not good
## 223                             Bad                Not bad, not good
## 224               Not bad, not good                              Bad
## 225                       Very good                             Good
## 226               Not bad, not good                             Good
## 227                            Good                             Good
## 228               Not bad, not good                             Good
## 229                             Bad                         Very bad
## 230               Not bad, not good                              Bad
## 231                             Bad                Not bad, not good
## 232               Not bad, not good                             Good
## 233               Not bad, not good                Not bad, not good
## 234               Not bad, not good                Not bad, not good
## 235               Not bad, not good                Not bad, not good
## 236                             Bad                Not bad, not good
## 237                            Good                             Good
## 238                        Very bad                              Bad
## 239               Not bad, not good                Not bad, not good
## 240               Not bad, not good                Not bad, not good
## 241               Not bad, not good                Not bad, not good
## 242               Not bad, not good                Not bad, not good
## 243               Not bad, not good                Not bad, not good
## 244               Not bad, not good                Not bad, not good
## 245               Not bad, not good                             Good
## 246               Not bad, not good                Not bad, not good
## 247               Not bad, not good                Not bad, not good
## 248                        Very bad                              Bad
## 249               Not bad, not good                Not bad, not good
## 250               Not bad, not good                             Good
## 251                            Good                             Good
## 252                            Good                             Good
## 253                            Good                             Good
## 254                            Good                             Good
## 255                            Good                             Good
## 256               Not bad, not good                Not bad, not good
## 257                            Good                             Good
## 258                       Very good                             Good
## 259                       Very good                        Very good
## 260                            Good                             Good
## 261                       Very good                        Very good
## 262                       Very good                        Very good
## 263                            Good                             Good
## 264                            Good                             Good
## 265                            Good                             Good
## 266                            Good                             Good
## 267                            Good                             Good
## 268                            Good                             Good
## 269                            Good                             Good
## 270                            Good                             Good
## 271                            Good                             Good
## 272                            Good                             Good
## 273               Not bad, not good                             Good
## 274               Not bad, not good                Not bad, not good
## 275                            Good                             Good
## 276                             Bad                Not bad, not good
## 277                            Good                             Good
## 278                            Good                             Good
## 279                            <NA>                             <NA>
## 280               Not bad, not good                             Good
## 281                            Good                             Good
## 282                            Good                             Good
## 283                            Good                             Good
## 284               Not bad, not good                             Good
## 285                            Good                             Good
## 286                            Good                             Good
## 287               Not bad, not good                Not bad, not good
## 288                            Good                             Good
## 289                            Good                             Good
## 290                            Good                             Good
## 291                            Good                             Good
## 292                            Good                             Good
## 293                            Good                             Good
## 294                            Good                             Good
## 295                            Good                             Good
## 296                            Good                             Good
## 297                            Good                             Good
## 298                            Good                             Good
## 299                      Don't Know                       Don't Know
## 300                            Good                             Good
## 302                             Bad                              Bad
## 303                            Good                             Good
## 304                        Very bad                              Bad
## 305                             Bad                             Good
## 306               Not bad, not good                             Good
## 307                      Don't Know                       Don't Know
## 308                             Bad                              Bad
## 309                            Good                             Good
## 310                            Good                        Very good
## 311                      Don't Know                       Don't Know
## 312                            Good                             Good
## 313                            Good                             Good
## 314                      Don't Know                       Don't Know
## 315               Not bad, not good                Not bad, not good
## 316               Not bad, not good                             Good
## 317                            Good                             Good
## 318                            Good                             Good
## 319                             Bad                              Bad
## 320                            Good                             Good
## 321                             Bad                Not bad, not good
## 322                            Good                             Good
## 323                            Good                             Good
## 324                            Good                             Good
## 325                            Good                             Good
## 326                            Good                             Good
## 327                            Good                             Good
## 328                             Bad                Not bad, not good
## 329                             Bad                             Good
## 330                             Bad                              Bad
## 331                        Very bad                              Bad
## 332                        Very bad                              Bad
## 333                        Very bad                              Bad
## 334                        Very bad                              Bad
## 335                        Very bad                        Very good
## 336                            Good                        Very good
## 337                            Good                        Very good
## 338                            Good                             Good
## 339                            Good                             Good
## 340                            Good                             Good
## 341                            Good                             Good
## 342                            Good                             Good
## 343                             Bad                Not bad, not good
## 344               Not bad, not good                              Bad
## 345                       Very good                        Very good
## 346                            Good                             Good
## 347                            Good                             Good
## 348                            Good                             Good
## 349                            Good                             Good
## 350               Not bad, not good                Not bad, not good
## 351               Not bad, not good                Not bad, not good
## 352                      Don't Know                       Don't Know
## 353               Not bad, not good                Not bad, not good
## 354                            Good                             Good
## 355               Not bad, not good                             Good
## 356               Not bad, not good                Not bad, not good
## 357               Not bad, not good                Not bad, not good
## 358                            Good                             Good
## 359                            Good                             Good
## 360                            Good                             Good
## 361               Not bad, not good                             Good
## 362               Not bad, not good                Not bad, not good
## 363               Not bad, not good                             Good
## 364                            Good                             Good
## 365               Not bad, not good                Not bad, not good
## 366                            Good                             Good
## 367               Not bad, not good                Not bad, not good
## 368                            Good                             Good
## 369               Not bad, not good                Not bad, not good
## 370                            Good                             Good
## 371               Not bad, not good                Not bad, not good
## 372               Not bad, not good                Not bad, not good
## 373                            Good                             Good
## 374                            Good                             Good
## 375                            Good                             Good
## 376                            Good                Not bad, not good
## 377                            Good                             Good
## 378                            Good                             Good
## 379                            Good                             Good
## 380                            Good                             Good
## 381                            Good                             Good
## 382                            Good                             Good
## 383                            Good                             Good
## 384                            Good                             Good
## 385                            Good                             Good
## 386                            Good                             Good
## 387                            Good                             Good
## 388                            Good                             Good
## 389                            Good                             Good
## 390               Not bad, not good                Not bad, not good
## 391                             Bad                Not bad, not good
## 392                            Good                             Good
## 393                            Good                             Good
## 394                            Good                             Good
## 395                            Good                             Good
## 396               Not bad, not good                Not bad, not good
## 397               Not bad, not good                Not bad, not good
## 398               Not bad, not good                Not bad, not good
## 399                            Good                             Good
## 400               Not bad, not good                Not bad, not good
## 401               Not bad, not good                Not bad, not good
## 402                       Very good                        Very good
## 403                            Good                             Good
## 404               Not bad, not good                Not bad, not good
## 405               Not bad, not good                Not bad, not good
## 406                            Good                             Good
## 407                       Very good                        Very good
## 408                       Very good                        Very good
## 409                            Good                             Good
## 410                            Good                             Good
## 411                       Very good                        Very good
## 412                       Very good                        Very good
## 413                       Very good                        Very good
## 414                            Good                             Good
## 415                       Very good                        Very good
## 416                       Very good                        Very good
## 417                       Very good                        Very good
## 418                       Very good                        Very good
## 419                       Very good                        Very good
## 420                            <NA>                             <NA>
## 421                       Very good                        Very good
## 422                       Very good                        Very good
## 423                            <NA>                             <NA>
## 424                       Very good                        Very good
## 425                       Very good                        Very good
## 426                       Very good                        Very good
## 427                            Good                             Good
## 428                            Good                             Good
## 429                       Very good                        Very good
## 430                       Very good                        Very good
## 431                       Very good                        Very good
## 432                       Very good                        Very good
## 433                       Very good                        Very good
## 434                       Very good                        Very good
## 435                       Very good                        Very good
## 436                       Very good                        Very good
## 437                       Very good                        Very good
## 438               Not bad, not good                             Good
## 439                       Very good                        Very good
## 440                       Very good                        Very good
## 441                       Very good                        Very good
## 442               Not bad, not good                Not bad, not good
## 443                       Very good                        Very good
## 444                       Very good                        Very good
## 445                       Very good                        Very good
## 446                       Very good                        Very good
## 447                       Very good                        Very good
## 448                       Very good                        Very good
## 449                       Very good                        Very good
## 450               Not bad, not good                Not bad, not good
## 451                       Very good                        Very good
## 452                       Very good                        Very good
## 453               Not bad, not good                Not bad, not good
## 454               Not bad, not good                Not bad, not good
## 455               Not bad, not good                             Good
## 456                            Good                             Good
## 457                             Bad                Not bad, not good
## 458               Not bad, not good                              Bad
## 459                             Bad                              Bad
## 460                             Bad                       Don't Know
## 461                            Good                             Good
## 462                       Very good                             Good
## 463               Not bad, not good                             Good
## 464               Not bad, not good                             Good
## 465                            Good                             Good
## 466                            Good                Not bad, not good
## 467                       Very good                        Very good
## 468               Not bad, not good                Not bad, not good
## 469                            Good                             Good
## 470               Not bad, not good                              Bad
## 471               Not bad, not good                Not bad, not good
## 472               Not bad, not good                Not bad, not good
## 473               Not bad, not good                Not bad, not good
## 474                            Good                             Good
## 475                             Bad                Not bad, not good
## 476                            Good                             Good
## 477               Not bad, not good                             Good
## 478               Not bad, not good                Not bad, not good
## 479               Not bad, not good                Not bad, not good
## 480                            Good                             Good
## 481               Not bad, not good                Not bad, not good
## 482                        Very bad                         Very bad
## 483               Not bad, not good                Not bad, not good
## 484                            Good                             Good
## 485               Not bad, not good                             Good
## 486               Not bad, not good                             Good
## 487               Not bad, not good                Not bad, not good
## 488                             Bad                              Bad
## 489               Not bad, not good                Not bad, not good
## 490                            Good                Not bad, not good
## 491               Not bad, not good                              Bad
## 492                            Good                             Good
## 493                             Bad                              Bad
## 494               Not bad, not good                Not bad, not good
## 495                             Bad                              Bad
## 496                        Very bad                              Bad
##      Development.of..Higher.Secondary.School Development.of..College
## 1                                        Bad       Not bad, not good
## 2                                   Very bad                     Bad
## 3                                        Bad                     Bad
## 4                          Not bad, not good       Not bad, not good
## 5                                       Good                    Good
## 6                                       Good                    Good
## 7                                       Good                    Good
## 8                          Not bad, not good       Not bad, not good
## 9                          Not bad, not good                    Good
## 10                                      Good                    Good
## 11                                      Good                    Good
## 12                         Not bad, not good       Not bad, not good
## 13                         Not bad, not good       Not bad, not good
## 14                                      Good               Very good
## 15                         Not bad, not good                    Good
## 16                                      Good                    Good
## 17                                      Good                    Good
## 18                                      Good                    Good
## 19                                      Good                    Good
## 20                                      Good                    Good
## 21                         Not bad, not good       Not bad, not good
## 22                                       Bad                     Bad
## 23                                      Good                    Good
## 24                                      Good       Not bad, not good
## 25                                      Good              Don't Know
## 26                                Don't Know              Don't Know
## 27                                      Good                    Good
## 28                                      Good              Don't Know
## 29                                Don't Know              Don't Know
## 30                         Not bad, not good                    Good
## 31                                      Good       Not bad, not good
## 32                                      Good              Don't Know
## 33                                      Good                     Bad
## 34                                      Good                    Good
## 35                                  Very bad                Very bad
## 36                         Not bad, not good                     Bad
## 37                         Not bad, not good       Not bad, not good
## 38                                       Bad                     Bad
## 39                                      Good                    Good
## 40                                      Good       Not bad, not good
## 41                         Not bad, not good       Not bad, not good
## 42                                      Good       Not bad, not good
## 43                                      Good                    Good
## 44                                       Bad                     Bad
## 45                                      Good                    Good
## 46                                  Very bad                     Bad
## 47                         Not bad, not good                    Good
## 48                         Not bad, not good       Not bad, not good
## 49                         Not bad, not good       Not bad, not good
## 50                                      Good              Don't Know
## 51                                Don't Know              Don't Know
## 52                         Not bad, not good              Don't Know
## 53                         Not bad, not good       Not bad, not good
## 54                         Not bad, not good       Not bad, not good
## 55                                       Bad                     Bad
## 56                                Don't Know              Don't Know
## 57                                Don't Know              Don't Know
## 58                         Not bad, not good              Don't Know
## 59                         Not bad, not good              Don't Know
## 60                                      Good                    Good
## 61                         Not bad, not good       Not bad, not good
## 62                         Not bad, not good       Not bad, not good
## 63                         Not bad, not good       Not bad, not good
## 64                                       Bad                     Bad
## 65                         Not bad, not good       Not bad, not good
## 66                         Not bad, not good       Not bad, not good
## 67                         Not bad, not good       Not bad, not good
## 68                                       Bad                     Bad
## 69                         Not bad, not good       Not bad, not good
## 70                         Not bad, not good                    Good
## 71                                      Good                    Good
## 72                                  Very bad                     Bad
## 73                                       Bad                     Bad
## 74                                       Bad                     Bad
## 75                                  Very bad                Very bad
## 76                                  Very bad                Very bad
## 77                                  Very bad                Very bad
## 78                                  Very bad                     Bad
## 79                         Not bad, not good       Not bad, not good
## 80                                       Bad                     Bad
## 81                                       Bad       Not bad, not good
## 82                                  Very bad                Very bad
## 83                                  Very bad                Very bad
## 84                                  Very bad                     Bad
## 85                                      Good                    Good
## 86                                      Good                    Good
## 87                                      Good                    Good
## 88                                      Good                    Good
## 89                         Not bad, not good                    Good
## 90                         Not bad, not good                    Good
## 91                                      Good                    Good
## 92                                      Good                    Good
## 93                         Not bad, not good                    Good
## 94                                      Good                    Good
## 95                         Not bad, not good                    Good
## 96                         Not bad, not good                    Good
## 97                         Not bad, not good       Not bad, not good
## 98                         Not bad, not good       Not bad, not good
## 99                         Not bad, not good       Not bad, not good
## 100                        Not bad, not good       Not bad, not good
## 101                                Very good              Don't Know
## 102                               Don't Know              Don't Know
## 103                                     Good                    Good
## 104                                Very good               Very good
## 105                                     Good                    Good
## 106                                     Good                    Good
## 107                                     Good                    Good
## 108                                     Good                    Good
## 109                                     Good                    Good
## 110                                     Good                    Good
## 111                                     Good                    Good
## 112                        Not bad, not good       Not bad, not good
## 113                                     Good                    Good
## 114                        Not bad, not good       Not bad, not good
## 115                                      Bad                     Bad
## 116                                     Good                    Good
## 117                                     Good                    Good
## 118                                     Good                    Good
## 119                        Not bad, not good       Not bad, not good
## 120                                 Very bad                     Bad
## 121                                     Good       Not bad, not good
## 122                        Not bad, not good       Not bad, not good
## 123                        Not bad, not good       Not bad, not good
## 124                        Not bad, not good       Not bad, not good
## 125                        Not bad, not good       Not bad, not good
## 126                                      Bad                     Bad
## 127                                      Bad       Not bad, not good
## 128                                      Bad       Not bad, not good
## 129                        Not bad, not good                     Bad
## 130                        Not bad, not good       Not bad, not good
## 131                                      Bad                     Bad
## 132                        Not bad, not good       Not bad, not good
## 133                                     Good                    Good
## 134                                      Bad       Not bad, not good
## 135                        Not bad, not good       Not bad, not good
## 136                        Not bad, not good       Not bad, not good
## 137                        Not bad, not good       Not bad, not good
## 138                                     Good                    Good
## 139                        Not bad, not good                     Bad
## 140                                     Good                    Good
## 141                        Not bad, not good       Not bad, not good
## 142                        Not bad, not good                     Bad
## 143                        Not bad, not good       Not bad, not good
## 144                                     Good                    Good
## 145                        Not bad, not good       Not bad, not good
## 146                        Not bad, not good       Not bad, not good
## 147                        Not bad, not good       Not bad, not good
## 148                                     Good                    Good
## 149                        Not bad, not good       Not bad, not good
## 150                                      Bad                     Bad
## 151                                     Good                    Good
## 152                                     Good               Very good
## 153                                     Good              Don't Know
## 154                        Not bad, not good              Don't Know
## 155                        Not bad, not good                    Good
## 156                                     Good                    Good
## 157                        Not bad, not good                    Good
## 158                        Not bad, not good                    Good
## 159                                     Good               Very good
## 160                                     Good               Very good
## 161                                Very good               Very good
## 162                                     Good                    Good
## 163                        Not bad, not good                     Bad
## 164                        Not bad, not good       Not bad, not good
## 165                        Not bad, not good                    Good
## 166                        Not bad, not good       Not bad, not good
## 167                        Not bad, not good                    Good
## 168                                     Good       Not bad, not good
## 169                                     Good       Not bad, not good
## 170                        Not bad, not good                    Good
## 171                        Not bad, not good                    Good
## 172                        Not bad, not good              Don't Know
## 173                        Not bad, not good       Not bad, not good
## 174                                     Good                    Good
## 175                                     Good                    Good
## 176                                     Good               Very good
## 177                                     Good               Very good
## 178                                     Good       Not bad, not good
## 179                                     Good       Not bad, not good
## 180                                     Good                    Good
## 181                                     Good                    Good
## 182                                Very good                    Good
## 183                        Not bad, not good       Not bad, not good
## 184                                     Good                    Good
## 185                        Not bad, not good                    Good
## 186                        Not bad, not good                    Good
## 187                                     Good               Very good
## 188                                     Good                    Good
## 189                                     Good                    Good
## 190                                     Good                    Good
## 191                                     Good                    Good
## 192                                Very good                    Good
## 193                                Very good       Not bad, not good
## 194                                Very good       Not bad, not good
## 195                        Not bad, not good                    Good
## 196                        Not bad, not good                    Good
## 197                        Not bad, not good                    Good
## 198                                     Good                    Good
## 199                                     Good                    Good
## 200                                Very good                    Good
## 201                        Not bad, not good                    Good
## 202                                     Good                    Good
## 203                        Not bad, not good       Not bad, not good
## 204                        Not bad, not good                    Good
## 205                                      Bad       Not bad, not good
## 206                                     Good       Not bad, not good
## 207                        Not bad, not good                    Good
## 208                                     Good       Not bad, not good
## 209                        Not bad, not good       Not bad, not good
## 210                                      Bad       Not bad, not good
## 211                        Not bad, not good       Not bad, not good
## 212                                      Bad       Not bad, not good
## 213                                      Bad       Not bad, not good
## 214                        Not bad, not good       Not bad, not good
## 215                        Not bad, not good       Not bad, not good
## 216                                      Bad       Not bad, not good
## 217                                     Good               Very good
## 218                        Not bad, not good       Not bad, not good
## 219                                     Good       Not bad, not good
## 220                        Not bad, not good                     Bad
## 221                        Not bad, not good                    Good
## 222                        Not bad, not good                    Good
## 223                                      Bad       Not bad, not good
## 224                                     Good       Not bad, not good
## 225                                      Bad       Not bad, not good
## 226                        Not bad, not good                     Bad
## 227                                     Good               Very good
## 228                                Very good       Not bad, not good
## 229                        Not bad, not good       Not bad, not good
## 230                        Not bad, not good                     Bad
## 231                        Not bad, not good       Not bad, not good
## 232                                     Good                    Good
## 233                                     Good                    Good
## 234                                     Good                    Good
## 235                                     Good                    Good
## 236                                     Good       Not bad, not good
## 237                        Not bad, not good                     Bad
## 238                                 Very bad       Not bad, not good
## 239                                     Good                    Good
## 240                                     Good                    Good
## 241                                     Good                    Good
## 242                                     Good                    Good
## 243                                     Good                    Good
## 244                                     Good                    Good
## 245                        Not bad, not good                    Good
## 246                        Not bad, not good       Not bad, not good
## 247                                     Good                    Good
## 248                        Not bad, not good                     Bad
## 249                                     Good                    Good
## 250                                     Good       Not bad, not good
## 251                                     Good                    Good
## 252                        Not bad, not good       Not bad, not good
## 253                                     Good              Don't Know
## 254                                     Good                    Good
## 255                                     Good       Not bad, not good
## 256                        Not bad, not good       Not bad, not good
## 257                                     Good                    Good
## 258                                     Good                    Good
## 259                                Very good                    Good
## 260                                     Good                    Good
## 261                                     Good                    Good
## 262                                     Good                    Good
## 263                                     Good                    Good
## 264                                     Good                    Good
## 265                                     Good                    Good
## 266                                     Good                    Good
## 267                                     Good                    Good
## 268                                     Good                    Good
## 269                                     Good                    Good
## 270                                     Good                    Good
## 271                                     Good                    Good
## 272                                     Good                    Good
## 273                                     Good                    Good
## 274                        Not bad, not good                     Bad
## 275                                     Good                    Good
## 276                                     Good       Not bad, not good
## 277                                     Good              Don't Know
## 278                                     Good                    Good
## 279                                     <NA>                    <NA>
## 280                                     Good                    Good
## 281                                     Good                    Good
## 282                                     Good                    Good
## 283                                     Good                    Good
## 284                        Not bad, not good                    Good
## 285                                     Good                    Good
## 286                                     Good       Not bad, not good
## 287                        Not bad, not good                    Good
## 288                                     Good                    Good
## 289                                     Good                    Good
## 290                                     Good                    Good
## 291                                     Good                    Good
## 292                                     Good                    Good
## 293                                     Good                    Good
## 294                                     Good                    Good
## 295                                     Good       Not bad, not good
## 296                                     Good                    Good
## 297                                     Good                    Good
## 298                                     Good                    Good
## 299                               Don't Know              Don't Know
## 300                                     Good                    Good
## 302                                     Good                     Bad
## 303                                     Good                    Good
## 304                                      Bad                     Bad
## 305                                     Good                    Good
## 306                                Very good               Very good
## 307                               Don't Know              Don't Know
## 308                                     Good                    Good
## 309                                     Good              Don't Know
## 310                                Very good                    Good
## 311                               Don't Know              Don't Know
## 312                                     Good                    Good
## 313                                     Good                    Good
## 314                               Don't Know              Don't Know
## 315                        Not bad, not good       Not bad, not good
## 316                                     Good                    Good
## 317                                     Good                    Good
## 318                                     Good                    Good
## 319                                      Bad       Not bad, not good
## 320                                     Good                    Good
## 321                        Not bad, not good                     Bad
## 322                                     Good              Don't Know
## 323                                     Good                    Good
## 324                                     Good              Don't Know
## 325                                     Good                    Good
## 326                                     Good                    Good
## 327                                     Good                    Good
## 328                               Don't Know              Don't Know
## 329                                      Bad                     Bad
## 330                                      Bad                     Bad
## 331                        Not bad, not good                    Good
## 332                        Not bad, not good                    Good
## 333                        Not bad, not good                    Good
## 334                        Not bad, not good                    Good
## 335                                Very good                Very bad
## 336                                     Good               Very good
## 337                                      Bad                Very bad
## 338                                     Good                    Good
## 339                                     Good                    Good
## 340                                     Good                    Good
## 341                                     Good              Don't Know
## 342                                     Good                    Good
## 343                        Not bad, not good       Not bad, not good
## 344                                     Good                    Good
## 345                                Very good               Very good
## 346                                     Good                    Good
## 347                                Very good               Very good
## 348                                     Good              Don't Know
## 349                                     Good                    Good
## 350                        Not bad, not good       Not bad, not good
## 351                        Not bad, not good       Not bad, not good
## 352                               Don't Know              Don't Know
## 353                        Not bad, not good       Not bad, not good
## 354                                     Good                    Good
## 355                                     Good                    Good
## 356                        Not bad, not good              Don't Know
## 357                                     Good                    Good
## 358                                     Good                    Good
## 359                                     Good                    Good
## 360                                     Good                    Good
## 361                        Not bad, not good       Not bad, not good
## 362                        Not bad, not good       Not bad, not good
## 363                                     Good                    Good
## 364                                     Good                    Good
## 365                               Don't Know              Don't Know
## 366                                     Good                    Good
## 367                        Not bad, not good       Not bad, not good
## 368                                     Good                    Good
## 369                                     Good                    Good
## 370                                     Good       Not bad, not good
## 371                                     Good                    Good
## 372                                     Good       Not bad, not good
## 373                                     Good                    Good
## 374                                     Good               Very good
## 375                        Not bad, not good                    Good
## 376                        Not bad, not good                    Good
## 377                                     Good                    Good
## 378                                     Good                    Good
## 379                                     Good                    Good
## 380                                     Good                    Good
## 381                                     Good                    Good
## 382                                     Good                    Good
## 383                                     Good                    Good
## 384                                     Good                    Good
## 385                                     Good                    Good
## 386                                     Good                    Good
## 387                                     Good                    Good
## 388                                     Good                    Good
## 389                                     Good                    Good
## 390                                      Bad       Not bad, not good
## 391                        Not bad, not good       Not bad, not good
## 392                                     Good                    Good
## 393                                     Good                    Good
## 394                                     Good                    Good
## 395                                     Good                    Good
## 396                        Not bad, not good       Not bad, not good
## 397                        Not bad, not good       Not bad, not good
## 398                        Not bad, not good       Not bad, not good
## 399                                     Good                    Good
## 400                        Not bad, not good       Not bad, not good
## 401                        Not bad, not good       Not bad, not good
## 402                                Very good               Very good
## 403                                     Good                    Good
## 404                        Not bad, not good                    Good
## 405                        Not bad, not good       Not bad, not good
## 406                                     Good                    Good
## 407                                Very good               Very good
## 408                                Very good               Very good
## 409                                     Good               Very good
## 410                                     Good                    Good
## 411                                Very good               Very good
## 412                                Very good               Very good
## 413                                Very good               Very good
## 414                                     <NA>                    <NA>
## 415                                Very good               Very good
## 416                                Very good               Very good
## 417                               Don't Know              Don't Know
## 418                                Very good               Very good
## 419                                Very good               Very good
## 420                                     <NA>                    <NA>
## 421                                Very good               Very good
## 422                                Very good               Very good
## 423                                     <NA>                    <NA>
## 424                                Very good               Very good
## 425                                Very good               Very good
## 426                                Very good               Very good
## 427                                     Good                    Good
## 428                                     Good                    Good
## 429                                Very good               Very good
## 430                                Very good               Very good
## 431                                Very good               Very good
## 432                                Very good               Very good
## 433                                Very good               Very good
## 434                                Very good               Very good
## 435                                Very good               Very good
## 436                                Very good               Very good
## 437                                Very good               Very good
## 438                                Very good                    Good
## 439                                Very good               Very good
## 440                                Very good               Very good
## 441                                Very good               Very good
## 442                                     Good                    Good
## 443                                Very good               Very good
## 444                                Very good               Very good
## 445                                Very good               Very good
## 446                                Very good               Very good
## 447                                Very good               Very good
## 448                                Very good               Very good
## 449                                Very good               Very good
## 450                                     Good                    Good
## 451                                Very good               Very good
## 452                                Very good               Very good
## 453                                     Good                    Good
## 454                        Not bad, not good                    Good
## 455                                     Good                    Good
## 456                                     Good                    Good
## 457                        Not bad, not good       Not bad, not good
## 458                                      Bad       Not bad, not good
## 459                                      Bad                     Bad
## 460                                 Very bad       Not bad, not good
## 461                                     Good       Not bad, not good
## 462                                Very good                    Good
## 463                                     Good       Not bad, not good
## 464                                     Good       Not bad, not good
## 465                                Very good               Very good
## 466                        Not bad, not good                    Good
## 467                                Very good               Very good
## 468                        Not bad, not good                    Good
## 469                                Very good               Very good
## 470                                     Good                    Good
## 471                                     Good                    Good
## 472                        Not bad, not good                    Good
## 473                        Not bad, not good       Not bad, not good
## 474                                     Good       Not bad, not good
## 475                        Not bad, not good       Not bad, not good
## 476                                     Good              Don't Know
## 477                                     Good       Not bad, not good
## 478                        Not bad, not good       Not bad, not good
## 479                        Not bad, not good              Don't Know
## 480                                     Good                    Good
## 481                        Not bad, not good       Not bad, not good
## 482                                 Very bad                Very bad
## 483                        Not bad, not good       Not bad, not good
## 484                                     Good                    Good
## 485                        Not bad, not good       Not bad, not good
## 486                                     Good       Not bad, not good
## 487                        Not bad, not good       Not bad, not good
## 488                        Not bad, not good       Not bad, not good
## 489                        Not bad, not good       Not bad, not good
## 490                        Not bad, not good       Not bad, not good
## 491                        Not bad, not good       Not bad, not good
## 492                                     Good                    Good
## 493                                      Bad                     Bad
## 494                        Not bad, not good       Not bad, not good
## 495                                      Bad                    Good
## 496                        Not bad, not good                    Good
##      Development.of..University Development.of..Literacy.Drive
## 1             Not bad, not good              Not bad, not good
## 2                    Don't Know                            Bad
## 3                           Bad              Not bad, not good
## 4             Not bad, not good              Not bad, not good
## 5             Not bad, not good                           Good
## 6                          Good                           Good
## 7                          Good                           Good
## 8                          Good              Not bad, not good
## 9                          Good                           Good
## 10                         Good              Not bad, not good
## 11                         Good                           Good
## 12            Not bad, not good                           Good
## 13            Not bad, not good                           Good
## 14            Not bad, not good                           Good
## 15                    Very good                      Very good
## 16                         Good              Not bad, not good
## 17                         Good                            Bad
## 18                         Good              Not bad, not good
## 19                         Good              Not bad, not good
## 20                         Good              Not bad, not good
## 21                         Good              Not bad, not good
## 22                     Very bad              Not bad, not good
## 23                         Good                           Good
## 24                         Good                            Bad
## 25            Not bad, not good              Not bad, not good
## 26                   Don't Know                           Good
## 27                         Good                           Good
## 28                   Don't Know                           Good
## 29                         Good                           Good
## 30                         Good                           Good
## 31            Not bad, not good                            Bad
## 32                   Don't Know                           Good
## 33                          Bad                       Very bad
## 34            Not bad, not good                           Good
## 35                     Very bad                           Good
## 36            Not bad, not good              Not bad, not good
## 37                         <NA>                           Good
## 38                          Bad                           Good
## 39                         Good              Not bad, not good
## 40            Not bad, not good              Not bad, not good
## 41            Not bad, not good                           Good
## 42            Not bad, not good              Not bad, not good
## 43                         Good                           Good
## 44                          Bad              Not bad, not good
## 45                         Good                           Good
## 46                     Very bad                       Very bad
## 47                         Good              Not bad, not good
## 48            Not bad, not good              Not bad, not good
## 49            Not bad, not good              Not bad, not good
## 50                   Don't Know              Not bad, not good
## 51                   Don't Know                           <NA>
## 52                   Don't Know                           Good
## 53            Not bad, not good              Not bad, not good
## 54                         Good                           Good
## 55            Not bad, not good                           Good
## 56                   Don't Know                           Good
## 57                         Good                           Good
## 58                   Don't Know              Not bad, not good
## 59                   Don't Know                           Good
## 60                         Good                       Very bad
## 61            Not bad, not good              Not bad, not good
## 62            Not bad, not good              Not bad, not good
## 63            Not bad, not good              Not bad, not good
## 64                          Bad                            Bad
## 65            Not bad, not good                            Bad
## 66                         Good              Not bad, not good
## 67            Not bad, not good              Not bad, not good
## 68            Not bad, not good              Not bad, not good
## 69            Not bad, not good              Not bad, not good
## 70                         Good              Not bad, not good
## 71                         Good                           Good
## 72            Not bad, not good              Not bad, not good
## 73                          Bad                            Bad
## 74            Not bad, not good              Not bad, not good
## 75                     Very bad                       Very bad
## 76                     Very bad                       Very bad
## 77                     Very bad                       Very bad
## 78                          Bad                            Bad
## 79            Not bad, not good              Not bad, not good
## 80                          Bad                            Bad
## 81            Not bad, not good              Not bad, not good
## 82                          Bad                            Bad
## 83                     Very bad                       Very bad
## 84                          Bad                            Bad
## 85                         Good                           Good
## 86                         Good              Not bad, not good
## 87                         Good                           Good
## 88                         Good                      Very good
## 89                         Good              Not bad, not good
## 90                         Good                           Good
## 91                         Good                           Good
## 92                         Good                           Good
## 93                         Good                           Good
## 94                         Good                           Good
## 95                         Good              Not bad, not good
## 96                         Good              Not bad, not good
## 97                         Good                           Good
## 98                         Good              Not bad, not good
## 99            Not bad, not good              Not bad, not good
## 100           Not bad, not good              Not bad, not good
## 101                  Don't Know                      Very good
## 102                  Don't Know                      Very good
## 103                        Good                           <NA>
## 104                   Very good                      Very good
## 105                        Good                           Good
## 106                        Good                           Good
## 107                        Good                           Good
## 108                        Good                           Good
## 109                        Good                           Good
## 110                        Good                           Good
## 111                        Good                           Good
## 112                        Good                           Good
## 113                        Good                           Good
## 114                        <NA>                           Good
## 115                        Good                           Good
## 116                        Good                           Good
## 117                        Good                           Good
## 118                        Good                            Bad
## 119           Not bad, not good                           Good
## 120           Not bad, not good                           Good
## 121                        Good                           Good
## 122           Not bad, not good                           Good
## 123           Not bad, not good              Not bad, not good
## 124           Not bad, not good              Not bad, not good
## 125           Not bad, not good              Not bad, not good
## 126                         Bad              Not bad, not good
## 127                         Bad              Not bad, not good
## 128                         Bad              Not bad, not good
## 129           Not bad, not good                            Bad
## 130           Not bad, not good              Not bad, not good
## 131           Not bad, not good                           Good
## 132                        Good              Not bad, not good
## 133                        Good                           Good
## 134           Not bad, not good                            Bad
## 135           Not bad, not good              Not bad, not good
## 136           Not bad, not good              Not bad, not good
## 137           Not bad, not good              Not bad, not good
## 138                        Good                           Good
## 139           Not bad, not good                            Bad
## 140                        Good                           Good
## 141           Not bad, not good                           Good
## 142           Not bad, not good              Not bad, not good
## 143           Not bad, not good              Not bad, not good
## 144                        Good                           Good
## 145           Not bad, not good              Not bad, not good
## 146           Not bad, not good                           Good
## 147                        Good                           Good
## 148                        Good                           Good
## 149                         Bad                           Good
## 150                        Good                           Good
## 151           Not bad, not good              Not bad, not good
## 152                   Very good                           Good
## 153                  Don't Know              Not bad, not good
## 154                  Don't Know              Not bad, not good
## 155                  Don't Know              Not bad, not good
## 156           Not bad, not good              Not bad, not good
## 157                  Don't Know              Not bad, not good
## 158                        Good              Not bad, not good
## 159                   Very good                           Good
## 160                   Very good                           Good
## 161                   Very good                           Good
## 162           Not bad, not good                           Good
## 163                  Don't Know                     Don't Know
## 164                        Good              Not bad, not good
## 165                        Good              Not bad, not good
## 166           Not bad, not good                           Good
## 167                        Good              Not bad, not good
## 168                        Good              Not bad, not good
## 169                        Good              Not bad, not good
## 170                   Very good                           Good
## 171                  Don't Know              Not bad, not good
## 172                  Don't Know              Not bad, not good
## 173                        Good              Not bad, not good
## 174           Not bad, not good              Not bad, not good
## 175                   Very good                           Good
## 176                   Very good                           Good
## 177                  Don't Know              Not bad, not good
## 178                        Good              Not bad, not good
## 179           Not bad, not good              Not bad, not good
## 180                        Good              Not bad, not good
## 181                   Very good                           Good
## 182                        Good                           Good
## 183           Not bad, not good                           Good
## 184                        Good              Not bad, not good
## 185                        Good                           Good
## 186                        Good                           Good
## 187                        Good                           Good
## 188                        Good                           Good
## 189                        Good              Not bad, not good
## 190                        Good                           Good
## 191                        Good              Not bad, not good
## 192                   Very good                           Good
## 193                        Good              Not bad, not good
## 194           Not bad, not good                            Bad
## 195           Not bad, not good              Not bad, not good
## 196                        Good              Not bad, not good
## 197                        Good              Not bad, not good
## 198           Not bad, not good                           Good
## 199                        Good                           Good
## 200                        Good                           Good
## 201                   Very good                       Very bad
## 202           Not bad, not good                           Good
## 203                        Good                            Bad
## 204           Not bad, not good                           Good
## 205                         Bad                           Good
## 206           Not bad, not good                           Good
## 207           Not bad, not good                           Good
## 208           Not bad, not good              Not bad, not good
## 209                        Good                           Good
## 210                        Good              Not bad, not good
## 211                        Good                           Good
## 212                        Good                           Good
## 213                        Good                           Good
## 214                        Good                           Good
## 215                        Good                           Good
## 216                        Good                           Good
## 217                   Very good                       Very bad
## 218           Not bad, not good                            Bad
## 219                         Bad                       Very bad
## 220                        Good                            Bad
## 221                   Very good                       Very bad
## 222                   Very good                       Very bad
## 223                        Good              Not bad, not good
## 224                         Bad                           Good
## 225                   Very good                            Bad
## 226           Not bad, not good              Not bad, not good
## 227                   Very good                       Very bad
## 228                        Good                      Very good
## 229                         Bad                           Good
## 230                        Good                       Very bad
## 231                        Good                           Good
## 232           Not bad, not good              Not bad, not good
## 233                        Good              Not bad, not good
## 234                        Good              Not bad, not good
## 235                        Good              Not bad, not good
## 236           Not bad, not good                           Good
## 237                    Very bad              Not bad, not good
## 238                        Good                      Very good
## 239                        Good              Not bad, not good
## 240                        Good              Not bad, not good
## 241                        Good              Not bad, not good
## 242                        Good              Not bad, not good
## 243                        Good              Not bad, not good
## 244                        Good              Not bad, not good
## 245                   Very good                            Bad
## 246                        Good              Not bad, not good
## 247                   Very good                       Very bad
## 248                        Good                      Very good
## 249                   Very good                      Very good
## 250           Not bad, not good                           Good
## 251                        Good                           <NA>
## 252           Not bad, not good              Not bad, not good
## 253                  Don't Know                     Don't Know
## 254                        Good                           Good
## 255                         Bad                            Bad
## 256           Not bad, not good              Not bad, not good
## 257                        Good                           Good
## 258                        Good                           Good
## 259                        Good                     Don't Know
## 260                        Good                            Bad
## 261                        Good              Not bad, not good
## 262                        Good                           Good
## 263                        Good                           Good
## 264                        Good                           Good
## 265                        Good                           Good
## 266                        Good                           Good
## 267                        Good                           Good
## 268                        Good                           Good
## 269                        Good                           Good
## 270                        Good                     Don't Know
## 271                        Good                           Good
## 272                        Good                           Good
## 273                        Good                           Good
## 274                        Good              Not bad, not good
## 275                        Good                           Good
## 276                        Good              Not bad, not good
## 277                  Don't Know                     Don't Know
## 278                        Good                           Good
## 279                        <NA>                           <NA>
## 280                        Good              Not bad, not good
## 281                        Good                           Good
## 282           Not bad, not good              Not bad, not good
## 283                        Good                           Good
## 284           Not bad, not good                           Good
## 285                  Don't Know                            Bad
## 286           Not bad, not good              Not bad, not good
## 287                        Good                           Good
## 288                  Don't Know                     Don't Know
## 289                  Don't Know                     Don't Know
## 290                        Good                           Good
## 291                        Good                           Good
## 292                  Don't Know                      Very good
## 293                        Good                           Good
## 294                        Good              Not bad, not good
## 295           Not bad, not good              Not bad, not good
## 296                        Good                           Good
## 297                        Good                           Good
## 298                        Good                           Good
## 299                  Don't Know                     Don't Know
## 300                        Good                           Good
## 302                         Bad                            Bad
## 303                        Good              Not bad, not good
## 304                         Bad                           Good
## 305                         Bad              Not bad, not good
## 306           Not bad, not good              Not bad, not good
## 307                  Don't Know                     Don't Know
## 308                        Good                           Good
## 309                  Don't Know                            Bad
## 310                        Good                           Good
## 311                  Don't Know                     Don't Know
## 312                        Good              Not bad, not good
## 313                        Good              Not bad, not good
## 314                  Don't Know                     Don't Know
## 315           Not bad, not good              Not bad, not good
## 316                        Good                      Very good
## 317                        Good              Not bad, not good
## 318           Not bad, not good                            Bad
## 319           Not bad, not good                           Good
## 320                        Good              Not bad, not good
## 321           Not bad, not good                           Good
## 322                  Don't Know                     Don't Know
## 323                        Good                     Don't Know
## 324                  Don't Know                     Don't Know
## 325                        Good                           Good
## 326                        Good                     Don't Know
## 327                        Good                           Good
## 328                  Don't Know                     Don't Know
## 329                         Bad                           Good
## 330                         Bad                           Good
## 331                   Very good                     Don't Know
## 332                   Very good                     Don't Know
## 333                   Very good                     Don't Know
## 334                   Very good                     Don't Know
## 335                         Bad                       Very bad
## 336                        Good                      Very good
## 337                         Bad              Not bad, not good
## 338                        Good                            Bad
## 339           Not bad, not good              Not bad, not good
## 340                         Bad                            Bad
## 341                  Don't Know                     Don't Know
## 342                        Good              Not bad, not good
## 343           Not bad, not good              Not bad, not good
## 344                        Good                           Good
## 345                   Very good              Not bad, not good
## 346                        Good              Not bad, not good
## 347           Not bad, not good              Not bad, not good
## 348                        Good                           Good
## 349                        Good              Not bad, not good
## 350                         Bad                            Bad
## 351           Not bad, not good                     Don't Know
## 352                  Don't Know              Not bad, not good
## 353                        Good                           Good
## 354                        Good                     Don't Know
## 355                        Good              Not bad, not good
## 356                  Don't Know              Not bad, not good
## 357                        Good                           Good
## 358                   Very good                           Good
## 359                        Good                           Good
## 360                   Very good                           Good
## 361                        Good                           Good
## 362                        Good                           Good
## 363                        Good              Not bad, not good
## 364                        Good                           Good
## 365                  Don't Know              Not bad, not good
## 366                        Good                           Good
## 367                        Good                           Good
## 368                        Good                           Good
## 369                        Good              Not bad, not good
## 370                        Good              Not bad, not good
## 371                        Good                           Good
## 372                        Good                           Good
## 373                        Good                           Good
## 374                   Very good                           Good
## 375                        Good                      Very good
## 376                        Good              Not bad, not good
## 377                        Good                           Good
## 378                        Good                           Good
## 379                        Good                           Good
## 380                        Good                           Good
## 381                  Don't Know                           Good
## 382                        Good                           Good
## 383                        Good                           Good
## 384                        Good                           Good
## 385                        Good                           Good
## 386                        Good                           Good
## 387                        Good                           Good
## 388                        Good                           Good
## 389                        Good                           Good
## 390           Not bad, not good                           Good
## 391           Not bad, not good                           Good
## 392                        Good                           Good
## 393                        Good                           Good
## 394                        Good                           Good
## 395                        Good                           Good
## 396           Not bad, not good                           Good
## 397           Not bad, not good                           Good
## 398           Not bad, not good                           Good
## 399                        Good                           Good
## 400                        Good                           Good
## 401                        Good                           Good
## 402                   Very good                           Good
## 403                        Good                           Good
## 404                        Good              Not bad, not good
## 405           Not bad, not good              Not bad, not good
## 406                  Don't Know                      Very good
## 407                   Very good                           Good
## 408                   Very good                      Very good
## 409                   Very good              Not bad, not good
## 410           Not bad, not good                           Good
## 411                   Very good              Not bad, not good
## 412                   Very good                           Good
## 413                   Very good                           Good
## 414                        <NA>              Not bad, not good
## 415                   Very good                     Don't Know
## 416                   Very good              Not bad, not good
## 417                  Don't Know                     Don't Know
## 418                   Very good                      Very good
## 419                   Very good                      Very good
## 420                        <NA>                           <NA>
## 421                   Very good                      Very good
## 422                   Very good                      Very good
## 423                        <NA>                           <NA>
## 424                   Very good              Not bad, not good
## 425                   Very good                      Very good
## 426                   Very good                           <NA>
## 427                        Good                           Good
## 428                        Good                           Good
## 429                   Very good                      Very good
## 430                   Very good                      Very good
## 431                   Very good                      Very good
## 432                   Very good                      Very good
## 433                   Very good                           Good
## 434                   Very good                      Very good
## 435                   Very good                      Very good
## 436                   Very good                      Very good
## 437                   Very good                      Very good
## 438                   Very good              Not bad, not good
## 439                   Very good                      Very good
## 440                   Very good                      Very good
## 441                   Very good                      Very good
## 442                        Good                           <NA>
## 443                   Very good                      Very good
## 444                   Very good                      Very good
## 445                   Very good                      Very good
## 446                   Very good                      Very good
## 447                   Very good                      Very good
## 448                   Very good                      Very good
## 449                   Very good                      Very good
## 450                        Good                           <NA>
## 451                   Very good                      Very good
## 452                   Very good                      Very good
## 453                        Good                           Good
## 454                        Good              Not bad, not good
## 455                        Good              Not bad, not good
## 456                        Good                      Very good
## 457           Not bad, not good                     Don't Know
## 458                         Bad                            Bad
## 459           Not bad, not good                            Bad
## 460                         Bad              Not bad, not good
## 461                        Good              Not bad, not good
## 462                        Good                      Very good
## 463                         Bad              Not bad, not good
## 464                         Bad              Not bad, not good
## 465                   Very good                      Very good
## 466                        Good                            Bad
## 467                   Very good                           Good
## 468                   Very good                           Good
## 469           Not bad, not good              Not bad, not good
## 470           Not bad, not good                      Very good
## 471                        Good              Not bad, not good
## 472           Not bad, not good              Not bad, not good
## 473           Not bad, not good              Not bad, not good
## 474           Not bad, not good              Not bad, not good
## 475           Not bad, not good                           Good
## 476                  Don't Know                           Good
## 477           Not bad, not good                      Very good
## 478           Not bad, not good              Not bad, not good
## 479                  Don't Know              Not bad, not good
## 480                        Good                           Good
## 481           Not bad, not good              Not bad, not good
## 482                    Very bad                       Very bad
## 483           Not bad, not good                           Good
## 484                        Good                      Very good
## 485                        <NA>                            Bad
## 486           Not bad, not good                           Good
## 487                        Good                           Good
## 488           Not bad, not good                           Good
## 489           Not bad, not good                           Good
## 490                         Bad                           Good
## 491                        Good                            Bad
## 492           Not bad, not good                           Good
## 493                         Bad                       Very bad
## 494           Not bad, not good              Not bad, not good
## 495                         Bad                            Bad
## 496                        Good                           <NA>
##      Development.of..Public.Healthcare.Services
## 1                             Not bad, not good
## 2                             Not bad, not good
## 3                             Not bad, not good
## 4                                           Bad
## 5                             Not bad, not good
## 6                                          Good
## 7                                          Good
## 8                                          Good
## 9                             Not bad, not good
## 10                            Not bad, not good
## 11                                         Good
## 12                                   Don't Know
## 13                                         Good
## 14                                         Good
## 15                                         Good
## 16                                     Very bad
## 17                                          Bad
## 18                                          Bad
## 19                            Not bad, not good
## 20                            Not bad, not good
## 21                            Not bad, not good
## 22                                     Very bad
## 23                            Not bad, not good
## 24                                          Bad
## 25                                         Good
## 26                                         Good
## 27                                         Good
## 28                                         Good
## 29                                         Good
## 30                                         Good
## 31                                          Bad
## 32                                         Good
## 33                                     Very bad
## 34                                         Good
## 35                                         <NA>
## 36                            Not bad, not good
## 37                                         Good
## 38                            Not bad, not good
## 39                            Not bad, not good
## 40                                          Bad
## 41                                          Bad
## 42                            Not bad, not good
## 43                            Not bad, not good
## 44                                     Very bad
## 45                                         Good
## 46                                          Bad
## 47                            Not bad, not good
## 48                            Not bad, not good
## 49                            Not bad, not good
## 50                            Not bad, not good
## 51                            Not bad, not good
## 52                            Not bad, not good
## 53                            Not bad, not good
## 54                                         <NA>
## 55                                         Good
## 56                                         Good
## 57                                   Don't Know
## 58                                          Bad
## 59                                     Very bad
## 60                                         Good
## 61                            Not bad, not good
## 62                                     Very bad
## 63                                     Very bad
## 64                                     Very bad
## 65                                          Bad
## 66                                          Bad
## 67                                          Bad
## 68                                          Bad
## 69                                     Very bad
## 70                                          Bad
## 71                            Not bad, not good
## 72                                          Bad
## 73                                          Bad
## 74                                     Very bad
## 75                                     Very bad
## 76                                     Very bad
## 77                                     Very bad
## 78                                     Very bad
## 79                                     Very bad
## 80                                     Very bad
## 81                                          Bad
## 82                                     Very bad
## 83                                     Very bad
## 84                                     Very bad
## 85                            Not bad, not good
## 86                            Not bad, not good
## 87                            Not bad, not good
## 88                                         Good
## 89                            Not bad, not good
## 90                                         Good
## 91                            Not bad, not good
## 92                            Not bad, not good
## 93                            Not bad, not good
## 94                            Not bad, not good
## 95                                          Bad
## 96                                          Bad
## 97                            Not bad, not good
## 98                                          Bad
## 99                                          Bad
## 100                           Not bad, not good
## 101                                        <NA>
## 102                                   Very good
## 103                           Not bad, not good
## 104                                   Very good
## 105                                        Good
## 106                                        Good
## 107                                        Good
## 108                                        Good
## 109                                        Good
## 110                                        Good
## 111                                        Good
## 112                                        <NA>
## 113                           Not bad, not good
## 114                                        Good
## 115                                        Good
## 116                                        Good
## 117                                        Good
## 118                                         Bad
## 119                                        Good
## 120                           Not bad, not good
## 121                                        Good
## 122                                        Good
## 123                                         Bad
## 124                           Not bad, not good
## 125                           Not bad, not good
## 126                                         Bad
## 127                                        Good
## 128                           Not bad, not good
## 129                                         Bad
## 130                                        Good
## 131                                        Good
## 132                                        Good
## 133                           Not bad, not good
## 134                                         Bad
## 135                           Not bad, not good
## 136                           Not bad, not good
## 137                           Not bad, not good
## 138                                        Good
## 139                           Not bad, not good
## 140                                        Good
## 141                                        Good
## 142                                        Good
## 143                           Not bad, not good
## 144                                        Good
## 145                           Not bad, not good
## 146                                        Good
## 147                                        <NA>
## 148                           Not bad, not good
## 149                                        Good
## 150                                        Good
## 151                           Not bad, not good
## 152                           Not bad, not good
## 153                                        Good
## 154                                        Good
## 155                                   Very good
## 156                           Not bad, not good
## 157                                        Good
## 158                                        Good
## 159                                   Very good
## 160                                        Good
## 161                                   Very good
## 162                                   Very good
## 163                                   Very good
## 164                                   Very good
## 165                                        Good
## 166                                   Very good
## 167                                        Good
## 168                                   Very good
## 169                                   Very good
## 170                                   Very good
## 171                                   Very good
## 172                                   Very good
## 173                                   Very good
## 174                                        Good
## 175                                   Very good
## 176                                   Very good
## 177                                   Very good
## 178                                   Very good
## 179                                   Very good
## 180                                   Very good
## 181                                   Very good
## 182                                   Very good
## 183                                   Very good
## 184                                        Good
## 185                                   Very good
## 186                                        Good
## 187                                   Very good
## 188                                   Very good
## 189                                        Good
## 190                                   Very good
## 191                                        Good
## 192                                   Very good
## 193                                        Good
## 194                           Not bad, not good
## 195                                        Good
## 196                                        Good
## 197                                        Good
## 198                                   Very good
## 199                                   Very good
## 200                                   Very good
## 201                                         Bad
## 202                           Not bad, not good
## 203                           Not bad, not good
## 204                           Not bad, not good
## 205                           Not bad, not good
## 206                           Not bad, not good
## 207                           Not bad, not good
## 208                           Not bad, not good
## 209                                   Very good
## 210                                    Very bad
## 211                           Not bad, not good
## 212                           Not bad, not good
## 213                           Not bad, not good
## 214                           Not bad, not good
## 215                           Not bad, not good
## 216                           Not bad, not good
## 217                                         Bad
## 218                                         Bad
## 219                           Not bad, not good
## 220                           Not bad, not good
## 221                                         Bad
## 222                                         Bad
## 223                                    Very bad
## 224                                         Bad
## 225                           Not bad, not good
## 226                                         Bad
## 227                                         Bad
## 228                           Not bad, not good
## 229                           Not bad, not good
## 230                                         Bad
## 231                           Not bad, not good
## 232                           Not bad, not good
## 233                           Not bad, not good
## 234                           Not bad, not good
## 235                           Not bad, not good
## 236                           Not bad, not good
## 237                                        Good
## 238                                   Very good
## 239                           Not bad, not good
## 240                           Not bad, not good
## 241                           Not bad, not good
## 242                           Not bad, not good
## 243                           Not bad, not good
## 244                           Not bad, not good
## 245                                        Good
## 246                           Not bad, not good
## 247                                         Bad
## 248                                   Very good
## 249                           Not bad, not good
## 250                           Not bad, not good
## 251                                        Good
## 252                           Not bad, not good
## 253                                         Bad
## 254                                        Good
## 255                                         Bad
## 256                           Not bad, not good
## 257                                        Good
## 258                                        Good
## 259                                  Don't Know
## 260                                         Bad
## 261                           Not bad, not good
## 262                                        Good
## 263                           Not bad, not good
## 264                                        Good
## 265                                        Good
## 266                                        Good
## 267                                        Good
## 268                                        Good
## 269                                  Don't Know
## 270                                        <NA>
## 271                                        Good
## 272                                        Good
## 273                                        Good
## 274                                        Good
## 275                           Not bad, not good
## 276                                        Good
## 277                                  Don't Know
## 278                                        Good
## 279                                        <NA>
## 280                                        <NA>
## 281                                        Good
## 282                           Not bad, not good
## 283                                        Good
## 284                           Not bad, not good
## 285                                         Bad
## 286                           Not bad, not good
## 287                                        Good
## 288                                  Don't Know
## 289                                         Bad
## 290                           Not bad, not good
## 291                                        Good
## 292                                        Good
## 293                           Not bad, not good
## 294                                        Good
## 295                           Not bad, not good
## 296                           Not bad, not good
## 297                           Not bad, not good
## 298                           Not bad, not good
## 299                                  Don't Know
## 300                                        Good
## 302                                         Bad
## 303                           Not bad, not good
## 304                           Not bad, not good
## 305                                         Bad
## 306                           Not bad, not good
## 307                                        Good
## 308                                        Good
## 309                                         Bad
## 310                                        Good
## 311                                  Don't Know
## 312                                        Good
## 313                                         Bad
## 314                                  Don't Know
## 315                           Not bad, not good
## 316                                   Very good
## 317                           Not bad, not good
## 318                           Not bad, not good
## 319                                        Good
## 320                           Not bad, not good
## 321                                        Good
## 322                                        Good
## 323                                        Good
## 324                                        Good
## 325                                        Good
## 326                                        Good
## 327                                        Good
## 328                                        Good
## 329                                         Bad
## 330                                   Very good
## 331                                   Very good
## 332                                   Very good
## 333                                   Very good
## 334                                   Very good
## 335                           Not bad, not good
## 336                                        Good
## 337                                        Good
## 338                                         Bad
## 339                                        Good
## 340                                         Bad
## 341                                        Good
## 342                                        Good
## 343                           Not bad, not good
## 344                                        Good
## 345                           Not bad, not good
## 346                                        Good
## 347                                   Very good
## 348                                        Good
## 349                                        Good
## 350                                         Bad
## 351                                        Good
## 352                           Not bad, not good
## 353                           Not bad, not good
## 354                                        Good
## 355                                        Good
## 356                           Not bad, not good
## 357                                        Good
## 358                                        Good
## 359                                        Good
## 360                                        Good
## 361                           Not bad, not good
## 362                                        Good
## 363                                        Good
## 364                                        Good
## 365                           Not bad, not good
## 366                                        Good
## 367                                        Good
## 368                           Not bad, not good
## 369                           Not bad, not good
## 370                                        Good
## 371                                        Good
## 372                           Not bad, not good
## 373                                   Very good
## 374                                   Very good
## 375                                        Good
## 376                                        Good
## 377                                        Good
## 378                                        Good
## 379                                        Good
## 380                                        Good
## 381                           Not bad, not good
## 382                           Not bad, not good
## 383                           Not bad, not good
## 384                           Not bad, not good
## 385                           Not bad, not good
## 386                           Not bad, not good
## 387                           Not bad, not good
## 388                           Not bad, not good
## 389                           Not bad, not good
## 390                           Not bad, not good
## 391                           Not bad, not good
## 392                                        Good
## 393                                        Good
## 394                                        Good
## 395                                        Good
## 396                           Not bad, not good
## 397                                        Good
## 398                           Not bad, not good
## 399                           Not bad, not good
## 400                           Not bad, not good
## 401                           Not bad, not good
## 402                                        Good
## 403                                        Good
## 404                                        <NA>
## 405                           Not bad, not good
## 406                                   Very good
## 407                                   Very good
## 408                           Not bad, not good
## 409                                        Good
## 410                                        Good
## 411                                        Good
## 412                                        Good
## 413                                        Good
## 414                                        <NA>
## 415                                   Very good
## 416                                        Good
## 417                                  Don't Know
## 418                                   Very good
## 419                                   Very good
## 420                                        <NA>
## 421                                   Very good
## 422                                   Very good
## 423                                        <NA>
## 424                                        Good
## 425                                   Very good
## 426                                        Good
## 427                                        Good
## 428                                        Good
## 429                                   Very good
## 430                                   Very good
## 431                                   Very good
## 432                                   Very good
## 433                                        Good
## 434                                   Very good
## 435                                   Very good
## 436                                   Very good
## 437                                   Very good
## 438                                        Good
## 439                                   Very good
## 440                                   Very good
## 441                                   Very good
## 442                                        Good
## 443                                   Very good
## 444                                   Very good
## 445                                   Very good
## 446                                   Very good
## 447                                   Very good
## 448                                   Very good
## 449                                   Very good
## 450                                        <NA>
## 451                                   Very good
## 452                                   Very good
## 453                                        Good
## 454                           Not bad, not good
## 455                           Not bad, not good
## 456                                        Good
## 457                           Not bad, not good
## 458                           Not bad, not good
## 459                                         Bad
## 460                                  Don't Know
## 461                                   Very good
## 462                                   Very good
## 463                                        Good
## 464                                        Good
## 465                                        Good
## 466                                         Bad
## 467                                        Good
## 468                                        Good
## 469                                         Bad
## 470                                   Very good
## 471                                         Bad
## 472                           Not bad, not good
## 473                           Not bad, not good
## 474                           Not bad, not good
## 475                                        Good
## 476                                        Good
## 477                                   Very good
## 478                           Not bad, not good
## 479                           Not bad, not good
## 480                           Not bad, not good
## 481                                         Bad
## 482                                    Very bad
## 483                                        Good
## 484                           Not bad, not good
## 485                           Not bad, not good
## 486                                         Bad
## 487                           Not bad, not good
## 488                                        Good
## 489                           Not bad, not good
## 490                           Not bad, not good
## 491                           Not bad, not good
## 492                                        Good
## 493                                         Bad
## 494                           Not bad, not good
## 495                                         Bad
## 496                                         Bad
##      Development.of..Healthcare.service.in.private.hospitals
## 1                                          Not bad, not good
## 2                                                       Good
## 3                                          Not bad, not good
## 4                                                       Good
## 5                                          Not bad, not good
## 6                                          Not bad, not good
## 7                                                       Good
## 8                                                       Good
## 9                                          Not bad, not good
## 10                                                      Good
## 11                                                      Good
## 12                                                      Good
## 13                                                      Good
## 14                                         Not bad, not good
## 15                                                      Good
## 16                                         Not bad, not good
## 17                                                       Bad
## 18                                                       Bad
## 19                                         Not bad, not good
## 20                                                      Good
## 21                                                      Good
## 22                                                       Bad
## 23                                                      Good
## 24                                                       Bad
## 25                                                      Good
## 26                                                      Good
## 27                                                      Good
## 28                                                      Good
## 29                                                      <NA>
## 30                                                      Good
## 31                                                       Bad
## 32                                                      Good
## 33                                                  Very bad
## 34                                                      Good
## 35                                                      Good
## 36                                                       Bad
## 37                                                      Good
## 38                                                      Good
## 39                                         Not bad, not good
## 40                                                       Bad
## 41                                                       Bad
## 42                                         Not bad, not good
## 43                                         Not bad, not good
## 44                                                       Bad
## 45                                                      Good
## 46                                                 Very good
## 47                                         Not bad, not good
## 48                                         Not bad, not good
## 49                                                      Good
## 50                                         Not bad, not good
## 51                                         Not bad, not good
## 52                                         Not bad, not good
## 53                                                      Good
## 54                                                      Good
## 55                                                      Good
## 56                                                       Bad
## 57                                                Don't Know
## 58                                                      Good
## 59                                                      Good
## 60                                                  Very bad
## 61                                                      Good
## 62                                                      Good
## 63                                                      Good
## 64                                                      Good
## 65                                                      Good
## 66                                                      Good
## 67                                                      Good
## 68                                                      Good
## 69                                                      Good
## 70                                                      Good
## 71                                                      Good
## 72                                                      Good
## 73                                                      Good
## 74                                                      Good
## 75                                                 Very good
## 76                                                 Very good
## 77                                                      Good
## 78                                                      Good
## 79                                                      Good
## 80                                                      Good
## 81                                                      Good
## 82                                                      Good
## 83                                                      Good
## 84                                                      Good
## 85                                                      Good
## 86                                                       Bad
## 87                                                      Good
## 88                                                 Very good
## 89                                                      Good
## 90                                                      Good
## 91                                                      Good
## 92                                                      Good
## 93                                                      Good
## 94                                                      Good
## 95                                                      Good
## 96                                                      Good
## 97                                                      Good
## 98                                                      Good
## 99                                                      Good
## 100                                                     Good
## 101                                                Very good
## 102                                        Not bad, not good
## 103                                        Not bad, not good
## 104                                                     Good
## 105                                        Not bad, not good
## 106                                        Not bad, not good
## 107                                        Not bad, not good
## 108                                        Not bad, not good
## 109                                        Not bad, not good
## 110                                        Not bad, not good
## 111                                                     Good
## 112                                        Not bad, not good
## 113                                                      Bad
## 114                                                      Bad
## 115                                        Not bad, not good
## 116                                               Don't Know
## 117                                                     Good
## 118                                        Not bad, not good
## 119                                                     Good
## 120                                                     Good
## 121                                        Not bad, not good
## 122                                                     Good
## 123                                                      Bad
## 124                                        Not bad, not good
## 125                                        Not bad, not good
## 126                                        Not bad, not good
## 127                                        Not bad, not good
## 128                                                     Good
## 129                                        Not bad, not good
## 130                                                     Good
## 131                                                     Good
## 132                                        Not bad, not good
## 133                                        Not bad, not good
## 134                                        Not bad, not good
## 135                                        Not bad, not good
## 136                                        Not bad, not good
## 137                                                     Good
## 138                                                     Good
## 139                                                      Bad
## 140                                                     Good
## 141                                                     Good
## 142                                                     Good
## 143                                        Not bad, not good
## 144                                                     Good
## 145                                        Not bad, not good
## 146                                                     Good
## 147                                        Not bad, not good
## 148                                                      Bad
## 149                                                      Bad
## 150                                        Not bad, not good
## 151                                                     Good
## 152                                                     Good
## 153                                                Very good
## 154                                                Very good
## 155                                                     Good
## 156                                                     Good
## 157                                                     Good
## 158                                                Very good
## 159                                                     Good
## 160                                                Very good
## 161                                                Very good
## 162                                                Very good
## 163                                                Very good
## 164                                                     Good
## 165                                                Very good
## 166                                                Very good
## 167                                                Very good
## 168                                                Very good
## 169                                                Very good
## 170                                                Very good
## 171                                                Very good
## 172                                                Very good
## 173                                                Very good
## 174                                                     Good
## 175                                                Very good
## 176                                                Very good
## 177                                                Very good
## 178                                                Very good
## 179                                                     Good
## 180                                                Very good
## 181                                                Very good
## 182                                                     Good
## 183                                                Very good
## 184                                                Very good
## 185                                                Very good
## 186                                                Very good
## 187                                                Very good
## 188                                                Very good
## 189                                                Very good
## 190                                                Very good
## 191                                                Very good
## 192                                                     Good
## 193                                                Very good
## 194                                                     Good
## 195                                                Very good
## 196                                                Very good
## 197                                                Very good
## 198                                                Very good
## 199                                                     Good
## 200                                                     Good
## 201                                        Not bad, not good
## 202                                        Not bad, not good
## 203                                                     Good
## 204                                                      Bad
## 205                                                     Good
## 206                                                Very good
## 207                                                     Good
## 208                                                Very good
## 209                                        Not bad, not good
## 210                                                 Very bad
## 211                                                     Good
## 212                                                     Good
## 213                                                     Good
## 214                                                 Very bad
## 215                                                     Good
## 216                                                     Good
## 217                                        Not bad, not good
## 218                                                     Good
## 219                                                     Good
## 220                                                     Good
## 221                                        Not bad, not good
## 222                                        Not bad, not good
## 223                                                 Very bad
## 224                                                     Good
## 225                                                     Good
## 226                                                     Good
## 227                                        Not bad, not good
## 228                                                     Good
## 229                                                     Good
## 230                                                      Bad
## 231                                        Not bad, not good
## 232                                                      Bad
## 233                                                     Good
## 234                                                     Good
## 235                                                     Good
## 236                                                     Good
## 237                                                Very good
## 238                                                Very good
## 239                                                     Good
## 240                                                     Good
## 241                                                     Good
## 242                                                     Good
## 243                                                     Good
## 244                                                     Good
## 245                                        Not bad, not good
## 246                                                     Good
## 247                                        Not bad, not good
## 248                                        Not bad, not good
## 249                                        Not bad, not good
## 250                                                      Bad
## 251                                                     Good
## 252                                        Not bad, not good
## 253                                                      Bad
## 254                                                     Good
## 255                                                      Bad
## 256                                        Not bad, not good
## 257                                                     Good
## 258                                                     Good
## 259                                               Don't Know
## 260                                                      Bad
## 261                                        Not bad, not good
## 262                                                     Good
## 263                                        Not bad, not good
## 264                                                     Good
## 265                                        Not bad, not good
## 266                                                     Good
## 267                                                Very good
## 268                                                     Good
## 269                                        Not bad, not good
## 270                                                     Good
## 271                                                     Good
## 272                                                     Good
## 273                                                     Good
## 274                                        Not bad, not good
## 275                                        Not bad, not good
## 276                                        Not bad, not good
## 277                                               Don't Know
## 278                                                     Good
## 279                                                     <NA>
## 280                                        Not bad, not good
## 281                                                     Good
## 282                                        Not bad, not good
## 283                                                     Good
## 284                                                     Good
## 285                                                      Bad
## 286                                        Not bad, not good
## 287                                                     Good
## 288                                        Not bad, not good
## 289                                        Not bad, not good
## 290                                        Not bad, not good
## 291                                                     Good
## 292                                        Not bad, not good
## 293                                        Not bad, not good
## 294                                        Not bad, not good
## 295                                                      Bad
## 296                                               Don't Know
## 297                                        Not bad, not good
## 298                                        Not bad, not good
## 299                                                Very good
## 300                                                     Good
## 302                                                     Good
## 303                                                     Good
## 304                                                     Good
## 305                                                     Good
## 306                                                     Good
## 307                                                     Good
## 308                                                     Good
## 309                                                      Bad
## 310                                        Not bad, not good
## 311                                                     Good
## 312                                                     Good
## 313                                                      Bad
## 314                                               Don't Know
## 315                                                     Good
## 316                                                     Good
## 317                                        Not bad, not good
## 318                                                Very good
## 319                                                 Very bad
## 320                                        Not bad, not good
## 321                                                      Bad
## 322                                                     Good
## 323                                               Don't Know
## 324                                               Don't Know
## 325                                                     Good
## 326                                                     Good
## 327                                                     Good
## 328                                                     Good
## 329                                        Not bad, not good
## 330                                                Very good
## 331                                                     Good
## 332                                                     Good
## 333                                                     Good
## 334                                                     Good
## 335                                                      Bad
## 336                                                 Very bad
## 337                                                Very good
## 338                                        Not bad, not good
## 339                                        Not bad, not good
## 340                                        Not bad, not good
## 341                                                     Good
## 342                                                     Good
## 343                                        Not bad, not good
## 344                                                     Good
## 345                                                     Good
## 346                                                Very good
## 347                                                Very good
## 348                                                     Good
## 349                                                Very good
## 350                                        Not bad, not good
## 351                                                Very good
## 352                                               Don't Know
## 353                                        Not bad, not good
## 354                                                     Good
## 355                                        Not bad, not good
## 356                                                     Good
## 357                                                     Good
## 358                                                     Good
## 359                                        Not bad, not good
## 360                                                Very good
## 361                                                Very good
## 362                                                     Good
## 363                                                Very good
## 364                                                     Good
## 365                                                     Good
## 366                                                     Good
## 367                                                     Good
## 368                                                     Good
## 369                                                     Good
## 370                                                     Good
## 371                                                     Good
## 372                                                     Good
## 373                                                     Good
## 374                                                     Good
## 375                                        Not bad, not good
## 376                                                     Good
## 377                                        Not bad, not good
## 378                                        Not bad, not good
## 379                                                     Good
## 380                                                     Good
## 381                                        Not bad, not good
## 382                                        Not bad, not good
## 383                                                     Good
## 384                                        Not bad, not good
## 385                                        Not bad, not good
## 386                                                     Good
## 387                                                     Good
## 388                                        Not bad, not good
## 389                                        Not bad, not good
## 390                                                     Good
## 391                                        Not bad, not good
## 392                                                     Good
## 393                                                     Good
## 394                                                     Good
## 395                                        Not bad, not good
## 396                                        Not bad, not good
## 397                                                     Good
## 398                                                     Good
## 399                                        Not bad, not good
## 400                                        Not bad, not good
## 401                                                     Good
## 402                                                     Good
## 403                                                     Good
## 404                                                     Good
## 405                                        Not bad, not good
## 406                                                     Good
## 407                                                Very good
## 408                                                     Good
## 409                                                Very good
## 410                                                     Good
## 411                                                     Good
## 412                                                     Good
## 413                                                     Good
## 414                                                     Good
## 415                                                Very good
## 416                                                Very good
## 417                                               Don't Know
## 418                                                Very good
## 419                                                Very good
## 420                                                     <NA>
## 421                                                Very good
## 422                                                Very good
## 423                                                     <NA>
## 424                                                Very good
## 425                                                Very good
## 426                                                     Good
## 427                                                     Good
## 428                                                     Good
## 429                                                Very good
## 430                                                Very good
## 431                                                Very good
## 432                                                Very good
## 433                                                Very good
## 434                                                Very good
## 435                                                Very good
## 436                                                Very good
## 437                                                Very good
## 438                                                     Good
## 439                                                Very good
## 440                                                Very good
## 441                                                Very good
## 442                                                     Good
## 443                                                Very good
## 444                                                Very good
## 445                                                Very good
## 446                                                Very good
## 447                                                Very good
## 448                                                Very good
## 449                                                Very good
## 450                                                     Good
## 451                                                Very good
## 452                                                Very good
## 453                                                     <NA>
## 454                                                Very good
## 455                                                     Good
## 456                                                     Good
## 457                                        Not bad, not good
## 458                                                     Good
## 459                                                     Good
## 460                                        Not bad, not good
## 461                                                Very good
## 462                                                     Good
## 463                                                Very good
## 464                                                Very good
## 465                                                     Good
## 466                                                 Very bad
## 467                                                Very good
## 468                                        Not bad, not good
## 469                                                      Bad
## 470                                        Not bad, not good
## 471                                                      Bad
## 472                                                     Good
## 473                                        Not bad, not good
## 474                                                Very good
## 475                                        Not bad, not good
## 476                                                     Good
## 477                                                Very good
## 478                                        Not bad, not good
## 479                                               Don't Know
## 480                                                     Good
## 481                                                     Good
## 482                                                 Very bad
## 483                                                     Good
## 484                                                     Good
## 485                                                      Bad
## 486                                                     Good
## 487                                        Not bad, not good
## 488                                                      Bad
## 489                                        Not bad, not good
## 490                                                     Good
## 491                                        Not bad, not good
## 492                                                     Good
## 493                                                 Very bad
## 494                                        Not bad, not good
## 495                                                Very good
## 496                                                     Good
##      Development.of..Maintenance.of.law.and.order
## 1                               Not bad, not good
## 2                                        Very bad
## 3                               Not bad, not good
## 4                                            Good
## 5                               Not bad, not good
## 6                               Not bad, not good
## 7                                       Very good
## 8                                            Good
## 9                                            Good
## 10                              Not bad, not good
## 11                              Not bad, not good
## 12                                            Bad
## 13                              Not bad, not good
## 14                              Not bad, not good
## 15                                      Very good
## 16                                       Very bad
## 17                                            Bad
## 18                                            Bad
## 19                              Not bad, not good
## 20                                           Good
## 21                              Not bad, not good
## 22                                       Very bad
## 23                              Not bad, not good
## 24                              Not bad, not good
## 25                              Not bad, not good
## 26                                     Don't Know
## 27                              Not bad, not good
## 28                                     Don't Know
## 29                                     Don't Know
## 30                              Not bad, not good
## 31                              Not bad, not good
## 32                                     Don't Know
## 33                                            Bad
## 34                                            Bad
## 35                                           Good
## 36                              Not bad, not good
## 37                                           Good
## 38                              Not bad, not good
## 39                              Not bad, not good
## 40                                            Bad
## 41                                            Bad
## 42                              Not bad, not good
## 43                              Not bad, not good
## 44                                            Bad
## 45                                           Good
## 46                                       Very bad
## 47                                            Bad
## 48                              Not bad, not good
## 49                              Not bad, not good
## 50                                     Don't Know
## 51                                     Don't Know
## 52                                     Don't Know
## 53                              Not bad, not good
## 54                              Not bad, not good
## 55                              Not bad, not good
## 56                                     Don't Know
## 57                                       Very bad
## 58                                     Don't Know
## 59                                     Don't Know
## 60                                            Bad
## 61                              Not bad, not good
## 62                              Not bad, not good
## 63                              Not bad, not good
## 64                              Not bad, not good
## 65                              Not bad, not good
## 66                              Not bad, not good
## 67                              Not bad, not good
## 68                              Not bad, not good
## 69                              Not bad, not good
## 70                              Not bad, not good
## 71                              Not bad, not good
## 72                              Not bad, not good
## 73                              Not bad, not good
## 74                              Not bad, not good
## 75                              Not bad, not good
## 76                              Not bad, not good
## 77                              Not bad, not good
## 78                              Not bad, not good
## 79                              Not bad, not good
## 80                              Not bad, not good
## 81                              Not bad, not good
## 82                              Not bad, not good
## 83                              Not bad, not good
## 84                              Not bad, not good
## 85                              Not bad, not good
## 86                              Not bad, not good
## 87                              Not bad, not good
## 88                                           Good
## 89                              Not bad, not good
## 90                              Not bad, not good
## 91                              Not bad, not good
## 92                                           Good
## 93                              Not bad, not good
## 94                              Not bad, not good
## 95                              Not bad, not good
## 96                              Not bad, not good
## 97                              Not bad, not good
## 98                              Not bad, not good
## 99                              Not bad, not good
## 100                             Not bad, not good
## 101                                           Bad
## 102                             Not bad, not good
## 103                                     Very good
## 104                                          Good
## 105                                          Good
## 106                             Not bad, not good
## 107                                          <NA>
## 108                             Not bad, not good
## 109                             Not bad, not good
## 110                                           Bad
## 111                                          Good
## 112                                     Very good
## 113                                           Bad
## 114                                           Bad
## 115                                          Good
## 116                                    Don't Know
## 117                                          Good
## 118                                           Bad
## 119                             Not bad, not good
## 120                             Not bad, not good
## 121                             Not bad, not good
## 122                                           Bad
## 123                                           Bad
## 124                                           Bad
## 125                             Not bad, not good
## 126                                           Bad
## 127                                           Bad
## 128                                          Good
## 129                                          Good
## 130                                          Good
## 131                             Not bad, not good
## 132                             Not bad, not good
## 133                                          Good
## 134                                           Bad
## 135                             Not bad, not good
## 136                             Not bad, not good
## 137                             Not bad, not good
## 138                             Not bad, not good
## 139                             Not bad, not good
## 140                             Not bad, not good
## 141                                          Good
## 142                             Not bad, not good
## 143                             Not bad, not good
## 144                                          Good
## 145                             Not bad, not good
## 146                                          Good
## 147                                     Very good
## 148                                           Bad
## 149                                           Bad
## 150                                          Good
## 151                             Not bad, not good
## 152                             Not bad, not good
## 153                                    Don't Know
## 154                             Not bad, not good
## 155                             Not bad, not good
## 156                             Not bad, not good
## 157                                    Don't Know
## 158                                          Good
## 159                                          Good
## 160                             Not bad, not good
## 161                                          Good
## 162                                          Good
## 163                                    Don't Know
## 164                                    Don't Know
## 165                                          Good
## 166                                    Don't Know
## 167                                          Good
## 168                                          Good
## 169                             Not bad, not good
## 170                                    Don't Know
## 171                                    Don't Know
## 172                                    Don't Know
## 173                                           Bad
## 174                             Not bad, not good
## 175                             Not bad, not good
## 176                             Not bad, not good
## 177                                    Don't Know
## 178                             Not bad, not good
## 179                                    Don't Know
## 180                             Not bad, not good
## 181                                           Bad
## 182                                           Bad
## 183                                    Don't Know
## 184                             Not bad, not good
## 185                             Not bad, not good
## 186                                           Bad
## 187                             Not bad, not good
## 188                                          Good
## 189                                           Bad
## 190                             Not bad, not good
## 191                             Not bad, not good
## 192                                    Don't Know
## 193                             Not bad, not good
## 194                                           Bad
## 195                                           Bad
## 196                                          Good
## 197                                          Good
## 198                             Not bad, not good
## 199                             Not bad, not good
## 200                                    Don't Know
## 201                             Not bad, not good
## 202                             Not bad, not good
## 203                             Not bad, not good
## 204                             Not bad, not good
## 205                                      Very bad
## 206                             Not bad, not good
## 207                                          Good
## 208                             Not bad, not good
## 209                                      Very bad
## 210                                           Bad
## 211                             Not bad, not good
## 212                             Not bad, not good
## 213                             Not bad, not good
## 214                                      Very bad
## 215                             Not bad, not good
## 216                             Not bad, not good
## 217                             Not bad, not good
## 218                                          Good
## 219                             Not bad, not good
## 220                             Not bad, not good
## 221                             Not bad, not good
## 222                                           Bad
## 223                                           Bad
## 224                             Not bad, not good
## 225                             Not bad, not good
## 226                             Not bad, not good
## 227                                          Good
## 228                                          Good
## 229                             Not bad, not good
## 230                             Not bad, not good
## 231                                           Bad
## 232                             Not bad, not good
## 233                             Not bad, not good
## 234                             Not bad, not good
## 235                             Not bad, not good
## 236                             Not bad, not good
## 237                                          Good
## 238                                     Very good
## 239                             Not bad, not good
## 240                                          Good
## 241                             Not bad, not good
## 242                             Not bad, not good
## 243                             Not bad, not good
## 244                             Not bad, not good
## 245                             Not bad, not good
## 246                             Not bad, not good
## 247                                           Bad
## 248                                          Good
## 249                                           Bad
## 250                                           Bad
## 251                                          Good
## 252                             Not bad, not good
## 253                                           Bad
## 254                                          Good
## 255                                           Bad
## 256                             Not bad, not good
## 257                                          Good
## 258                                     Very good
## 259                                    Don't Know
## 260                                           Bad
## 261                             Not bad, not good
## 262                                          Good
## 263                                           Bad
## 264                                          Good
## 265                             Not bad, not good
## 266                                          Good
## 267                                          Good
## 268                                          Good
## 269                             Not bad, not good
## 270                                          Good
## 271                                          Good
## 272                                          Good
## 273                             Not bad, not good
## 274                                          Good
## 275                                           Bad
## 276                                          Good
## 277                                    Don't Know
## 278                                          Good
## 279                                          <NA>
## 280                                          Good
## 281                                          Good
## 282                                          Good
## 283                             Not bad, not good
## 284                             Not bad, not good
## 285                                           Bad
## 286                                          Good
## 287                                          Good
## 288                                           Bad
## 289                             Not bad, not good
## 290                                           Bad
## 291                                          Good
## 292                                    Don't Know
## 293                                           Bad
## 294                                           Bad
## 295                                           Bad
## 296                                    Don't Know
## 297                                           Bad
## 298                                           Bad
## 299                                          Good
## 300                                           Bad
## 302                             Not bad, not good
## 303                                          Good
## 304                                      Very bad
## 305                                           Bad
## 306                             Not bad, not good
## 307                                           Bad
## 308                                           Bad
## 309                             Not bad, not good
## 310                             Not bad, not good
## 311                                          Good
## 312                             Not bad, not good
## 313                             Not bad, not good
## 314                                    Don't Know
## 315                             Not bad, not good
## 316                                          Good
## 317                                           Bad
## 318                                           Bad
## 319                             Not bad, not good
## 320                                          Good
## 321                             Not bad, not good
## 322                                          Good
## 323                                          Good
## 324                                    Don't Know
## 325                                          Good
## 326                                    Don't Know
## 327                                          Good
## 328                                           Bad
## 329                                           Bad
## 330                                           Bad
## 331                             Not bad, not good
## 332                             Not bad, not good
## 333                             Not bad, not good
## 334                             Not bad, not good
## 335                             Not bad, not good
## 336                             Not bad, not good
## 337                                    Don't Know
## 338                                           Bad
## 339                             Not bad, not good
## 340                             Not bad, not good
## 341                                           Bad
## 342                                          Good
## 343                             Not bad, not good
## 344                                          Good
## 345                             Not bad, not good
## 346                                          Good
## 347                             Not bad, not good
## 348                                          Good
## 349                             Not bad, not good
## 350                                           Bad
## 351                             Not bad, not good
## 352                                    Don't Know
## 353                                           Bad
## 354                                    Don't Know
## 355                             Not bad, not good
## 356                                    Don't Know
## 357                             Not bad, not good
## 358                             Not bad, not good
## 359                             Not bad, not good
## 360                                          Good
## 361                             Not bad, not good
## 362                                          Good
## 363                             Not bad, not good
## 364                                          Good
## 365                             Not bad, not good
## 366                             Not bad, not good
## 367                             Not bad, not good
## 368                             Not bad, not good
## 369                             Not bad, not good
## 370                             Not bad, not good
## 371                             Not bad, not good
## 372                                           Bad
## 373                                          Good
## 374                                          Good
## 375                             Not bad, not good
## 376                             Not bad, not good
## 377                                          Good
## 378                             Not bad, not good
## 379                             Not bad, not good
## 380                             Not bad, not good
## 381                                    Don't Know
## 382                                    Don't Know
## 383                             Not bad, not good
## 384                                    Don't Know
## 385                             Not bad, not good
## 386                             Not bad, not good
## 387                             Not bad, not good
## 388                             Not bad, not good
## 389                             Not bad, not good
## 390                             Not bad, not good
## 391                             Not bad, not good
## 392                             Not bad, not good
## 393                                    Don't Know
## 394                                    Don't Know
## 395                             Not bad, not good
## 396                             Not bad, not good
## 397                             Not bad, not good
## 398                             Not bad, not good
## 399                                    Don't Know
## 400                             Not bad, not good
## 401                             Not bad, not good
## 402                                          Good
## 403                                          Good
## 404                                          Good
## 405                             Not bad, not good
## 406                                          Good
## 407                                     Very good
## 408                                          <NA>
## 409                                          Good
## 410                                          Good
## 411                                          Good
## 412                                     Very good
## 413                                          Good
## 414                                          Good
## 415                                     Very good
## 416                                     Very good
## 417                                    Don't Know
## 418                                     Very good
## 419                                     Very good
## 420                                          <NA>
## 421                                     Very good
## 422                                     Very good
## 423                                          <NA>
## 424                                     Very good
## 425                                     Very good
## 426                                     Very good
## 427                                          Good
## 428                                          Good
## 429                                     Very good
## 430                                     Very good
## 431                                     Very good
## 432                                     Very good
## 433                                     Very good
## 434                                     Very good
## 435                                     Very good
## 436                                     Very good
## 437                                     Very good
## 438                                          Good
## 439                                     Very good
## 440                                     Very good
## 441                                     Very good
## 442                                          Good
## 443                                     Very good
## 444                                     Very good
## 445                                     Very good
## 446                                     Very good
## 447                                     Very good
## 448                                     Very good
## 449                                     Very good
## 450                                          Good
## 451                                     Very good
## 452                                     Very good
## 453                             Not bad, not good
## 454                             Not bad, not good
## 455                             Not bad, not good
## 456                             Not bad, not good
## 457                             Not bad, not good
## 458                             Not bad, not good
## 459                             Not bad, not good
## 460                                          Good
## 461                                     Very good
## 462                                          Good
## 463                             Not bad, not good
## 464                             Not bad, not good
## 465                             Not bad, not good
## 466                                      Very bad
## 467                                          Good
## 468                             Not bad, not good
## 469                             Not bad, not good
## 470                             Not bad, not good
## 471                                          Good
## 472                             Not bad, not good
## 473                             Not bad, not good
## 474                             Not bad, not good
## 475                                          Good
## 476                                    Don't Know
## 477                             Not bad, not good
## 478                                           Bad
## 479                                    Don't Know
## 480                             Not bad, not good
## 481                                           Bad
## 482                                      Very bad
## 483                             Not bad, not good
## 484                             Not bad, not good
## 485                                           Bad
## 486                             Not bad, not good
## 487                             Not bad, not good
## 488                                           Bad
## 489                                           Bad
## 490                                          Good
## 491                                           Bad
## 492                                          Good
## 493                                      Very bad
## 494                             Not bad, not good
## 495                             Not bad, not good
## 496                                          Good
##      Development.of..Electricity.Supply Development.of..Energy.Supply
## 1                              Very bad                      Very bad
## 2                              Very bad                      Very bad
## 3                              Very bad                           Bad
## 4                              Very bad                           Bad
## 5                              Very bad                      Very bad
## 6                              Very bad                           Bad
## 7                              Very bad                      Very bad
## 8                                  Good             Not bad, not good
## 9                                   Bad                           Bad
## 10                                  Bad                           Bad
## 11                             Very bad                      Very bad
## 12                             Very bad                      Very bad
## 13                                  Bad                           Bad
## 14                             Very bad                           Bad
## 15                                 Good                      Very bad
## 16                             Very bad                      Very bad
## 17                                  Bad                           Bad
## 18                                  Bad             Not bad, not good
## 19                                  Bad                           Bad
## 20                                  Bad                          Good
## 21                    Not bad, not good                           Bad
## 22                             Very bad                      Very bad
## 23                                 <NA>                      Very bad
## 24                             Very bad                      Very bad
## 25                    Not bad, not good                      Very bad
## 26                             Very bad                      Very bad
## 27                             Very bad                      Very bad
## 28                             Very bad                      Very bad
## 29                             Very bad                      Very bad
## 30                                  Bad                           Bad
## 31                             Very bad                      Very bad
## 32                             Very bad                      Very bad
## 33                             Very bad                      Very bad
## 34                             Very bad                      Very bad
## 35                             Very bad                      Very bad
## 36                             Very bad                      Very bad
## 37                                 <NA>                          <NA>
## 38                                  Bad                           Bad
## 39                                  Bad                           Bad
## 40                             Very bad                      Very bad
## 41                             Very bad                      Very bad
## 42                                 <NA>                           Bad
## 43                                  Bad                           Bad
## 44                             Very bad                      Very bad
## 45                             Very bad                      Very bad
## 46                             Very bad                           Bad
## 47                             Very bad                           Bad
## 48                             Very bad                           Bad
## 49                             Very bad                           Bad
## 50                             Very bad                           Bad
## 51                                  Bad             Not bad, not good
## 52                             Very bad             Not bad, not good
## 53                    Not bad, not good             Not bad, not good
## 54                                  Bad             Not bad, not good
## 55                    Not bad, not good                          Good
## 56                             Very bad                          Good
## 57                                 Good                      Very bad
## 58                                  Bad                          Good
## 59                             Very bad                          Good
## 60                                  Bad             Not bad, not good
## 61                    Not bad, not good                          Good
## 62                             Very bad             Not bad, not good
## 63                             Very bad             Not bad, not good
## 64                             Very bad                           Bad
## 65                                  Bad                          Good
## 66                                  Bad                           Bad
## 67                                  Bad             Not bad, not good
## 68                                  Bad                           Bad
## 69                    Not bad, not good                          Good
## 70                    Not bad, not good             Not bad, not good
## 71                    Not bad, not good             Not bad, not good
## 72                    Not bad, not good                          Good
## 73                    Not bad, not good                          Good
## 74                    Not bad, not good                          Good
## 75                             Very bad                           Bad
## 76                             Very bad                      Very bad
## 77                             Very bad                           Bad
## 78                             Very bad                           Bad
## 79                             Very bad                           Bad
## 80                             Very bad                           Bad
## 81                                  Bad             Not bad, not good
## 82                             Very bad                           Bad
## 83                             Very bad                      Very bad
## 84                             Very bad                           Bad
## 85                    Not bad, not good             Not bad, not good
## 86                                  Bad                          Good
## 87                    Not bad, not good                          Good
## 88                                 Good                          Good
## 89                    Not bad, not good             Not bad, not good
## 90                                 Good                          Good
## 91                    Not bad, not good                          Good
## 92                    Not bad, not good                          Good
## 93                                 Good                          Good
## 94                    Not bad, not good                          Good
## 95                    Not bad, not good             Not bad, not good
## 96                    Not bad, not good                          Good
## 97                    Not bad, not good                          Good
## 98                    Not bad, not good                          Good
## 99                    Not bad, not good                          Good
## 100                   Not bad, not good                          Good
## 101                                 Bad                           Bad
## 102                                 Bad                      Very bad
## 103                            Very bad                           Bad
## 104                            Very bad                      Very bad
## 105                                 Bad             Not bad, not good
## 106                                 Bad                           Bad
## 107                                 Bad                           Bad
## 108                                 Bad                           Bad
## 109                                 Bad                           Bad
## 110                                 Bad                           Bad
## 111                                Good                      Very bad
## 112                                Good                          <NA>
## 113                            Very bad                           Bad
## 114                   Not bad, not good             Not bad, not good
## 115                                 Bad             Not bad, not good
## 116                                Good             Not bad, not good
## 117                   Not bad, not good                           Bad
## 118                                 Bad                      Very bad
## 119                                 Bad                           Bad
## 120                                Good             Not bad, not good
## 121                                Good             Not bad, not good
## 122                                 Bad             Not bad, not good
## 123                                 Bad                      Very bad
## 124                                 Bad                           Bad
## 125                   Not bad, not good             Not bad, not good
## 126                   Not bad, not good                           Bad
## 127                                Good             Not bad, not good
## 128                                Good                    Don't Know
## 129                                 Bad                      Very bad
## 130                                Good             Not bad, not good
## 131                                 Bad                      Very bad
## 132                                 Bad             Not bad, not good
## 133                   Not bad, not good             Not bad, not good
## 134                                 Bad                      Very bad
## 135                                 Bad                      Very bad
## 136                   Not bad, not good             Not bad, not good
## 137                                 Bad                           Bad
## 138                                 Bad             Not bad, not good
## 139                   Not bad, not good                           Bad
## 140                                Good             Not bad, not good
## 141                   Not bad, not good                           Bad
## 142                                Good                           Bad
## 143                                 Bad                           Bad
## 144                                Good                          Good
## 145                   Not bad, not good             Not bad, not good
## 146                   Not bad, not good                           Bad
## 147                                Good                          <NA>
## 148                            Very bad                           Bad
## 149                   Not bad, not good             Not bad, not good
## 150                                 Bad             Not bad, not good
## 151                   Not bad, not good             Not bad, not good
## 152                   Not bad, not good             Not bad, not good
## 153                   Not bad, not good                          Good
## 154                   Not bad, not good                          Good
## 155                   Not bad, not good                          Good
## 156                   Not bad, not good             Not bad, not good
## 157                   Not bad, not good                          Good
## 158                   Not bad, not good                           Bad
## 159                   Not bad, not good                          Good
## 160                                Good                          Good
## 161                   Not bad, not good                          Good
## 162                   Not bad, not good                    Don't Know
## 163                   Not bad, not good                          Good
## 164                   Not bad, not good                          Good
## 165                   Not bad, not good                           Bad
## 166                   Not bad, not good                          Good
## 167                   Not bad, not good                           Bad
## 168                   Not bad, not good                          Good
## 169                   Not bad, not good                          Good
## 170                   Not bad, not good                          Good
## 171                   Not bad, not good                          Good
## 172                   Not bad, not good                          Good
## 173                   Not bad, not good                          Good
## 174                   Not bad, not good                          Good
## 175                   Not bad, not good                          Good
## 176                   Not bad, not good                          Good
## 177                   Not bad, not good                          Good
## 178                   Not bad, not good                          Good
## 179                   Not bad, not good                          Good
## 180                   Not bad, not good                          Good
## 181                   Not bad, not good                          Good
## 182                   Not bad, not good             Not bad, not good
## 183                   Not bad, not good                          Good
## 184                   Not bad, not good                          Good
## 185                   Not bad, not good                          Good
## 186                   Not bad, not good             Not bad, not good
## 187                   Not bad, not good                          Good
## 188                   Not bad, not good                          Good
## 189                   Not bad, not good                          Good
## 190                                Good                     Very good
## 191                   Not bad, not good                          Good
## 192                                 Bad             Not bad, not good
## 193                                Good             Not bad, not good
## 194                   Not bad, not good                          Good
## 195                   Not bad, not good                          Good
## 196                   Not bad, not good                          Good
## 197                   Not bad, not good                          Good
## 198                   Not bad, not good                          Good
## 199                   Not bad, not good                          Good
## 200                   Not bad, not good                          Good
## 201                            Very bad                           Bad
## 202                           Very good                      Very bad
## 203                                 Bad                           Bad
## 204                                 Bad                           Bad
## 205                                 Bad             Not bad, not good
## 206                            Very bad                           Bad
## 207                           Very good                      Very bad
## 208                            Very bad                           Bad
## 209                                 Bad                      Very bad
## 210                            Very bad                      Very bad
## 211                            Very bad                      Very bad
## 212                            Very bad                      Very bad
## 213                            Very bad                      Very bad
## 214                            Very bad                           Bad
## 215                            Very bad                      Very bad
## 216                            Very bad                      Very bad
## 217                            Very bad                      Very bad
## 218                            Very bad                      Very bad
## 219                            Very bad                      Very bad
## 220                                Good                           Bad
## 221                            Very bad                      Very bad
## 222                            Very bad                      Very bad
## 223                            Very bad                      Very bad
## 224                                 Bad                          Good
## 225                                Good             Not bad, not good
## 226                                 Bad             Not bad, not good
## 227                   Not bad, not good                           Bad
## 228                   Not bad, not good             Not bad, not good
## 229                                Good             Not bad, not good
## 230                                 Bad             Not bad, not good
## 231                            Very bad                      Very bad
## 232                            Very bad                      Very bad
## 233                            Very bad                      Very bad
## 234                            Very bad                      Very bad
## 235                                 Bad                      Very bad
## 236                                Good             Not bad, not good
## 237                   Not bad, not good                           Bad
## 238                                Good             Not bad, not good
## 239                            Very bad                      Very bad
## 240                                Good                      Very bad
## 241                            Very bad                      Very bad
## 242                            Very bad                      Very bad
## 243                            Very bad                      Very bad
## 244                            Very bad                      Very bad
## 245                                 Bad             Not bad, not good
## 246                            Very bad                      Very bad
## 247                   Not bad, not good                          Good
## 248                                 Bad                      Very bad
## 249                                 Bad             Not bad, not good
## 250                   Not bad, not good                           Bad
## 251                                Good                           Bad
## 252                   Not bad, not good             Not bad, not good
## 253                                 Bad                           Bad
## 254                                <NA>                          <NA>
## 255                                 Bad                           Bad
## 256                                 Bad                          Good
## 257                                Good                          Good
## 258                           Very good                          <NA>
## 259                            Very bad                          Good
## 260                                 Bad                           Bad
## 261                                 Bad                           Bad
## 262                   Not bad, not good             Not bad, not good
## 263                                 Bad                           Bad
## 264                                Good                          Good
## 265                                 Bad                           Bad
## 266                                Good                          Good
## 267                           Very good                    Don't Know
## 268                                Good             Not bad, not good
## 269                   Not bad, not good                           Bad
## 270                                 Bad                           Bad
## 271                                Good             Not bad, not good
## 272                                Good                          Good
## 273                   Not bad, not good                           Bad
## 274                   Not bad, not good                          Good
## 275                   Not bad, not good                          Good
## 276                   Not bad, not good                          Good
## 277                           Very good                     Very good
## 278                                Good                          Good
## 279                                <NA>                          <NA>
## 280                   Not bad, not good             Not bad, not good
## 281                                Good                          Good
## 282                                Good                          Good
## 283                                Good                          Good
## 284                   Not bad, not good                           Bad
## 285                                Good                          Good
## 286                                Good                          Good
## 287                                 Bad                           Bad
## 288                                 Bad             Not bad, not good
## 289                   Not bad, not good             Not bad, not good
## 290                                 Bad             Not bad, not good
## 291                                Good                          Good
## 292                   Not bad, not good                          Good
## 293                   Not bad, not good             Not bad, not good
## 294                                 Bad             Not bad, not good
## 295                                 Bad             Not bad, not good
## 296                   Not bad, not good             Not bad, not good
## 297                                 Bad                           Bad
## 298                   Not bad, not good             Not bad, not good
## 299                                Good                          Good
## 300                                 Bad                           Bad
## 302                   Not bad, not good                           Bad
## 303                                 Bad                           Bad
## 304                                 Bad                           Bad
## 305                                 Bad                           Bad
## 306                   Not bad, not good             Not bad, not good
## 307                                 Bad                           Bad
## 308                                 Bad                           Bad
## 309                                Good             Not bad, not good
## 310                   Not bad, not good                           Bad
## 311                                 Bad                           Bad
## 312                   Not bad, not good             Not bad, not good
## 313                                 Bad                           Bad
## 314                                Good                          Good
## 315                                Good                          Good
## 316                                Good                          Good
## 317                                 Bad                           Bad
## 318                                 Bad                      Very bad
## 319                            Very bad                      Very bad
## 320                   Not bad, not good             Not bad, not good
## 321                                 Bad             Not bad, not good
## 322                                Good                          Good
## 323                                Good                          Good
## 324                                Good                          Good
## 325                                Good                          Good
## 326                                Good                    Don't Know
## 327                                Good                          Good
## 328                                Good                          Good
## 329                                Good                      Very bad
## 330                           Very good                     Very good
## 331                                 Bad                      Very bad
## 332                                 Bad                      Very bad
## 333                                 Bad             Not bad, not good
## 334                                 Bad                      Very bad
## 335                                 Bad                          Good
## 336                                Good                      Very bad
## 337                           Very good                          Good
## 338                            Very bad             Not bad, not good
## 339                   Not bad, not good                           Bad
## 340                                 Bad                           Bad
## 341                                Good                          Good
## 342                                 Bad                      Very bad
## 343                                 Bad             Not bad, not good
## 344                                 Bad                           Bad
## 345                                 Bad                      Very bad
## 346                                Good                          Good
## 347                                 Bad                           Bad
## 348                                Good                          Good
## 349                                 Bad                           Bad
## 350                            Very bad                      Very bad
## 351                                 Bad                           Bad
## 352                   Not bad, not good             Not bad, not good
## 353                                 Bad                           Bad
## 354                   Not bad, not good             Not bad, not good
## 355                   Not bad, not good             Not bad, not good
## 356                   Not bad, not good             Not bad, not good
## 357                   Not bad, not good             Not bad, not good
## 358                   Not bad, not good             Not bad, not good
## 359                   Not bad, not good             Not bad, not good
## 360                                Good                          Good
## 361                   Not bad, not good             Not bad, not good
## 362                   Not bad, not good             Not bad, not good
## 363                   Not bad, not good                           Bad
## 364                                 Bad                           Bad
## 365                   Not bad, not good             Not bad, not good
## 366                                 Bad             Not bad, not good
## 367                                 Bad                           Bad
## 368                   Not bad, not good             Not bad, not good
## 369                            Very bad                           Bad
## 370                   Not bad, not good             Not bad, not good
## 371                                 Bad                           Bad
## 372                                 Bad             Not bad, not good
## 373                                Good             Not bad, not good
## 374                                 Bad             Not bad, not good
## 375                            Very bad                          Good
## 376                   Not bad, not good             Not bad, not good
## 377                                 Bad             Not bad, not good
## 378                   Not bad, not good                          Good
## 379                                Good             Not bad, not good
## 380                                 Bad                           Bad
## 381                   Not bad, not good             Not bad, not good
## 382                   Not bad, not good             Not bad, not good
## 383                   Not bad, not good             Not bad, not good
## 384                                 Bad                           Bad
## 385                   Not bad, not good             Not bad, not good
## 386                   Not bad, not good             Not bad, not good
## 387                   Not bad, not good             Not bad, not good
## 388                   Not bad, not good             Not bad, not good
## 389                   Not bad, not good             Not bad, not good
## 390                                 Bad                           Bad
## 391                                 Bad             Not bad, not good
## 392                   Not bad, not good             Not bad, not good
## 393                   Not bad, not good             Not bad, not good
## 394                   Not bad, not good             Not bad, not good
## 395                   Not bad, not good             Not bad, not good
## 396                                 Bad                           Bad
## 397                                 Bad                           Bad
## 398                   Not bad, not good             Not bad, not good
## 399                   Not bad, not good             Not bad, not good
## 400                   Not bad, not good             Not bad, not good
## 401                   Not bad, not good             Not bad, not good
## 402                            Very bad                      Very bad
## 403                                 Bad                           Bad
## 404                   Not bad, not good             Not bad, not good
## 405                   Not bad, not good             Not bad, not good
## 406                            Very bad                      Very bad
## 407                            Very bad                      Very bad
## 408                            Very bad                      Very bad
## 409                   Not bad, not good             Not bad, not good
## 410                            Very bad                      Very bad
## 411                            Very bad                      Very bad
## 412                            Very bad                      Very bad
## 413                            Very bad                      Very bad
## 414                   Not bad, not good             Not bad, not good
## 415                            Very bad                      Very bad
## 416                            Very bad                      Very bad
## 417                          Don't Know                    Don't Know
## 418                            Very bad                      Very bad
## 419                            Very bad                      Very bad
## 420                                <NA>                          <NA>
## 421                            Very bad                      Very bad
## 422                            Very bad                      Very bad
## 423                                <NA>                          <NA>
## 424                            Very bad                      Very bad
## 425                            Very bad                      Very bad
## 426                                <NA>                      Very bad
## 427                                 Bad                           Bad
## 428                                Good                          Good
## 429                   Not bad, not good             Not bad, not good
## 430                   Not bad, not good             Not bad, not good
## 431                                 Bad                           Bad
## 432                            Very bad                      Very bad
## 433                            Very bad                      Very bad
## 434                            Very bad                      Very bad
## 435                            Very bad                      Very bad
## 436                            Very bad                      Very bad
## 437                            Very bad                      Very bad
## 438                   Not bad, not good             Not bad, not good
## 439                                 Bad                           Bad
## 440                                 Bad                           Bad
## 441                                 Bad                           Bad
## 442                   Not bad, not good             Not bad, not good
## 443                                 Bad                           Bad
## 444                                 Bad                           Bad
## 445                                 Bad                           Bad
## 446                                 Bad                           Bad
## 447                   Not bad, not good             Not bad, not good
## 448                                 Bad                           Bad
## 449                            Very bad                      Very bad
## 450                   Not bad, not good                          <NA>
## 451                            Very bad                      Very bad
## 452                                 Bad                           Bad
## 453                   Not bad, not good             Not bad, not good
## 454                   Not bad, not good             Not bad, not good
## 455                                 Bad                           Bad
## 456                                 Bad                      Very bad
## 457                                 Bad             Not bad, not good
## 458                            Very bad                      Very bad
## 459                            Very bad                           Bad
## 460                                 Bad                     Very good
## 461                   Not bad, not good                     Very good
## 462                                 Bad                          Good
## 463                   Not bad, not good                           Bad
## 464                   Not bad, not good                           Bad
## 465                   Not bad, not good             Not bad, not good
## 466                            Very bad                      Very bad
## 467                   Not bad, not good             Not bad, not good
## 468                                 Bad             Not bad, not good
## 469                                 Bad                           Bad
## 470                                Good                    Don't Know
## 471                            Very bad                           Bad
## 472                                 Bad                           Bad
## 473                            Very bad                      Very bad
## 474                            Very bad                      Very bad
## 475                                Good             Not bad, not good
## 476                            Very bad                      Very bad
## 477                                 Bad                           Bad
## 478                                 Bad                      Very bad
## 479                                 Bad                           Bad
## 480                                 Bad                           Bad
## 481                                 Bad                           Bad
## 482                            Very bad                      Very bad
## 483                            Very bad                           Bad
## 484                   Not bad, not good                           Bad
## 485                                 Bad             Not bad, not good
## 486                                 Bad                           Bad
## 487                                 Bad             Not bad, not good
## 488                                 Bad             Not bad, not good
## 489                                 Bad                           Bad
## 490                            Very bad             Not bad, not good
## 491                                Good                           Bad
## 492                   Not bad, not good             Not bad, not good
## 493                            Very bad                      Very bad
## 494                   Not bad, not good             Not bad, not good
## 495                            Very bad                      Very bad
## 496                   Not bad, not good                           Bad
##      Development.of..Garbage.removal
## 1                           Very bad
## 2                           Very bad
## 3                                Bad
## 4                           Very bad
## 5                           Very bad
## 6                                Bad
## 7                           Very bad
## 8                                Bad
## 9                           Very bad
## 10                          Very bad
## 11                          Very bad
## 12                          Very bad
## 13                               Bad
## 14                               Bad
## 15                          Very bad
## 16                          Very bad
## 17                               Bad
## 18                               Bad
## 19                 Not bad, not good
## 20                               Bad
## 21                          Very bad
## 22                          Very bad
## 23                          Very bad
## 24                          Very bad
## 25                          Very bad
## 26                          Very bad
## 27                          Very bad
## 28                               Bad
## 29                          Very bad
## 30                               Bad
## 31                          Very bad
## 32                          Very bad
## 33                          Very bad
## 34                          Very bad
## 35                          Very bad
## 36                          Very bad
## 37                          Very bad
## 38                               Bad
## 39                               Bad
## 40                          Very bad
## 41                          Very bad
## 42                               Bad
## 43                               Bad
## 44                          Very bad
## 45                          Very bad
## 46                          Very bad
## 47                          Very bad
## 48                          Very bad
## 49                          Very bad
## 50                               Bad
## 51                 Not bad, not good
## 52                        Don't Know
## 53                 Not bad, not good
## 54                 Not bad, not good
## 55                               Bad
## 56                              Good
## 57                        Don't Know
## 58                 Not bad, not good
## 59                              Good
## 60                               Bad
## 61                              Good
## 62                 Not bad, not good
## 63                 Not bad, not good
## 64                 Not bad, not good
## 65                              Good
## 66                 Not bad, not good
## 67                 Not bad, not good
## 68                 Not bad, not good
## 69                 Not bad, not good
## 70                 Not bad, not good
## 71                 Not bad, not good
## 72                 Not bad, not good
## 73                 Not bad, not good
## 74                 Not bad, not good
## 75                 Not bad, not good
## 76                 Not bad, not good
## 77                 Not bad, not good
## 78                 Not bad, not good
## 79                 Not bad, not good
## 80                 Not bad, not good
## 81                              Good
## 82                               Bad
## 83                          Very bad
## 84                 Not bad, not good
## 85                 Not bad, not good
## 86                              Good
## 87                 Not bad, not good
## 88                         Very good
## 89                              Good
## 90                              Good
## 91                              Good
## 92                              Good
## 93                              Good
## 94                              Good
## 95                              Good
## 96                              Good
## 97                              Good
## 98                              Good
## 99                              Good
## 100                             Good
## 101                         Very bad
## 102                              Bad
## 103                              Bad
## 104                              Bad
## 105                              Bad
## 106                         Very bad
## 107                              Bad
## 108                         Very bad
## 109                              Bad
## 110                         Very bad
## 111                         Very bad
## 112                Not bad, not good
## 113                         Very bad
## 114                              Bad
## 115                              Bad
## 116                              Bad
## 117                              Bad
## 118                         Very bad
## 119                Not bad, not good
## 120                              Bad
## 121                Not bad, not good
## 122                              Bad
## 123                              Bad
## 124                              Bad
## 125                Not bad, not good
## 126                              Bad
## 127                             Good
## 128                             Good
## 129                         Very bad
## 130                Not bad, not good
## 131                              Bad
## 132                              Bad
## 133                             Good
## 134                         Very bad
## 135                         Very bad
## 136                Not bad, not good
## 137                         Very bad
## 138                Not bad, not good
## 139                Not bad, not good
## 140                             Good
## 141                              Bad
## 142                              Bad
## 143                              Bad
## 144                             Good
## 145                Not bad, not good
## 146                              Bad
## 147                Not bad, not good
## 148                         Very bad
## 149                              Bad
## 150                              Bad
## 151                              Bad
## 152                Not bad, not good
## 153                Not bad, not good
## 154                              Bad
## 155                              Bad
## 156                              Bad
## 157                       Don't Know
## 158                              Bad
## 159                              Bad
## 160                Not bad, not good
## 161                              Bad
## 162                             <NA>
## 163                       Don't Know
## 164                       Don't Know
## 165                              Bad
## 166                         Very bad
## 167                              Bad
## 168                              Bad
## 169                              Bad
## 170                              Bad
## 171                              Bad
## 172                              Bad
## 173                              Bad
## 174                              Bad
## 175                              Bad
## 176                              Bad
## 177                              Bad
## 178                              Bad
## 179                              Bad
## 180                              Bad
## 181                              Bad
## 182                              Bad
## 183                              Bad
## 184                              Bad
## 185                              Bad
## 186                              Bad
## 187                              Bad
## 188                              Bad
## 189                              Bad
## 190                              Bad
## 191                              Bad
## 192                              Bad
## 193                              Bad
## 194                              Bad
## 195                              Bad
## 196                              Bad
## 197                              Bad
## 198                              Bad
## 199                              Bad
## 200                              Bad
## 201                Not bad, not good
## 202                              Bad
## 203                Not bad, not good
## 204                              Bad
## 205                Not bad, not good
## 206                         Very bad
## 207                              Bad
## 208                              Bad
## 209                              Bad
## 210                         Very bad
## 211                         Very bad
## 212                         Very bad
## 213                         Very bad
## 214                              Bad
## 215                         Very bad
## 216                         Very bad
## 217                              Bad
## 218                              Bad
## 219                              Bad
## 220                         Very bad
## 221                              Bad
## 222                         Very bad
## 223                         Very bad
## 224                         Very bad
## 225                Not bad, not good
## 226                              Bad
## 227                              Bad
## 228                              Bad
## 229                              Bad
## 230                              Bad
## 231                         Very bad
## 232                              Bad
## 233                         Very bad
## 234                              Bad
## 235                              Bad
## 236                             Good
## 237                              Bad
## 238                Not bad, not good
## 239                              Bad
## 240                         Very bad
## 241                              Bad
## 242                              Bad
## 243                              Bad
## 244                              Bad
## 245                             Good
## 246                              Bad
## 247                Not bad, not good
## 248                              Bad
## 249                             Good
## 250                         Very bad
## 251                              Bad
## 252                Not bad, not good
## 253                             Good
## 254                             Good
## 255                              Bad
## 256                             Good
## 257                             Good
## 258                             Good
## 259                        Very good
## 260                              Bad
## 261                Not bad, not good
## 262                             Good
## 263                             Good
## 264                             Good
## 265                              Bad
## 266                Not bad, not good
## 267                             Good
## 268                Not bad, not good
## 269                              Bad
## 270                              Bad
## 271                Not bad, not good
## 272                             Good
## 273                             Good
## 274                Not bad, not good
## 275                             Good
## 276                Not bad, not good
## 277                             Good
## 278                             Good
## 279                             <NA>
## 280                Not bad, not good
## 281                             Good
## 282                             Good
## 283                             Good
## 284                              Bad
## 285                             Good
## 286                             Good
## 287                             Good
## 288                             Good
## 289                             Good
## 290                              Bad
## 291                             Good
## 292                Not bad, not good
## 293                              Bad
## 294                Not bad, not good
## 295                Not bad, not good
## 296                Not bad, not good
## 297                              Bad
## 298                              Bad
## 299                             Good
## 300                              Bad
## 302                              Bad
## 303                              Bad
## 304                Not bad, not good
## 305                              Bad
## 306                              Bad
## 307                              Bad
## 308                              Bad
## 309                Not bad, not good
## 310                         Very bad
## 311                              Bad
## 312                Not bad, not good
## 313                              Bad
## 314                Not bad, not good
## 315                Not bad, not good
## 316                Not bad, not good
## 317                              Bad
## 318                         Very bad
## 319                         Very bad
## 320                              Bad
## 321                              Bad
## 322                             Good
## 323                             Good
## 324                             Good
## 325                Not bad, not good
## 326                Not bad, not good
## 327                             Good
## 328                             Good
## 329                Not bad, not good
## 330                             Good
## 331                              Bad
## 332                              Bad
## 333                             Good
## 334                              Bad
## 335                Not bad, not good
## 336                              Bad
## 337                         Very bad
## 338                              Bad
## 339                         Very bad
## 340                              Bad
## 341                              Bad
## 342                         Very bad
## 343                Not bad, not good
## 344                              Bad
## 345                         Very bad
## 346                         Very bad
## 347                              Bad
## 348                             Good
## 349                              Bad
## 350                         Very bad
## 351                              Bad
## 352                       Don't Know
## 353                              Bad
## 354                Not bad, not good
## 355                Not bad, not good
## 356                Not bad, not good
## 357                Not bad, not good
## 358                Not bad, not good
## 359                              Bad
## 360                             Good
## 361                Not bad, not good
## 362                Not bad, not good
## 363                              Bad
## 364                              Bad
## 365                Not bad, not good
## 366                              Bad
## 367                Not bad, not good
## 368                Not bad, not good
## 369                              Bad
## 370                Not bad, not good
## 371                              Bad
## 372                Not bad, not good
## 373                Not bad, not good
## 374                              Bad
## 375                             Good
## 376                Not bad, not good
## 377                              Bad
## 378                Not bad, not good
## 379                Not bad, not good
## 380                              Bad
## 381                Not bad, not good
## 382                Not bad, not good
## 383                Not bad, not good
## 384                Not bad, not good
## 385                Not bad, not good
## 386                Not bad, not good
## 387                Not bad, not good
## 388                Not bad, not good
## 389                Not bad, not good
## 390                         Very bad
## 391                              Bad
## 392                Not bad, not good
## 393                Not bad, not good
## 394                Not bad, not good
## 395                Not bad, not good
## 396                              Bad
## 397                              Bad
## 398                              Bad
## 399                Not bad, not good
## 400                Not bad, not good
## 401                Not bad, not good
## 402                         Very bad
## 403                              Bad
## 404                             Good
## 405                Not bad, not good
## 406                         Very bad
## 407                         Very bad
## 408                         Very bad
## 409                Not bad, not good
## 410                         Very bad
## 411                         Very bad
## 412                         Very bad
## 413                         Very bad
## 414                              Bad
## 415                         Very bad
## 416                         Very bad
## 417                       Don't Know
## 418                         Very bad
## 419                         Very bad
## 420                             <NA>
## 421                         Very bad
## 422                         Very bad
## 423                             <NA>
## 424                         Very bad
## 425                         Very bad
## 426                              Bad
## 427                              Bad
## 428                             Good
## 429                Not bad, not good
## 430                Not bad, not good
## 431                              Bad
## 432                         Very bad
## 433                         Very bad
## 434                         Very bad
## 435                         Very bad
## 436                         Very bad
## 437                         Very bad
## 438                Not bad, not good
## 439                              Bad
## 440                              Bad
## 441                              Bad
## 442                Not bad, not good
## 443                              Bad
## 444                              Bad
## 445                              Bad
## 446                              Bad
## 447                Not bad, not good
## 448                              Bad
## 449                         Very bad
## 450                             <NA>
## 451                         Very bad
## 452                              Bad
## 453                Not bad, not good
## 454                              Bad
## 455                              Bad
## 456                Not bad, not good
## 457                              Bad
## 458                         Very bad
## 459                         Very bad
## 460                         Very bad
## 461                        Very good
## 462                              Bad
## 463                         Very bad
## 464                              Bad
## 465                Not bad, not good
## 466                              Bad
## 467                Not bad, not good
## 468                         Very bad
## 469                              Bad
## 470                        Very good
## 471                              Bad
## 472                              Bad
## 473                         Very bad
## 474                         Very bad
## 475                              Bad
## 476                         Very bad
## 477                Not bad, not good
## 478                         Very bad
## 479                              Bad
## 480                         Very bad
## 481                              Bad
## 482                         Very bad
## 483                         Very bad
## 484                              Bad
## 485                              Bad
## 486                Not bad, not good
## 487                Not bad, not good
## 488                              Bad
## 489                              Bad
## 490                              Bad
## 491                             Good
## 492                Not bad, not good
## 493                         Very bad
## 494                              Bad
## 495                              Bad
## 496                              Bad
##      Development.of..Maintenance.and.construction.of.roads
## 1                                                 Very bad
## 2                                                      Bad
## 3                                                     Good
## 4                                                 Very bad
## 5                                        Not bad, not good
## 6                                        Not bad, not good
## 7                                        Not bad, not good
## 8                                                      Bad
## 9                                        Not bad, not good
## 10                                                Very bad
## 11                                                     Bad
## 12                                                Very bad
## 13                                                     Bad
## 14                                       Not bad, not good
## 15                                                     Bad
## 16                                       Not bad, not good
## 17                                                     Bad
## 18                                                     Bad
## 19                                       Not bad, not good
## 20                                                     Bad
## 21                                                Very bad
## 22                                                Very bad
## 23                                                     Bad
## 24                                                Very bad
## 25                                                     Bad
## 26                                                     Bad
## 27                                                Very bad
## 28                                       Not bad, not good
## 29                                                Very bad
## 30                                                     Bad
## 31                                                Very bad
## 32                                       Not bad, not good
## 33                                                     Bad
## 34                                                Very bad
## 35                                                Very bad
## 36                                                Very bad
## 37                                                Very bad
## 38                                                     Bad
## 39                                                     Bad
## 40                                                Very bad
## 41                                                Very bad
## 42                                                     Bad
## 43                                                     Bad
## 44                                                Very bad
## 45                                                Very bad
## 46                                                     Bad
## 47                                                Very bad
## 48                                                Very bad
## 49                                                Very bad
## 50                                                     Bad
## 51                                       Not bad, not good
## 52                                       Not bad, not good
## 53                                                    Good
## 54                                                     Bad
## 55                                                     Bad
## 56                                                Very bad
## 57                                                     Bad
## 58                                       Not bad, not good
## 59                                                    Good
## 60                                                Very bad
## 61                                                    Good
## 62                                       Not bad, not good
## 63                                       Not bad, not good
## 64                                       Not bad, not good
## 65                                                    Good
## 66                                       Not bad, not good
## 67                                       Not bad, not good
## 68                                       Not bad, not good
## 69                                                    Good
## 70                                       Not bad, not good
## 71                                       Not bad, not good
## 72                                       Not bad, not good
## 73                                       Not bad, not good
## 74                                       Not bad, not good
## 75                                       Not bad, not good
## 76                                                    Good
## 77                                       Not bad, not good
## 78                                       Not bad, not good
## 79                                       Not bad, not good
## 80                                       Not bad, not good
## 81                                                    Good
## 82                                                     Bad
## 83                                                     Bad
## 84                                       Not bad, not good
## 85                                       Not bad, not good
## 86                                       Not bad, not good
## 87                                       Not bad, not good
## 88                                               Very good
## 89                                                    Good
## 90                                                    Good
## 91                                                    Good
## 92                                                    Good
## 93                                                    Good
## 94                                                    Good
## 95                                                    Good
## 96                                                    Good
## 97                                                    Good
## 98                                                    Good
## 99                                                    Good
## 100                                                   Good
## 101                                                    Bad
## 102                                                    Bad
## 103                                      Not bad, not good
## 104                                                    Bad
## 105                                      Not bad, not good
## 106                                               Very bad
## 107                                                    Bad
## 108                                               Very bad
## 109                                                    Bad
## 110                                               Very bad
## 111                                               Very bad
## 112                                                   Good
## 113                                                    Bad
## 114                                      Not bad, not good
## 115                                                    Bad
## 116                                                    Bad
## 117                                                    Bad
## 118                                                    Bad
## 119                                      Not bad, not good
## 120                                      Not bad, not good
## 121                                                   Good
## 122                                      Not bad, not good
## 123                                               Very bad
## 124                                                    Bad
## 125                                      Not bad, not good
## 126                                      Not bad, not good
## 127                                      Not bad, not good
## 128                                                   Good
## 129                                                    Bad
## 130                                                   Good
## 131                                               Very bad
## 132                                               Very bad
## 133                                      Not bad, not good
## 134                                               Very bad
## 135                                               Very bad
## 136                                      Not bad, not good
## 137                                               Very bad
## 138                                                    Bad
## 139                                                    Bad
## 140                                      Not bad, not good
## 141                                                    Bad
## 142                                               Very bad
## 143                                                    Bad
## 144                                                   Good
## 145                                      Not bad, not good
## 146                                                    Bad
## 147                                                   Good
## 148                                                    Bad
## 149                                      Not bad, not good
## 150                                                    Bad
## 151                                                    Bad
## 152                                                    Bad
## 153                                                    Bad
## 154                                                    Bad
## 155                                                    Bad
## 156                                                    Bad
## 157                                             Don't Know
## 158                                      Not bad, not good
## 159                                                    Bad
## 160                                                    Bad
## 161                                      Not bad, not good
## 162                                                    Bad
## 163                                             Don't Know
## 164                                             Don't Know
## 165                                      Not bad, not good
## 166                                                    Bad
## 167                                      Not bad, not good
## 168                                                    Bad
## 169                                                    Bad
## 170                                                    Bad
## 171                                                    Bad
## 172                                                    Bad
## 173                                                    Bad
## 174                                                   Good
## 175                                                    Bad
## 176                                                    Bad
## 177                                                    Bad
## 178                                                    Bad
## 179                                                    Bad
## 180                                                    Bad
## 181                                                    Bad
## 182                                                    Bad
## 183                                                    Bad
## 184                                                    Bad
## 185                                                    Bad
## 186                                                    Bad
## 187                                                    Bad
## 188                                                    Bad
## 189                                                    Bad
## 190                                                    Bad
## 191                                                    Bad
## 192                                                    Bad
## 193                                                    Bad
## 194                                                    Bad
## 195                                                    Bad
## 196                                                    Bad
## 197                                                    Bad
## 198                                                    Bad
## 199                                                    Bad
## 200                                                    Bad
## 201                                                    Bad
## 202                                                    Bad
## 203                                               Very bad
## 204                                      Not bad, not good
## 205                                                    Bad
## 206                                                    Bad
## 207                                                    Bad
## 208                                                    Bad
## 209                                               Very bad
## 210                                                    Bad
## 211                                                    Bad
## 212                                                    Bad
## 213                                                    Bad
## 214                                               Very bad
## 215                                                    Bad
## 216                                                    Bad
## 217                                                    Bad
## 218                                               Very bad
## 219                                                    Bad
## 220                                                    Bad
## 221                                      Not bad, not good
## 222                                               Very bad
## 223                                                    Bad
## 224                                               Very bad
## 225                                                   Good
## 226                                      Not bad, not good
## 227                                                    Bad
## 228                                      Not bad, not good
## 229                                               Very bad
## 230                                      Not bad, not good
## 231                                      Not bad, not good
## 232                                               Very bad
## 233                                                    Bad
## 234                                               Very bad
## 235                                               Very bad
## 236                                                    Bad
## 237                                      Not bad, not good
## 238                                                    Bad
## 239                                               Very bad
## 240                                               Very bad
## 241                                               Very bad
## 242                                               Very bad
## 243                                               Very bad
## 244                                               Very bad
## 245                                              Very good
## 246                                               Very bad
## 247                                                   Good
## 248                                               Very bad
## 249                                               Very bad
## 250                                               Very bad
## 251                                                    Bad
## 252                                      Not bad, not good
## 253                                                    Bad
## 254                                                   Good
## 255                                                    Bad
## 256                                                    Bad
## 257                                                   Good
## 258                                                   Good
## 259                                             Don't Know
## 260                                                    Bad
## 261                                                   Good
## 262                                                   Good
## 263                                                   Good
## 264                                                   Good
## 265                                                    Bad
## 266                                      Not bad, not good
## 267                                                   Good
## 268                                      Not bad, not good
## 269                                                    Bad
## 270                                      Not bad, not good
## 271                                      Not bad, not good
## 272                                                   Good
## 273                                                   Good
## 274                                                   Good
## 275                                      Not bad, not good
## 276                                                   Good
## 277                                                   Good
## 278                                                   Good
## 279                                                   <NA>
## 280                                                    Bad
## 281                                                   Good
## 282                                                   Good
## 283                                                   Good
## 284                                                   Good
## 285                                                   Good
## 286                                                   Good
## 287                                      Not bad, not good
## 288                                                   Good
## 289                                      Not bad, not good
## 290                                                    Bad
## 291                                                   Good
## 292                                      Not bad, not good
## 293                                      Not bad, not good
## 294                                      Not bad, not good
## 295                                      Not bad, not good
## 296                                      Not bad, not good
## 297                                                    Bad
## 298                                      Not bad, not good
## 299                                                   Good
## 300                                                    Bad
## 302                                                    Bad
## 303                                                   Good
## 304                                                    Bad
## 305                                                   Good
## 306                                                   Good
## 307                                                    Bad
## 308                                                   Good
## 309                                      Not bad, not good
## 310                                      Not bad, not good
## 311                                                    Bad
## 312                                      Not bad, not good
## 313                                      Not bad, not good
## 314                                      Not bad, not good
## 315                                                   Good
## 316                                                   Good
## 317                                                   Good
## 318                                                   Good
## 319                                               Very bad
## 320                                      Not bad, not good
## 321                                                    Bad
## 322                                                   Good
## 323                                                   Good
## 324                                                   Good
## 325                                      Not bad, not good
## 326                                                   Good
## 327                                                   Good
## 328                                      Not bad, not good
## 329                                                    Bad
## 330                                                   Good
## 331                                      Not bad, not good
## 332                                      Not bad, not good
## 333                                              Very good
## 334                                                   Good
## 335                                                   Good
## 336                                                   Good
## 337                                                    Bad
## 338                                      Not bad, not good
## 339                                               Very bad
## 340                                                   Good
## 341                                                    Bad
## 342                                                    Bad
## 343                                      Not bad, not good
## 344                                                   Good
## 345                                               Very bad
## 346                                                    Bad
## 347                                      Not bad, not good
## 348                                                   Good
## 349                                                   Good
## 350                                               Very bad
## 351                                      Not bad, not good
## 352                                             Don't Know
## 353                                                    Bad
## 354                                                   Good
## 355                                      Not bad, not good
## 356                                      Not bad, not good
## 357                                      Not bad, not good
## 358                                      Not bad, not good
## 359                                      Not bad, not good
## 360                                                   Good
## 361                                      Not bad, not good
## 362                                      Not bad, not good
## 363                                      Not bad, not good
## 364                                                    Bad
## 365                                      Not bad, not good
## 366                                      Not bad, not good
## 367                                      Not bad, not good
## 368                                      Not bad, not good
## 369                                      Not bad, not good
## 370                                      Not bad, not good
## 371                                      Not bad, not good
## 372                                      Not bad, not good
## 373                                      Not bad, not good
## 374                                      Not bad, not good
## 375                                                   Good
## 376                                      Not bad, not good
## 377                                                    Bad
## 378                                                   Good
## 379                                                    Bad
## 380                                      Not bad, not good
## 381                                      Not bad, not good
## 382                                      Not bad, not good
## 383                                      Not bad, not good
## 384                                      Not bad, not good
## 385                                      Not bad, not good
## 386                                      Not bad, not good
## 387                                      Not bad, not good
## 388                                      Not bad, not good
## 389                                      Not bad, not good
## 390                                                    Bad
## 391                                      Not bad, not good
## 392                                      Not bad, not good
## 393                                             Don't Know
## 394                                             Don't Know
## 395                                      Not bad, not good
## 396                                      Not bad, not good
## 397                                                    Bad
## 398                                      Not bad, not good
## 399                                      Not bad, not good
## 400                                      Not bad, not good
## 401                                      Not bad, not good
## 402                                               Very bad
## 403                                                    Bad
## 404                                      Not bad, not good
## 405                                      Not bad, not good
## 406                                               Very bad
## 407                                               Very bad
## 408                                               Very bad
## 409                                      Not bad, not good
## 410                                               Very bad
## 411                                               Very bad
## 412                                               Very bad
## 413                                               Very bad
## 414                                                    Bad
## 415                                               Very bad
## 416                                               Very bad
## 417                                             Don't Know
## 418                                               Very bad
## 419                                               Very bad
## 420                                                   <NA>
## 421                                               Very bad
## 422                                               Very bad
## 423                                                   <NA>
## 424                                               Very bad
## 425                                               Very bad
## 426                                                    Bad
## 427                                                    Bad
## 428                                                   Good
## 429                                      Not bad, not good
## 430                                      Not bad, not good
## 431                                                    Bad
## 432                                               Very bad
## 433                                               Very bad
## 434                                               Very bad
## 435                                               Very bad
## 436                                               Very bad
## 437                                               Very bad
## 438                                                   <NA>
## 439                                                    Bad
## 440                                                    Bad
## 441                                                    Bad
## 442                                      Not bad, not good
## 443                                                    Bad
## 444                                                    Bad
## 445                                                    Bad
## 446                                                    Bad
## 447                                      Not bad, not good
## 448                                                    Bad
## 449                                               Very bad
## 450                                                   <NA>
## 451                                               Very bad
## 452                                                    Bad
## 453                                      Not bad, not good
## 454                                                    Bad
## 455                                                    Bad
## 456                                                   Good
## 457                                                    Bad
## 458                                                    Bad
## 459                                               Very bad
## 460                                      Not bad, not good
## 461                                              Very good
## 462                                                    Bad
## 463                                               Very bad
## 464                                               Very bad
## 465                                                    Bad
## 466                                               Very bad
## 467                                                   Good
## 468                                               Very bad
## 469                                                    Bad
## 470                                                   Good
## 471                                               Very bad
## 472                                                    Bad
## 473                                               Very bad
## 474                                                    Bad
## 475                                                   Good
## 476                                               Very bad
## 477                                                   Good
## 478                                               Very bad
## 479                                                    Bad
## 480                                               Very bad
## 481                                                    Bad
## 482                                               Very bad
## 483                                               Very bad
## 484                                                    Bad
## 485                                                    Bad
## 486                                               Very bad
## 487                                                    Bad
## 488                                                    Bad
## 489                                                    Bad
## 490                                               Very bad
## 491                                      Not bad, not good
## 492                                      Not bad, not good
## 493                                               Very bad
## 494                                                    Bad
## 495                                               Very bad
## 496                                                    Bad
##      Development.of..Maintenance.of.culverts.bridges
## 1                                           Very bad
## 2                                                Bad
## 3                                  Not bad, not good
## 4                                           Very bad
## 5                                  Not bad, not good
## 6                                  Not bad, not good
## 7                                  Not bad, not good
## 8                                           Very bad
## 9                                               Good
## 10                                 Not bad, not good
## 11                                 Not bad, not good
## 12                                          Very bad
## 13                                 Not bad, not good
## 14                                               Bad
## 15                                 Not bad, not good
## 16                                          Very bad
## 17                                 Not bad, not good
## 18                                 Not bad, not good
## 19                                               Bad
## 20                                              Good
## 21                                              Good
## 22                                          Very bad
## 23                                 Not bad, not good
## 24                                          Very bad
## 25                                 Not bad, not good
## 26                                 Not bad, not good
## 27                                          Very bad
## 28                                 Not bad, not good
## 29                                          Very bad
## 30                                              <NA>
## 31                                 Not bad, not good
## 32                                        Don't Know
## 33                                 Not bad, not good
## 34                                          Very bad
## 35                                          Very bad
## 36                                          Very bad
## 37                                               Bad
## 38                                               Bad
## 39                                               Bad
## 40                                          Very bad
## 41                                          Very bad
## 42                                               Bad
## 43                                               Bad
## 44                                          Very bad
## 45                                          Very bad
## 46                                               Bad
## 47                                          Very bad
## 48                                               Bad
## 49                                               Bad
## 50                                               Bad
## 51                                 Not bad, not good
## 52                                 Not bad, not good
## 53                                              Good
## 54                                               Bad
## 55                                               Bad
## 56                                          Very bad
## 57                                              Good
## 58                                 Not bad, not good
## 59                                              Good
## 60                                 Not bad, not good
## 61                                              Good
## 62                                 Not bad, not good
## 63                                 Not bad, not good
## 64                                 Not bad, not good
## 65                                              Good
## 66                                 Not bad, not good
## 67                                 Not bad, not good
## 68                                 Not bad, not good
## 69                                              Good
## 70                                 Not bad, not good
## 71                                 Not bad, not good
## 72                                 Not bad, not good
## 73                                 Not bad, not good
## 74                                 Not bad, not good
## 75                                 Not bad, not good
## 76                                              Good
## 77                                              Good
## 78                                 Not bad, not good
## 79                                 Not bad, not good
## 80                                 Not bad, not good
## 81                                              Good
## 82                                               Bad
## 83                                               Bad
## 84                                 Not bad, not good
## 85                                 Not bad, not good
## 86                                 Not bad, not good
## 87                                 Not bad, not good
## 88                                         Very good
## 89                                              Good
## 90                                              Good
## 91                                              Good
## 92                                              Good
## 93                                              Good
## 94                                              Good
## 95                                              Good
## 96                                              Good
## 97                                              Good
## 98                                              Good
## 99                                              Good
## 100                                             Good
## 101                                         Very bad
## 102                                              Bad
## 103                                              Bad
## 104                                              Bad
## 105                                              Bad
## 106                                              Bad
## 107                                         Very bad
## 108                                         Very bad
## 109                                              Bad
## 110                                         Very bad
## 111                                         Very bad
## 112                                Not bad, not good
## 113                                              Bad
## 114                                Not bad, not good
## 115                                              Bad
## 116                                              Bad
## 117                                              Bad
## 118                                         Very bad
## 119                                Not bad, not good
## 120                                             Good
## 121                                Not bad, not good
## 122                                              Bad
## 123                                              Bad
## 124                                              Bad
## 125                                Not bad, not good
## 126                                              Bad
## 127                                              Bad
## 128                                Not bad, not good
## 129                                         Very bad
## 130                                Not bad, not good
## 131                                              Bad
## 132                                              Bad
## 133                                             Good
## 134                                         Very bad
## 135                                         Very bad
## 136                                Not bad, not good
## 137                                         Very bad
## 138                                Not bad, not good
## 139                                         Very bad
## 140                                             Good
## 141                                              Bad
## 142                                              Bad
## 143                                              Bad
## 144                                         Very bad
## 145                                Not bad, not good
## 146                                              Bad
## 147                                Not bad, not good
## 148                                              Bad
## 149                                Not bad, not good
## 150                                              Bad
## 151                                              Bad
## 152                                              Bad
## 153                                              Bad
## 154                                       Don't Know
## 155                                              Bad
## 156                                              Bad
## 157                                       Don't Know
## 158                                Not bad, not good
## 159                                              Bad
## 160                                              Bad
## 161                                              Bad
## 162                                Not bad, not good
## 163                                       Don't Know
## 164                                       Don't Know
## 165                                Not bad, not good
## 166                                              Bad
## 167                                Not bad, not good
## 168                                Not bad, not good
## 169                                              Bad
## 170                                              Bad
## 171                                              Bad
## 172                                              Bad
## 173                                              Bad
## 174                                Not bad, not good
## 175                                              Bad
## 176                                              Bad
## 177                                              Bad
## 178                                              Bad
## 179                                              Bad
## 180                                              Bad
## 181                                              Bad
## 182                                              Bad
## 183                                              Bad
## 184                                              Bad
## 185                                              Bad
## 186                                Not bad, not good
## 187                                              Bad
## 188                                              Bad
## 189                                              Bad
## 190                                              Bad
## 191                                              Bad
## 192                                              Bad
## 193                                              Bad
## 194                                              Bad
## 195                                              Bad
## 196                                              Bad
## 197                                Not bad, not good
## 198                                              Bad
## 199                                              Bad
## 200                                              Bad
## 201                                             Good
## 202                                              Bad
## 203                                Not bad, not good
## 204                                Not bad, not good
## 205                                Not bad, not good
## 206                                              Bad
## 207                                              Bad
## 208                                              Bad
## 209                                         Very bad
## 210                                         Very bad
## 211                                              Bad
## 212                                              Bad
## 213                                              Bad
## 214                                         Very bad
## 215                                              Bad
## 216                                              Bad
## 217                                         Very bad
## 218                                         Very bad
## 219                                              Bad
## 220                                              Bad
## 221                                              Bad
## 222                                              Bad
## 223                                         Very bad
## 224                                         Very bad
## 225                                        Very good
## 226                                             Good
## 227                                              Bad
## 228                                             Good
## 229                                              Bad
## 230                                              Bad
## 231                                         Very bad
## 232                                         Very bad
## 233                                         Very bad
## 234                                         Very bad
## 235                                         Very bad
## 236                                              Bad
## 237                                         Very bad
## 238                                         Very bad
## 239                                         Very bad
## 240                                         Very bad
## 241                                         Very bad
## 242                                         Very bad
## 243                                         Very bad
## 244                                         Very bad
## 245                                Not bad, not good
## 246                                         Very bad
## 247                                              Bad
## 248                                Not bad, not good
## 249                                        Very good
## 250                                              Bad
## 251                                              Bad
## 252                                Not bad, not good
## 253                                Not bad, not good
## 254                                             Good
## 255                                              Bad
## 256                                              Bad
## 257                                             Good
## 258                                             Good
## 259                                        Very good
## 260                                              Bad
## 261                                             Good
## 262                                             Good
## 263                                             Good
## 264                                             Good
## 265                                              Bad
## 266                                             Good
## 267                                             Good
## 268                                             Good
## 269                                Not bad, not good
## 270                                              Bad
## 271                                Not bad, not good
## 272                                             Good
## 273                                             Good
## 274                                Not bad, not good
## 275                                             Good
## 276                                Not bad, not good
## 277                                             Good
## 278                                             Good
## 279                                             <NA>
## 280                                Not bad, not good
## 281                                             Good
## 282                                             Good
## 283                                             Good
## 284                                Not bad, not good
## 285                                             Good
## 286                                             Good
## 287                                Not bad, not good
## 288                                             Good
## 289                                Not bad, not good
## 290                                Not bad, not good
## 291                                Not bad, not good
## 292                                              Bad
## 293                                Not bad, not good
## 294                                Not bad, not good
## 295                                Not bad, not good
## 296                                Not bad, not good
## 297                                             Good
## 298                                Not bad, not good
## 299                                             Good
## 300                                              Bad
## 302                                              Bad
## 303                                             Good
## 304                                              Bad
## 305                                              Bad
## 306                                Not bad, not good
## 307                                             Good
## 308                                             Good
## 309                                Not bad, not good
## 310                                              Bad
## 311                                              Bad
## 312                                Not bad, not good
## 313                                              Bad
## 314                                Not bad, not good
## 315                                Not bad, not good
## 316                                             Good
## 317                                             Good
## 318                                              Bad
## 319                                         Very bad
## 320                                              Bad
## 321                                              Bad
## 322                                             Good
## 323                                             Good
## 324                                       Don't Know
## 325                                Not bad, not good
## 326                                Not bad, not good
## 327                                             Good
## 328                                       Don't Know
## 329                                        Very good
## 330                                              Bad
## 331                                             Good
## 332                                             Good
## 333                                       Don't Know
## 334                                        Very good
## 335                                Not bad, not good
## 336                                              Bad
## 337                                Not bad, not good
## 338                                         Very bad
## 339                                              Bad
## 340                                              Bad
## 341                                              Bad
## 342                                         Very bad
## 343                                Not bad, not good
## 344                                              Bad
## 345                                         Very bad
## 346                                Not bad, not good
## 347                                              Bad
## 348                                             Good
## 349                                              Bad
## 350                                         Very bad
## 351                                              Bad
## 352                                       Don't Know
## 353                                              Bad
## 354                                Not bad, not good
## 355                                Not bad, not good
## 356                                Not bad, not good
## 357                                Not bad, not good
## 358                                Not bad, not good
## 359                                Not bad, not good
## 360                                             Good
## 361                                Not bad, not good
## 362                                Not bad, not good
## 363                                Not bad, not good
## 364                                              Bad
## 365                                Not bad, not good
## 366                                Not bad, not good
## 367                                Not bad, not good
## 368                                Not bad, not good
## 369                                              Bad
## 370                                Not bad, not good
## 371                                             <NA>
## 372                                Not bad, not good
## 373                                Not bad, not good
## 374                                Not bad, not good
## 375                                             Good
## 376                                Not bad, not good
## 377                                              Bad
## 378                                Not bad, not good
## 379                                Not bad, not good
## 380                                Not bad, not good
## 381                                Not bad, not good
## 382                                Not bad, not good
## 383                                Not bad, not good
## 384                                Not bad, not good
## 385                                Not bad, not good
## 386                                Not bad, not good
## 387                                Not bad, not good
## 388                                Not bad, not good
## 389                                Not bad, not good
## 390                                              Bad
## 391                                Not bad, not good
## 392                                Not bad, not good
## 393                                Not bad, not good
## 394                                       Don't Know
## 395                                Not bad, not good
## 396                                Not bad, not good
## 397                                              Bad
## 398                                Not bad, not good
## 399                                Not bad, not good
## 400                                Not bad, not good
## 401                                Not bad, not good
## 402                                         Very bad
## 403                                              Bad
## 404                                         Very bad
## 405                                Not bad, not good
## 406                                         Very bad
## 407                                         Very bad
## 408                                         Very bad
## 409                                Not bad, not good
## 410                                         Very bad
## 411                                         Very bad
## 412                                         Very bad
## 413                                         Very bad
## 414                                Not bad, not good
## 415                                         Very bad
## 416                                         Very bad
## 417                                       Don't Know
## 418                                         Very bad
## 419                                         Very bad
## 420                                             <NA>
## 421                                         Very bad
## 422                                         Very bad
## 423                                             <NA>
## 424                                         Very bad
## 425                                         Very bad
## 426                                              Bad
## 427                                              Bad
## 428                                             Good
## 429                                Not bad, not good
## 430                                Not bad, not good
## 431                                              Bad
## 432                                         Very bad
## 433                                         Very bad
## 434                                         Very bad
## 435                                         Very bad
## 436                                         Very bad
## 437                                         Very bad
## 438                                Not bad, not good
## 439                                              Bad
## 440                                              Bad
## 441                                              Bad
## 442                                Not bad, not good
## 443                                              Bad
## 444                                              Bad
## 445                                              Bad
## 446                                              Bad
## 447                                Not bad, not good
## 448                                              Bad
## 449                                         Very bad
## 450                                             <NA>
## 451                                         Very bad
## 452                                              Bad
## 453                                Not bad, not good
## 454                                              Bad
## 455                                Not bad, not good
## 456                                             Good
## 457                                              Bad
## 458                                         Very bad
## 459                                         Very bad
## 460                                         Very bad
## 461                                        Very good
## 462                                Not bad, not good
## 463                                         Very bad
## 464                                         Very bad
## 465                                Not bad, not good
## 466                                         Very bad
## 467                                             Good
## 468                                              Bad
## 469                                              Bad
## 470                                       Don't Know
## 471                                         Very bad
## 472                                              Bad
## 473                                         Very bad
## 474                                              Bad
## 475                                         Very bad
## 476                                         Very bad
## 477                                             Good
## 478                                         Very bad
## 479                                              Bad
## 480                                         Very bad
## 481                                              Bad
## 482                                         Very bad
## 483                                         Very bad
## 484                                              Bad
## 485                                              Bad
## 486                                              Bad
## 487                                Not bad, not good
## 488                                Not bad, not good
## 489                                              Bad
## 490                                         Very bad
## 491                                             Good
## 492                                Not bad, not good
## 493                                         Very bad
## 494                                              Bad
## 495                                         Very bad
## 496                                              Bad
##      Development.of..Water.supply
## 1                        Very bad
## 2                        Very bad
## 3                            Good
## 4                             Bad
## 5                            Good
## 6                            Good
## 7                            Good
## 8                        Very bad
## 9                            Good
## 10                            Bad
## 11                           Good
## 12                       Very bad
## 13                            Bad
## 14              Not bad, not good
## 15              Not bad, not good
## 16                            Bad
## 17                            Bad
## 18                            Bad
## 19                            Bad
## 20                            Bad
## 21                            Bad
## 22                       Very bad
## 23              Not bad, not good
## 24                       Very bad
## 25                            Bad
## 26                            Bad
## 27                       Very bad
## 28                            Bad
## 29                       Very bad
## 30                       Very bad
## 31                            Bad
## 32                     Don't Know
## 33                            Bad
## 34                       Very bad
## 35                       Very bad
## 36                       Very bad
## 37                            Bad
## 38                            Bad
## 39                            Bad
## 40                       Very bad
## 41                       Very bad
## 42                            Bad
## 43                            Bad
## 44              Not bad, not good
## 45                            Bad
## 46                       Very bad
## 47                       Very bad
## 48                            Bad
## 49              Not bad, not good
## 50              Not bad, not good
## 51                           Good
## 52                           Good
## 53                           Good
## 54                            Bad
## 55                            Bad
## 56                           Good
## 57                     Don't Know
## 58                           Good
## 59                           Good
## 60                           Good
## 61                           Good
## 62                           Good
## 63                           Good
## 64              Not bad, not good
## 65                           Good
## 66                           Good
## 67              Not bad, not good
## 68                           Good
## 69                           Good
## 70              Not bad, not good
## 71              Not bad, not good
## 72                           Good
## 73                           Good
## 74                           Good
## 75                           Good
## 76                           Good
## 77                           <NA>
## 78              Not bad, not good
## 79                           Good
## 80                           Good
## 81                           Good
## 82                           Good
## 83                            Bad
## 84                           Good
## 85              Not bad, not good
## 86                           Good
## 87              Not bad, not good
## 88                      Very good
## 89                           Good
## 90                           Good
## 91                           Good
## 92                           Good
## 93                           Good
## 94                           Good
## 95                           Good
## 96                           Good
## 97                           Good
## 98                           Good
## 99                           Good
## 100                          Good
## 101                      Very bad
## 102                      Very bad
## 103                      Very bad
## 104                      Very bad
## 105                           Bad
## 106                      Very bad
## 107                      Very bad
## 108                      Very bad
## 109                      Very bad
## 110                      Very bad
## 111                      Very bad
## 112                          Good
## 113                      Very bad
## 114                           Bad
## 115                      Very bad
## 116                           Bad
## 117                           Bad
## 118                      Very bad
## 119                      Very bad
## 120                      Very bad
## 121             Not bad, not good
## 122                           Bad
## 123                      Very bad
## 124                           Bad
## 125             Not bad, not good
## 126                      Very bad
## 127                          Good
## 128                          Good
## 129                           Bad
## 130             Not bad, not good
## 131                      Very bad
## 132                      Very bad
## 133             Not bad, not good
## 134                      Very bad
## 135                      Very bad
## 136             Not bad, not good
## 137                      Very bad
## 138                           Bad
## 139                      Very bad
## 140             Not bad, not good
## 141                           Bad
## 142                      Very bad
## 143                      Very bad
## 144                      Very bad
## 145             Not bad, not good
## 146                           Bad
## 147             Not bad, not good
## 148                      Very bad
## 149             Not bad, not good
## 150                           Bad
## 151                          Good
## 152                           Bad
## 153             Not bad, not good
## 154                          Good
## 155             Not bad, not good
## 156                          Good
## 157                          Good
## 158                          Good
## 159             Not bad, not good
## 160             Not bad, not good
## 161             Not bad, not good
## 162                           Bad
## 163                    Don't Know
## 164                    Don't Know
## 165                          Good
## 166             Not bad, not good
## 167                          Good
## 168             Not bad, not good
## 169             Not bad, not good
## 170             Not bad, not good
## 171             Not bad, not good
## 172             Not bad, not good
## 173             Not bad, not good
## 174             Not bad, not good
## 175             Not bad, not good
## 176             Not bad, not good
## 177                          Good
## 178                           Bad
## 179             Not bad, not good
## 180                          Good
## 181             Not bad, not good
## 182             Not bad, not good
## 183             Not bad, not good
## 184             Not bad, not good
## 185             Not bad, not good
## 186             Not bad, not good
## 187             Not bad, not good
## 188             Not bad, not good
## 189             Not bad, not good
## 190                          Good
## 191             Not bad, not good
## 192             Not bad, not good
## 193             Not bad, not good
## 194             Not bad, not good
## 195             Not bad, not good
## 196             Not bad, not good
## 197             Not bad, not good
## 198             Not bad, not good
## 199             Not bad, not good
## 200             Not bad, not good
## 201             Not bad, not good
## 202                      Very bad
## 203                           Bad
## 204                           Bad
## 205             Not bad, not good
## 206                      Very bad
## 207                      Very bad
## 208                      Very bad
## 209                           Bad
## 210                           Bad
## 211                      Very bad
## 212                      Very bad
## 213                      Very bad
## 214             Not bad, not good
## 215                      Very bad
## 216                      Very bad
## 217                           Bad
## 218                           Bad
## 219                      Very bad
## 220                      Very bad
## 221                           Bad
## 222                           Bad
## 223             Not bad, not good
## 224                      Very bad
## 225                           Bad
## 226             Not bad, not good
## 227             Not bad, not good
## 228             Not bad, not good
## 229             Not bad, not good
## 230             Not bad, not good
## 231                           Bad
## 232                           Bad
## 233                      Very bad
## 234                      Very bad
## 235                      Very bad
## 236                      Very bad
## 237             Not bad, not good
## 238             Not bad, not good
## 239                      Very bad
## 240                      Very bad
## 241                      Very bad
## 242                      Very bad
## 243                      Very bad
## 244                      Very bad
## 245                           Bad
## 246                      Very bad
## 247             Not bad, not good
## 248                           Bad
## 249                      Very bad
## 250             Not bad, not good
## 251                          Good
## 252             Not bad, not good
## 253                          Good
## 254                          Good
## 255                          Good
## 256                           Bad
## 257                          Good
## 258                     Very good
## 259                    Don't Know
## 260                           Bad
## 261                          Good
## 262                          Good
## 263                          Good
## 264                          Good
## 265                           Bad
## 266                          Good
## 267                          Good
## 268                          Good
## 269             Not bad, not good
## 270             Not bad, not good
## 271                          Good
## 272                          Good
## 273                          Good
## 274                     Very good
## 275                          Good
## 276                          Good
## 277                          Good
## 278                          Good
## 279                          <NA>
## 280             Not bad, not good
## 281                          Good
## 282                          Good
## 283                          Good
## 284                           Bad
## 285                          Good
## 286                          Good
## 287             Not bad, not good
## 288                          Good
## 289                          Good
## 290             Not bad, not good
## 291             Not bad, not good
## 292                          Good
## 293             Not bad, not good
## 294             Not bad, not good
## 295                          Good
## 296                          <NA>
## 297                          Good
## 298             Not bad, not good
## 299                          Good
## 300                           Bad
## 302                           Bad
## 303                      Very bad
## 304                      Very bad
## 305                           Bad
## 306                      Very bad
## 307                          Good
## 308                           Bad
## 309             Not bad, not good
## 310                      Very bad
## 311                           Bad
## 312             Not bad, not good
## 313                           Bad
## 314             Not bad, not good
## 315             Not bad, not good
## 316             Not bad, not good
## 317                          Good
## 318                      Very bad
## 319                      Very bad
## 320             Not bad, not good
## 321                           Bad
## 322                          Good
## 323                          Good
## 324                          Good
## 325             Not bad, not good
## 326             Not bad, not good
## 327                          Good
## 328                          Good
## 329             Not bad, not good
## 330                           Bad
## 331                    Don't Know
## 332                     Very good
## 333                     Very good
## 334                    Don't Know
## 335                          Good
## 336                          Good
## 337                     Very good
## 338                           Bad
## 339                           Bad
## 340                           Bad
## 341                           Bad
## 342                      Very bad
## 343             Not bad, not good
## 344                          Good
## 345                      Very bad
## 346             Not bad, not good
## 347                      Very bad
## 348                          Good
## 349                      Very bad
## 350                      Very bad
## 351                      Very bad
## 352             Not bad, not good
## 353                           Bad
## 354             Not bad, not good
## 355             Not bad, not good
## 356             Not bad, not good
## 357             Not bad, not good
## 358             Not bad, not good
## 359             Not bad, not good
## 360                          Good
## 361             Not bad, not good
## 362             Not bad, not good
## 363                           Bad
## 364                           Bad
## 365                           Bad
## 366                           Bad
## 367                           Bad
## 368                           Bad
## 369                           Bad
## 370             Not bad, not good
## 371                           Bad
## 372                           Bad
## 373             Not bad, not good
## 374                           Bad
## 375                           Bad
## 376                           Bad
## 377                           Bad
## 378                           Bad
## 379             Not bad, not good
## 380                           Bad
## 381                           Bad
## 382                           Bad
## 383                           Bad
## 384                           Bad
## 385                           Bad
## 386                           Bad
## 387                           Bad
## 388                           Bad
## 389                           Bad
## 390                           Bad
## 391                           Bad
## 392                           Bad
## 393                           Bad
## 394                           Bad
## 395                           Bad
## 396                           Bad
## 397                           Bad
## 398                           Bad
## 399                           Bad
## 400                           Bad
## 401                           Bad
## 402                      Very bad
## 403                           Bad
## 404                      Very bad
## 405             Not bad, not good
## 406                      Very bad
## 407                      Very bad
## 408                      Very bad
## 409             Not bad, not good
## 410                      Very bad
## 411                      Very bad
## 412                      Very bad
## 413                      Very bad
## 414             Not bad, not good
## 415                      Very bad
## 416                      Very bad
## 417                    Don't Know
## 418                      Very bad
## 419                      Very bad
## 420                          <NA>
## 421                      Very bad
## 422                      Very bad
## 423                          <NA>
## 424                      Very bad
## 425                      Very bad
## 426                           Bad
## 427                           Bad
## 428                          Good
## 429             Not bad, not good
## 430             Not bad, not good
## 431                           Bad
## 432                      Very bad
## 433                      Very bad
## 434                      Very bad
## 435                      Very bad
## 436                      Very bad
## 437                      Very bad
## 438                          <NA>
## 439                           Bad
## 440                           Bad
## 441                           Bad
## 442             Not bad, not good
## 443                           Bad
## 444                           Bad
## 445                           Bad
## 446                           Bad
## 447             Not bad, not good
## 448                           Bad
## 449                      Very bad
## 450                          <NA>
## 451                      Very bad
## 452                           Bad
## 453             Not bad, not good
## 454                      Very bad
## 455             Not bad, not good
## 456                          Good
## 457                           Bad
## 458                      Very bad
## 459                      Very bad
## 460                    Don't Know
## 461                     Very good
## 462                          Good
## 463                           Bad
## 464                      Very bad
## 465                           Bad
## 466                           Bad
## 467             Not bad, not good
## 468                      Very bad
## 469                           Bad
## 470             Not bad, not good
## 471                      Very bad
## 472                      Very bad
## 473                      Very bad
## 474                      Very bad
## 475                           Bad
## 476                      Very bad
## 477                           Bad
## 478                      Very bad
## 479                           Bad
## 480                      Very bad
## 481                           Bad
## 482                      Very bad
## 483                      Very bad
## 484                           Bad
## 485                           Bad
## 486                      Very bad
## 487                           Bad
## 488             Not bad, not good
## 489                           Bad
## 490                      Very bad
## 491             Not bad, not good
## 492             Not bad, not good
## 493                      Very bad
## 494                           Bad
## 495                      Very bad
## 496             Not bad, not good
##      Development.of..Sewage.and.local.sanitation
## 1                                       Very bad
## 2                                       Very bad
## 3                                       Very bad
## 4                                       Very bad
## 5                              Not bad, not good
## 6                              Not bad, not good
## 7                                            Bad
## 8                                       Very bad
## 9                              Not bad, not good
## 10                                           Bad
## 11                                           Bad
## 12                                      Very bad
## 13                                           Bad
## 14                                          Good
## 15                                          Good
## 16                                      Very bad
## 17                             Not bad, not good
## 18                             Not bad, not good
## 19                                           Bad
## 20                             Not bad, not good
## 21                             Not bad, not good
## 22                                      Very bad
## 23                                          Good
## 24                             Not bad, not good
## 25                                           Bad
## 26                             Not bad, not good
## 27                                           Bad
## 28                                           Bad
## 29                                           Bad
## 30                                      Very bad
## 31                                      Very bad
## 32                                    Don't Know
## 33                             Not bad, not good
## 34                                      Very bad
## 35                                      Very bad
## 36                                      Very bad
## 37                                           Bad
## 38                                           Bad
## 39                                           Bad
## 40                                      Very bad
## 41                                      Very bad
## 42                                           Bad
## 43                                           Bad
## 44                                      Very bad
## 45                                      Very bad
## 46                                      Very bad
## 47                                      Very bad
## 48                                           Bad
## 49                                           Bad
## 50                                           Bad
## 51                                          Good
## 52                                    Don't Know
## 53                                          Good
## 54                                           Bad
## 55                                      Very bad
## 56                                          Good
## 57                                          Good
## 58                                          Good
## 59                                          Good
## 60                             Not bad, not good
## 61                                          Good
## 62                                          Good
## 63                             Not bad, not good
## 64                             Not bad, not good
## 65                                          Good
## 66                                          Good
## 67                             Not bad, not good
## 68                             Not bad, not good
## 69                             Not bad, not good
## 70                             Not bad, not good
## 71                             Not bad, not good
## 72                             Not bad, not good
## 73                             Not bad, not good
## 74                             Not bad, not good
## 75                             Not bad, not good
## 76                                          Good
## 77                                          Good
## 78                             Not bad, not good
## 79                             Not bad, not good
## 80                             Not bad, not good
## 81                                          Good
## 82                             Not bad, not good
## 83                                           Bad
## 84                                          Good
## 85                             Not bad, not good
## 86                                          Good
## 87                             Not bad, not good
## 88                                     Very good
## 89                                          Good
## 90                                          Good
## 91                                          Good
## 92                                          Good
## 93                                          Good
## 94                                          Good
## 95                                          Good
## 96                                          Good
## 97                                          Good
## 98                                          Good
## 99                                          Good
## 100                                         Good
## 101                            Not bad, not good
## 102                                          Bad
## 103                                     Very bad
## 104                                          Bad
## 105                                          Bad
## 106                                     Very bad
## 107                                          Bad
## 108                                          Bad
## 109                                     Very bad
## 110                                     Very bad
## 111                                     Very bad
## 112                            Not bad, not good
## 113                                          Bad
## 114                            Not bad, not good
## 115                            Not bad, not good
## 116                                     Very bad
## 117                                          Bad
## 118                                     Very bad
## 119                                          Bad
## 120                                     Very bad
## 121                                         Good
## 122                                          Bad
## 123                                          Bad
## 124                                          Bad
## 125                            Not bad, not good
## 126                                     Very bad
## 127                                     Very bad
## 128                                   Don't Know
## 129                                     Very bad
## 130                            Not bad, not good
## 131                                          Bad
## 132                                          Bad
## 133                                         Good
## 134                                     Very bad
## 135                                     Very bad
## 136                            Not bad, not good
## 137                                     Very bad
## 138                            Not bad, not good
## 139                                          Bad
## 140                                         Good
## 141                                          Bad
## 142                                          Bad
## 143                            Not bad, not good
## 144                                     Very bad
## 145                            Not bad, not good
## 146                                          Bad
## 147                            Not bad, not good
## 148                                          Bad
## 149                            Not bad, not good
## 150                            Not bad, not good
## 151                                          Bad
## 152                            Not bad, not good
## 153                                          Bad
## 154                                   Don't Know
## 155                                          Bad
## 156                                          Bad
## 157                            Not bad, not good
## 158                                          Bad
## 159                            Not bad, not good
## 160                                          Bad
## 161                                         <NA>
## 162                                          Bad
## 163                                   Don't Know
## 164                                   Don't Know
## 165                                          Bad
## 166                                          Bad
## 167                                          Bad
## 168                                          Bad
## 169                                          Bad
## 170                                          Bad
## 171                                          Bad
## 172                                          Bad
## 173                                          Bad
## 174                            Not bad, not good
## 175                                          Bad
## 176                                          Bad
## 177                                          Bad
## 178                                          Bad
## 179                                          Bad
## 180                                          Bad
## 181                                          Bad
## 182                                          Bad
## 183                                          Bad
## 184                                          Bad
## 185                                          Bad
## 186                                          Bad
## 187                                          Bad
## 188                            Not bad, not good
## 189                                          Bad
## 190                                          Bad
## 191                                          Bad
## 192                                          Bad
## 193                                          Bad
## 194                                          Bad
## 195                                          Bad
## 196                                          Bad
## 197                                          Bad
## 198                                          Bad
## 199                                          Bad
## 200                                          Bad
## 201                                         Good
## 202                                          Bad
## 203                                     Very bad
## 204                                          Bad
## 205                            Not bad, not good
## 206                            Not bad, not good
## 207                                     Very bad
## 208                                     Very bad
## 209                                          Bad
## 210                                     Very bad
## 211                                     Very bad
## 212                                     Very bad
## 213                                          Bad
## 214                            Not bad, not good
## 215                                     Very bad
## 216                                     Very bad
## 217                            Not bad, not good
## 218                                     Very bad
## 219                                     Very bad
## 220                                          Bad
## 221                            Not bad, not good
## 222                                     Very bad
## 223                                          Bad
## 224                                          Bad
## 225                            Not bad, not good
## 226                                         Good
## 227                            Not bad, not good
## 228                                          Bad
## 229                                         Good
## 230                                         Good
## 231                                     Very bad
## 232                                     Very bad
## 233                                     Very bad
## 234                                     Very bad
## 235                                     Very bad
## 236                                          Bad
## 237                                         Good
## 238                                         Good
## 239                                     Very bad
## 240                                     Very bad
## 241                                     Very bad
## 242                                     Very bad
## 243                                     Very bad
## 244                                     Very bad
## 245                                          Bad
## 246                                     Very bad
## 247                                         Good
## 248                            Not bad, not good
## 249                                     Very bad
## 250                                     Very bad
## 251                            Not bad, not good
## 252                                         Good
## 253                            Not bad, not good
## 254                                         Good
## 255                                         Good
## 256                            Not bad, not good
## 257                                         Good
## 258                                    Very good
## 259                                    Very good
## 260                                          Bad
## 261                                         Good
## 262                                         Good
## 263                                         Good
## 264                                         Good
## 265                                          Bad
## 266                                         Good
## 267                                    Very good
## 268                                         Good
## 269                                          Bad
## 270                                         Good
## 271                            Not bad, not good
## 272                                         Good
## 273                                         Good
## 274                            Not bad, not good
## 275                            Not bad, not good
## 276                            Not bad, not good
## 277                                         Good
## 278                                         Good
## 279                                         <NA>
## 280                            Not bad, not good
## 281                                         Good
## 282                                         Good
## 283                                         Good
## 284                            Not bad, not good
## 285                                         Good
## 286                                         Good
## 287                            Not bad, not good
## 288                                         Good
## 289                            Not bad, not good
## 290                            Not bad, not good
## 291                            Not bad, not good
## 292                                         Good
## 293                            Not bad, not good
## 294                                          Bad
## 295                                         Good
## 296                            Not bad, not good
## 297                                          Bad
## 298                            Not bad, not good
## 299                                         Good
## 300                            Not bad, not good
## 302                                          Bad
## 303                                     Very bad
## 304                                     Very bad
## 305                                          Bad
## 306                                     Very bad
## 307                                          Bad
## 308                                          Bad
## 309                            Not bad, not good
## 310                                     Very bad
## 311                                          Bad
## 312                            Not bad, not good
## 313                                          Bad
## 314                            Not bad, not good
## 315                            Not bad, not good
## 316                            Not bad, not good
## 317                                     Very bad
## 318                                     Very bad
## 319                                     Very bad
## 320                                          Bad
## 321                                          Bad
## 322                                         Good
## 323                                         Good
## 324                                   Don't Know
## 325                            Not bad, not good
## 326                            Not bad, not good
## 327                                         Good
## 328                                          Bad
## 329                                          Bad
## 330                            Not bad, not good
## 331                                    Very good
## 332                                   Don't Know
## 333                                   Don't Know
## 334                                   Don't Know
## 335                            Not bad, not good
## 336                            Not bad, not good
## 337                                   Don't Know
## 338                            Not bad, not good
## 339                                          Bad
## 340                                          Bad
## 341                                          Bad
## 342                                     Very bad
## 343                            Not bad, not good
## 344                                          Bad
## 345                                     Very bad
## 346                            Not bad, not good
## 347                                     Very bad
## 348                                         Good
## 349                                          Bad
## 350                                     Very bad
## 351                                     Very bad
## 352                                   Don't Know
## 353                                          Bad
## 354                            Not bad, not good
## 355                            Not bad, not good
## 356                            Not bad, not good
## 357                            Not bad, not good
## 358                            Not bad, not good
## 359                            Not bad, not good
## 360                                         Good
## 361                            Not bad, not good
## 362                            Not bad, not good
## 363                            Not bad, not good
## 364                                          Bad
## 365                            Not bad, not good
## 366                                          Bad
## 367                            Not bad, not good
## 368                            Not bad, not good
## 369                                          Bad
## 370                            Not bad, not good
## 371                            Not bad, not good
## 372                                          Bad
## 373                            Not bad, not good
## 374                                          Bad
## 375                            Not bad, not good
## 376                            Not bad, not good
## 377                                          Bad
## 378                            Not bad, not good
## 379                            Not bad, not good
## 380                            Not bad, not good
## 381                            Not bad, not good
## 382                            Not bad, not good
## 383                            Not bad, not good
## 384                            Not bad, not good
## 385                            Not bad, not good
## 386                            Not bad, not good
## 387                            Not bad, not good
## 388                            Not bad, not good
## 389                            Not bad, not good
## 390                                          Bad
## 391                            Not bad, not good
## 392                            Not bad, not good
## 393                            Not bad, not good
## 394                            Not bad, not good
## 395                                          Bad
## 396                            Not bad, not good
## 397                                          Bad
## 398                            Not bad, not good
## 399                            Not bad, not good
## 400                            Not bad, not good
## 401                            Not bad, not good
## 402                                     Very bad
## 403                                          Bad
## 404                                     Very bad
## 405                            Not bad, not good
## 406                                     Very bad
## 407                                     Very bad
## 408                                     Very bad
## 409                            Not bad, not good
## 410                                     Very bad
## 411                                     Very bad
## 412                                     Very bad
## 413                                     Very bad
## 414                            Not bad, not good
## 415                                     Very bad
## 416                                     Very bad
## 417                                   Don't Know
## 418                                     Very bad
## 419                                     Very bad
## 420                                         <NA>
## 421                                     Very bad
## 422                                     Very bad
## 423                                         <NA>
## 424                                     Very bad
## 425                                     Very bad
## 426                                          Bad
## 427                                          Bad
## 428                                         Good
## 429                            Not bad, not good
## 430                            Not bad, not good
## 431                                          Bad
## 432                                     Very bad
## 433                                     Very bad
## 434                                     Very bad
## 435                                     Very bad
## 436                                     Very bad
## 437                                     Very bad
## 438                            Not bad, not good
## 439                                          Bad
## 440                                          Bad
## 441                                          Bad
## 442                                         <NA>
## 443                                          Bad
## 444                                          Bad
## 445                                          Bad
## 446                                          Bad
## 447                            Not bad, not good
## 448                                          Bad
## 449                                     Very bad
## 450                            Not bad, not good
## 451                                     Very bad
## 452                                          Bad
## 453                                         <NA>
## 454                                     Very bad
## 455                                          Bad
## 456                                         Good
## 457                                          Bad
## 458                                     Very bad
## 459                                     Very bad
## 460                            Not bad, not good
## 461                                    Very good
## 462                            Not bad, not good
## 463                            Not bad, not good
## 464                                          Bad
## 465                            Not bad, not good
## 466                                     Very bad
## 467                            Not bad, not good
## 468                                     Very bad
## 469                                          Bad
## 470                                   Don't Know
## 471                                     Very bad
## 472                                     Very bad
## 473                                     Very bad
## 474                                     Very bad
## 475                                          Bad
## 476                                     Very bad
## 477                                          Bad
## 478                                     Very bad
## 479                                          Bad
## 480                                     Very bad
## 481                                          Bad
## 482                                     Very bad
## 483                                     Very bad
## 484                                          Bad
## 485                                          Bad
## 486                                          Bad
## 487                                          Bad
## 488                            Not bad, not good
## 489                                          Bad
## 490                                          Bad
## 491                            Not bad, not good
## 492                            Not bad, not good
## 493                                     Very bad
## 494                                          Bad
## 495                                     Very bad
## 496                            Not bad, not good
##      Development.of..Accessibility.of.local.markets
## 1                                          Very bad
## 2                                 Not bad, not good
## 3                                              Good
## 4                                          Very bad
## 5                                 Not bad, not good
## 6                                              Good
## 7                                 Not bad, not good
## 8                                 Not bad, not good
## 9                                         Very good
## 10                                             <NA>
## 11                                             Good
## 12                                Not bad, not good
## 13                                             Good
## 14                                              Bad
## 15                                Not bad, not good
## 16                                              Bad
## 17                                Not bad, not good
## 18                                             Good
## 19                                Not bad, not good
## 20                                             Good
## 21                                Not bad, not good
## 22                                              Bad
## 23                                              Bad
## 24                                              Bad
## 25                                Not bad, not good
## 26                                       Don't Know
## 27                                              Bad
## 28                                       Don't Know
## 29                                       Don't Know
## 30                                Not bad, not good
## 31                                              Bad
## 32                                       Don't Know
## 33                                              Bad
## 34                                              Bad
## 35                                              Bad
## 36                                              Bad
## 37                                              Bad
## 38                                Not bad, not good
## 39                                Not bad, not good
## 40                                Not bad, not good
## 41                                Not bad, not good
## 42                                Not bad, not good
## 43                                Not bad, not good
## 44                                Not bad, not good
## 45                                Not bad, not good
## 46                                Not bad, not good
## 47                                              Bad
## 48                                Not bad, not good
## 49                                Not bad, not good
## 50                                Not bad, not good
## 51                                             Good
## 52                                       Don't Know
## 53                                Not bad, not good
## 54                                Not bad, not good
## 55                                              Bad
## 56                                              Bad
## 57                                             Good
## 58                                Not bad, not good
## 59                                              Bad
## 60                                             Good
## 61                                             Good
## 62                                Not bad, not good
## 63                                Not bad, not good
## 64                                Not bad, not good
## 65                                Not bad, not good
## 66                                Not bad, not good
## 67                                Not bad, not good
## 68                                Not bad, not good
## 69                                Not bad, not good
## 70                                Not bad, not good
## 71                                             Good
## 72                                Not bad, not good
## 73                                Not bad, not good
## 74                                             Good
## 75                                Not bad, not good
## 76                                Not bad, not good
## 77                                Not bad, not good
## 78                                Not bad, not good
## 79                                Not bad, not good
## 80                                             Good
## 81                                Not bad, not good
## 82                                Not bad, not good
## 83                                Not bad, not good
## 84                                Not bad, not good
## 85                                Not bad, not good
## 86                                             Good
## 87                                Not bad, not good
## 88                                             Good
## 89                                             Good
## 90                                Not bad, not good
## 91                                             Good
## 92                                             Good
## 93                                             Good
## 94                                             Good
## 95                                             Good
## 96                                             Good
## 97                                             Good
## 98                                             Good
## 99                                             Good
## 100                               Not bad, not good
## 101                                            Good
## 102                               Not bad, not good
## 103                                             Bad
## 104                               Not bad, not good
## 105                                             Bad
## 106                               Not bad, not good
## 107                                        Very bad
## 108                                            Good
## 109                               Not bad, not good
## 110                                        Very bad
## 111                                            Good
## 112                               Not bad, not good
## 113                                            Good
## 114                                        Very bad
## 115                                             Bad
## 116                                        Very bad
## 117                                             Bad
## 118                                        Very bad
## 119                                        Very bad
## 120                                        Very bad
## 121                                             Bad
## 122                               Not bad, not good
## 123                                        Very bad
## 124                                        Very bad
## 125                               Not bad, not good
## 126                                        Very bad
## 127                                        Very bad
## 128                                             Bad
## 129                                        Very bad
## 130                               Not bad, not good
## 131                                        Very bad
## 132                                        Very bad
## 133                                        Very bad
## 134                                        Very bad
## 135                                        Very bad
## 136                               Not bad, not good
## 137                                            Good
## 138                                             Bad
## 139                               Not bad, not good
## 140                                        Very bad
## 141                                             Bad
## 142                                             Bad
## 143                                             Bad
## 144                                        Very bad
## 145                               Not bad, not good
## 146                                             Bad
## 147                               Not bad, not good
## 148                                            Good
## 149                                        Very bad
## 150                                             Bad
## 151                                             Bad
## 152                                             Bad
## 153                               Not bad, not good
## 154                                            Good
## 155                               Not bad, not good
## 156                                             Bad
## 157                               Not bad, not good
## 158                                             Bad
## 159                                             Bad
## 160                                             Bad
## 161                               Not bad, not good
## 162                                      Don't Know
## 163                                      Don't Know
## 164                                            Good
## 165                                             Bad
## 166                                             Bad
## 167                                             Bad
## 168                                             Bad
## 169                                             Bad
## 170                                             Bad
## 171                                      Don't Know
## 172                                             Bad
## 173                                             Bad
## 174                               Not bad, not good
## 175                                             Bad
## 176                                             Bad
## 177                                             Bad
## 178                               Not bad, not good
## 179                                             Bad
## 180                               Not bad, not good
## 181                                             Bad
## 182                                             Bad
## 183                                             Bad
## 184                                             Bad
## 185                                             Bad
## 186                                             Bad
## 187                                             Bad
## 188                                             Bad
## 189                                             Bad
## 190                                             Bad
## 191                                             Bad
## 192                               Not bad, not good
## 193                                             Bad
## 194                                             Bad
## 195                                             Bad
## 196                               Not bad, not good
## 197                                             Bad
## 198                                             Bad
## 199                                             Bad
## 200                               Not bad, not good
## 201                                             Bad
## 202                               Not bad, not good
## 203                               Not bad, not good
## 204                               Not bad, not good
## 205                                             Bad
## 206                               Not bad, not good
## 207                                        Very bad
## 208                                             Bad
## 209                               Not bad, not good
## 210                                             Bad
## 211                               Not bad, not good
## 212                               Not bad, not good
## 213                               Not bad, not good
## 214                               Not bad, not good
## 215                               Not bad, not good
## 216                               Not bad, not good
## 217                                             Bad
## 218                               Not bad, not good
## 219                               Not bad, not good
## 220                               Not bad, not good
## 221                               Not bad, not good
## 222                                             Bad
## 223                               Not bad, not good
## 224                                            Good
## 225                               Not bad, not good
## 226                               Not bad, not good
## 227                                             Bad
## 228                                            Good
## 229                                            Good
## 230                                             Bad
## 231                               Not bad, not good
## 232                                             Bad
## 233                                        Very bad
## 234                               Not bad, not good
## 235                                        Very bad
## 236                                             Bad
## 237                               Not bad, not good
## 238                               Not bad, not good
## 239                               Not bad, not good
## 240                               Not bad, not good
## 241                               Not bad, not good
## 242                               Not bad, not good
## 243                               Not bad, not good
## 244                               Not bad, not good
## 245                                             Bad
## 246                                             Bad
## 247                               Not bad, not good
## 248                               Not bad, not good
## 249                                             Bad
## 250                               Not bad, not good
## 251                                             Bad
## 252                               Not bad, not good
## 253                                             Bad
## 254                                             Bad
## 255                                            Good
## 256                               Not bad, not good
## 257                                            Good
## 258                                            Good
## 259                                            Good
## 260                                            Good
## 261                                            Good
## 262                               Not bad, not good
## 263                                             Bad
## 264                                            Good
## 265                                            Good
## 266                                       Very good
## 267                               Not bad, not good
## 268                                            Good
## 269                                            Good
## 270                                            Good
## 271                               Not bad, not good
## 272                                            Good
## 273                                            Good
## 274                                       Very good
## 275                               Not bad, not good
## 276                               Not bad, not good
## 277                                            Good
## 278                                             Bad
## 279                                            <NA>
## 280                               Not bad, not good
## 281                                            Good
## 282                               Not bad, not good
## 283                                            Good
## 284                                             Bad
## 285                                            Good
## 286                               Not bad, not good
## 287                               Not bad, not good
## 288                                            Good
## 289                                             Bad
## 290                                            Good
## 291                                            Good
## 292                                             Bad
## 293                                            Good
## 294                                            Good
## 295                                             Bad
## 296                                            Good
## 297                                            Good
## 298                                            Good
## 299                                            Good
## 300                                            Good
## 302                                            Good
## 303                                             Bad
## 304                                            Good
## 305                                             Bad
## 306                               Not bad, not good
## 307                                             Bad
## 308                                            Good
## 309                               Not bad, not good
## 310                                      Don't Know
## 311                               Not bad, not good
## 312                               Not bad, not good
## 313                                             Bad
## 314                                            Good
## 315                                            Good
## 316                               Not bad, not good
## 317                                        Very bad
## 318                                        Very bad
## 319                                             Bad
## 320                               Not bad, not good
## 321                               Not bad, not good
## 322                                            Good
## 323                                            Good
## 324                                            Good
## 325                                            Good
## 326                                            Good
## 327                                            Good
## 328                                            Good
## 329                                             Bad
## 330                                       Very good
## 331                                             Bad
## 332                                             Bad
## 333                                        Very bad
## 334                                        Very bad
## 335                               Not bad, not good
## 336                                            Good
## 337                                        Very bad
## 338                                             Bad
## 339                               Not bad, not good
## 340                                             Bad
## 341                                            Good
## 342                                             Bad
## 343                                            Good
## 344                                             Bad
## 345                               Not bad, not good
## 346                                            Good
## 347                                             Bad
## 348                                            Good
## 349                               Not bad, not good
## 350                                        Very bad
## 351                               Not bad, not good
## 352                               Not bad, not good
## 353                               Not bad, not good
## 354                               Not bad, not good
## 355                               Not bad, not good
## 356                               Not bad, not good
## 357                               Not bad, not good
## 358                               Not bad, not good
## 359                               Not bad, not good
## 360                                            Good
## 361                               Not bad, not good
## 362                               Not bad, not good
## 363                               Not bad, not good
## 364                               Not bad, not good
## 365                               Not bad, not good
## 366                               Not bad, not good
## 367                               Not bad, not good
## 368                               Not bad, not good
## 369                               Not bad, not good
## 370                               Not bad, not good
## 371                               Not bad, not good
## 372                                             Bad
## 373                               Not bad, not good
## 374                                             Bad
## 375                               Not bad, not good
## 376                               Not bad, not good
## 377                               Not bad, not good
## 378                                            Good
## 379                               Not bad, not good
## 380                               Not bad, not good
## 381                               Not bad, not good
## 382                               Not bad, not good
## 383                               Not bad, not good
## 384                               Not bad, not good
## 385                               Not bad, not good
## 386                               Not bad, not good
## 387                               Not bad, not good
## 388                               Not bad, not good
## 389                               Not bad, not good
## 390                                             Bad
## 391                               Not bad, not good
## 392                               Not bad, not good
## 393                               Not bad, not good
## 394                               Not bad, not good
## 395                               Not bad, not good
## 396                               Not bad, not good
## 397                               Not bad, not good
## 398                               Not bad, not good
## 399                                      Don't Know
## 400                               Not bad, not good
## 401                               Not bad, not good
## 402                                            Good
## 403                               Not bad, not good
## 404                                        Very bad
## 405                               Not bad, not good
## 406                               Not bad, not good
## 407                               Not bad, not good
## 408                               Not bad, not good
## 409                               Not bad, not good
## 410                               Not bad, not good
## 411                               Not bad, not good
## 412                               Not bad, not good
## 413                               Not bad, not good
## 414                               Not bad, not good
## 415                               Not bad, not good
## 416                                            Good
## 417                                            <NA>
## 418                                            Good
## 419                               Not bad, not good
## 420                                            <NA>
## 421                                            Good
## 422                                            Good
## 423                                            <NA>
## 424                               Not bad, not good
## 425                                       Very good
## 426                                       Very good
## 427                                            Good
## 428                                            Good
## 429                                       Very good
## 430                                            Good
## 431                                       Very good
## 432                                            Good
## 433                                            Good
## 434                                       Very good
## 435                               Not bad, not good
## 436                                       Very good
## 437                                            Good
## 438                               Not bad, not good
## 439                                       Very good
## 440                                            Good
## 441                                            Good
## 442                               Not bad, not good
## 443                                            Good
## 444                               Not bad, not good
## 445                                            Good
## 446                                            Good
## 447                               Not bad, not good
## 448                                            Good
## 449                                       Very good
## 450                                            <NA>
## 451                                       Very good
## 452                                            Good
## 453                                            Good
## 454                                        Very bad
## 455                                             Bad
## 456                                            Good
## 457                               Not bad, not good
## 458                                             Bad
## 459                                            <NA>
## 460                               Not bad, not good
## 461                                      Don't Know
## 462                                             Bad
## 463                               Not bad, not good
## 464                               Not bad, not good
## 465                               Not bad, not good
## 466                                        Very bad
## 467                                            Good
## 468                                             Bad
## 469                                             Bad
## 470                                        Very bad
## 471                                             Bad
## 472                                        Very bad
## 473                                             Bad
## 474                                             Bad
## 475                               Not bad, not good
## 476                                      Don't Know
## 477                               Not bad, not good
## 478                                             Bad
## 479                                      Don't Know
## 480                                             Bad
## 481                                             Bad
## 482                                        Very bad
## 483                                             Bad
## 484                                             Bad
## 485                               Not bad, not good
## 486                               Not bad, not good
## 487                               Not bad, not good
## 488                               Not bad, not good
## 489                                            Good
## 490                               Not bad, not good
## 491                                             Bad
## 492                               Not bad, not good
## 493                                             Bad
## 494                               Not bad, not good
## 495                                        Very bad
## 496                                             Bad
##      Development.of..Public.transportation
## 1                        Not bad, not good
## 2                        Not bad, not good
## 3                                     Good
## 4                                 Very bad
## 5                        Not bad, not good
## 6                                     Good
## 7                                      Bad
## 8                        Not bad, not good
## 9                                     Good
## 10                                    <NA>
## 11                                    Good
## 12                       Not bad, not good
## 13                       Not bad, not good
## 14                       Not bad, not good
## 15                                     Bad
## 16                                     Bad
## 17                                    Good
## 18                                    Good
## 19                                     Bad
## 20                                    Good
## 21                       Not bad, not good
## 22                                     Bad
## 23                                     Bad
## 24                       Not bad, not good
## 25                       Not bad, not good
## 26                       Not bad, not good
## 27                       Not bad, not good
## 28                                    Good
## 29                                    Good
## 30                       Not bad, not good
## 31                       Not bad, not good
## 32                              Don't Know
## 33                       Not bad, not good
## 34                                     Bad
## 35                                     Bad
## 36                                     Bad
## 37                                     Bad
## 38                       Not bad, not good
## 39                               Very good
## 40                       Not bad, not good
## 41                       Not bad, not good
## 42                       Not bad, not good
## 43                       Not bad, not good
## 44                       Not bad, not good
## 45                       Not bad, not good
## 46                                     Bad
## 47                                     Bad
## 48                       Not bad, not good
## 49                                     Bad
## 50                       Not bad, not good
## 51                              Don't Know
## 52                              Don't Know
## 53                       Not bad, not good
## 54                                     Bad
## 55                                     Bad
## 56                       Not bad, not good
## 57                                    Good
## 58                       Not bad, not good
## 59                                     Bad
## 60                                    Good
## 61                                    Good
## 62                       Not bad, not good
## 63                                    Good
## 64                       Not bad, not good
## 65                       Not bad, not good
## 66                                    Good
## 67                                    Good
## 68                       Not bad, not good
## 69                                     Bad
## 70                       Not bad, not good
## 71                       Not bad, not good
## 72                       Not bad, not good
## 73                       Not bad, not good
## 74                       Not bad, not good
## 75                       Not bad, not good
## 76                       Not bad, not good
## 77                       Not bad, not good
## 78                       Not bad, not good
## 79                       Not bad, not good
## 80                                    Good
## 81                       Not bad, not good
## 82                                    Good
## 83                       Not bad, not good
## 84                                    Good
## 85                       Not bad, not good
## 86                                    Good
## 87                       Not bad, not good
## 88                               Very good
## 89                       Not bad, not good
## 90                                    Good
## 91                                    Good
## 92                                    Good
## 93                                    Good
## 94                                    Good
## 95                                    Good
## 96                                    Good
## 97                                    Good
## 98                                    Good
## 99                                    Good
## 100                      Not bad, not good
## 101                      Not bad, not good
## 102                               Very bad
## 103                      Not bad, not good
## 104                      Not bad, not good
## 105                                    Bad
## 106                      Not bad, not good
## 107                               Very bad
## 108                      Not bad, not good
## 109                      Not bad, not good
## 110                                    Bad
## 111                                   Good
## 112                      Not bad, not good
## 113                                    Bad
## 114                               Very bad
## 115                                   Good
## 116                               Very bad
## 117                               Very bad
## 118                               Very bad
## 119                               Very bad
## 120                               Very bad
## 121                                    Bad
## 122                                   Good
## 123                               Very bad
## 124                                    Bad
## 125                                    Bad
## 126                               Very bad
## 127                               Very bad
## 128                               Very bad
## 129                                    Bad
## 130                      Not bad, not good
## 131                                    Bad
## 132                               Very bad
## 133                               Very bad
## 134                               Very bad
## 135                               Very bad
## 136                      Not bad, not good
## 137                      Not bad, not good
## 138                                    Bad
## 139                                    Bad
## 140                               Very bad
## 141                                    Bad
## 142                                    Bad
## 143                      Not bad, not good
## 144                               Very bad
## 145                                    Bad
## 146                                    Bad
## 147                      Not bad, not good
## 148                                    Bad
## 149                               Very bad
## 150                                   Good
## 151                                   Good
## 152                                    Bad
## 153                             Don't Know
## 154                               Very bad
## 155                             Don't Know
## 156                                   Good
## 157                             Don't Know
## 158                             Don't Know
## 159                                    Bad
## 160                             Don't Know
## 161                                   Good
## 162                             Don't Know
## 163                             Don't Know
## 164                             Don't Know
## 165                             Don't Know
## 166                             Don't Know
## 167                             Don't Know
## 168                             Don't Know
## 169                             Don't Know
## 170                             Don't Know
## 171                             Don't Know
## 172                             Don't Know
## 173                             Don't Know
## 174                                   Good
## 175                             Don't Know
## 176                             Don't Know
## 177                             Don't Know
## 178                             Don't Know
## 179                             Don't Know
## 180                             Don't Know
## 181                             Don't Know
## 182                             Don't Know
## 183                             Don't Know
## 184                             Don't Know
## 185                             Don't Know
## 186                             Don't Know
## 187                             Don't Know
## 188                             Don't Know
## 189                             Don't Know
## 190                             Don't Know
## 191                             Don't Know
## 192                             Don't Know
## 193                             Don't Know
## 194                             Don't Know
## 195                             Don't Know
## 196                             Don't Know
## 197                             Don't Know
## 198                             Don't Know
## 199                                    Bad
## 200                             Don't Know
## 201                               Very bad
## 202                      Not bad, not good
## 203                                    Bad
## 204                                   Good
## 205                                    Bad
## 206                      Not bad, not good
## 207                                    Bad
## 208                      Not bad, not good
## 209                      Not bad, not good
## 210                      Not bad, not good
## 211                      Not bad, not good
## 212                                    Bad
## 213                      Not bad, not good
## 214                                   Good
## 215                      Not bad, not good
## 216                      Not bad, not good
## 217                      Not bad, not good
## 218                                    Bad
## 219                               Very bad
## 220                                    Bad
## 221                                    Bad
## 222                                    Bad
## 223                                    Bad
## 224                      Not bad, not good
## 225                      Not bad, not good
## 226                               Very bad
## 227                                   Good
## 228                                   Good
## 229                                    Bad
## 230                      Not bad, not good
## 231                                    Bad
## 232                                    Bad
## 233                                    Bad
## 234                                    Bad
## 235                               Very bad
## 236                      Not bad, not good
## 237                                    Bad
## 238                      Not bad, not good
## 239                                    Bad
## 240                                    Bad
## 241                                    Bad
## 242                                    Bad
## 243                                    Bad
## 244                                    Bad
## 245                                    Bad
## 246                               Very bad
## 247                                    Bad
## 248                                    Bad
## 249                      Not bad, not good
## 250                                    Bad
## 251                                    Bad
## 252                      Not bad, not good
## 253                                    Bad
## 254                                    Bad
## 255                                   Good
## 256                      Not bad, not good
## 257                                    Bad
## 258                                   Good
## 259                      Not bad, not good
## 260                                   Good
## 261                      Not bad, not good
## 262                                   Good
## 263                                   Good
## 264                      Not bad, not good
## 265                                   Good
## 266                              Very good
## 267                              Very good
## 268                                   Good
## 269                                   Good
## 270                                   Good
## 271                      Not bad, not good
## 272                                   Good
## 273                                   Good
## 274                      Not bad, not good
## 275                                   Good
## 276                                   Good
## 277                                   Good
## 278                                    Bad
## 279                                   <NA>
## 280                                   Good
## 281                                   Good
## 282                      Not bad, not good
## 283                                   Good
## 284                      Not bad, not good
## 285                                   Good
## 286                      Not bad, not good
## 287                      Not bad, not good
## 288                                   Good
## 289                                    Bad
## 290                                   Good
## 291                      Not bad, not good
## 292                                    Bad
## 293                                   Good
## 294                                   Good
## 295                                    Bad
## 296                                   Good
## 297                                   Good
## 298                                   Good
## 299                                   Good
## 300                      Not bad, not good
## 302                                   Good
## 303                      Not bad, not good
## 304                      Not bad, not good
## 305                                    Bad
## 306                      Not bad, not good
## 307                                    Bad
## 308                                   Good
## 309                      Not bad, not good
## 310                                    Bad
## 311                      Not bad, not good
## 312                      Not bad, not good
## 313                                    Bad
## 314                      Not bad, not good
## 315                      Not bad, not good
## 316                      Not bad, not good
## 317                      Not bad, not good
## 318                                    Bad
## 319                                    Bad
## 320                      Not bad, not good
## 321                                    Bad
## 322                                    Bad
## 323                                   Good
## 324                                   Good
## 325                      Not bad, not good
## 326                      Not bad, not good
## 327                                   Good
## 328                                    Bad
## 329                                   Good
## 330                                    Bad
## 331                                   Good
## 332                      Not bad, not good
## 333                                    Bad
## 334                                    Bad
## 335                                   Good
## 336                              Very good
## 337                                    Bad
## 338                              Very good
## 339                               Very bad
## 340                                    Bad
## 341                                   Good
## 342                               Very bad
## 343                                   Good
## 344                      Not bad, not good
## 345                      Not bad, not good
## 346                      Not bad, not good
## 347                                    Bad
## 348                      Not bad, not good
## 349                      Not bad, not good
## 350                      Not bad, not good
## 351                      Not bad, not good
## 352                      Not bad, not good
## 353                                    Bad
## 354                                   Good
## 355                      Not bad, not good
## 356                      Not bad, not good
## 357                      Not bad, not good
## 358                      Not bad, not good
## 359                                   Good
## 360                                   Good
## 361                      Not bad, not good
## 362                      Not bad, not good
## 363                      Not bad, not good
## 364                      Not bad, not good
## 365                      Not bad, not good
## 366                      Not bad, not good
## 367                      Not bad, not good
## 368                      Not bad, not good
## 369                                    Bad
## 370                      Not bad, not good
## 371                      Not bad, not good
## 372                                    Bad
## 373                      Not bad, not good
## 374                                   Good
## 375                                    Bad
## 376                      Not bad, not good
## 377                      Not bad, not good
## 378                                   Good
## 379                      Not bad, not good
## 380                      Not bad, not good
## 381                      Not bad, not good
## 382                      Not bad, not good
## 383                      Not bad, not good
## 384                      Not bad, not good
## 385                      Not bad, not good
## 386                      Not bad, not good
## 387                      Not bad, not good
## 388                      Not bad, not good
## 389                      Not bad, not good
## 390                                    Bad
## 391                      Not bad, not good
## 392                      Not bad, not good
## 393                      Not bad, not good
## 394                      Not bad, not good
## 395                      Not bad, not good
## 396                      Not bad, not good
## 397                      Not bad, not good
## 398                      Not bad, not good
## 399                      Not bad, not good
## 400                      Not bad, not good
## 401                      Not bad, not good
## 402                                   Good
## 403                                   Good
## 404                               Very bad
## 405                      Not bad, not good
## 406                      Not bad, not good
## 407                      Not bad, not good
## 408                                   Good
## 409                      Not bad, not good
## 410                      Not bad, not good
## 411                                   Good
## 412                      Not bad, not good
## 413                      Not bad, not good
## 414                                   Good
## 415                      Not bad, not good
## 416                                   Good
## 417                                   <NA>
## 418                                   Good
## 419                                   Good
## 420                                   <NA>
## 421                                   Good
## 422                                   Good
## 423                                   <NA>
## 424                              Very good
## 425                              Very good
## 426                              Very good
## 427                                   Good
## 428                                   Good
## 429                              Very good
## 430                                   Good
## 431                              Very good
## 432                              Very good
## 433                                   Good
## 434                              Very good
## 435                              Very good
## 436                              Very good
## 437                                   Good
## 438                                   Good
## 439                              Very good
## 440                              Very good
## 441                                   Good
## 442                      Not bad, not good
## 443                                   Good
## 444                              Very good
## 445                              Very good
## 446                                   Good
## 447                      Not bad, not good
## 448                                   Good
## 449                              Very good
## 450                                   <NA>
## 451                              Very good
## 452                              Very good
## 453                                   Good
## 454                                    Bad
## 455                                    Bad
## 456                                   Good
## 457                               Very bad
## 458                                    Bad
## 459                               Very bad
## 460                                    Bad
## 461                      Not bad, not good
## 462                                   Good
## 463                               Very bad
## 464                               Very bad
## 465                      Not bad, not good
## 466                                    Bad
## 467                                   Good
## 468                                    Bad
## 469                                    Bad
## 470                                    Bad
## 471                                    Bad
## 472                                    Bad
## 473                      Not bad, not good
## 474                                    Bad
## 475                                   Good
## 476                                   Good
## 477                                   Good
## 478                                    Bad
## 479                      Not bad, not good
## 480                                    Bad
## 481                                    Bad
## 482                               Very bad
## 483                                    Bad
## 484                               Very bad
## 485                      Not bad, not good
## 486                                    Bad
## 487                                    Bad
## 488                                    Bad
## 489                                   Good
## 490                                    Bad
## 491                      Not bad, not good
## 492                                   Good
## 493                               Very bad
## 494                      Not bad, not good
## 495                               Very bad
## 496                                    Bad
##      Development.of..Banking.Services
## 1                                Good
## 2                                 Bad
## 3                                Good
## 4                   Not bad, not good
## 5                                Good
## 6                           Very good
## 7                                 Bad
## 8                                Good
## 9                                Good
## 10                               <NA>
## 11                          Very good
## 12                               Good
## 13                               Good
## 14                                Bad
## 15                  Not bad, not good
## 16                                Bad
## 17                               Good
## 18                               Good
## 19                               Good
## 20                               Good
## 21                          Very good
## 22                  Not bad, not good
## 23                  Not bad, not good
## 24                                Bad
## 25                  Not bad, not good
## 26                  Not bad, not good
## 27                                Bad
## 28                               Good
## 29                               Good
## 30                               Good
## 31                               Good
## 32                               Good
## 33                               Good
## 34                  Not bad, not good
## 35                  Not bad, not good
## 36                  Not bad, not good
## 37                  Not bad, not good
## 38                  Not bad, not good
## 39                               <NA>
## 40                  Not bad, not good
## 41                               Good
## 42                  Not bad, not good
## 43                               Good
## 44                               Good
## 45                               Good
## 46                                Bad
## 47                  Not bad, not good
## 48                               Good
## 49                               Good
## 50                  Not bad, not good
## 51                               Good
## 52                               Good
## 53                               Good
## 54                  Not bad, not good
## 55                  Not bad, not good
## 56                               Good
## 57                               Good
## 58                               Good
## 59                         Don't Know
## 60                                Bad
## 61                               Good
## 62                               Good
## 63                               Good
## 64                               Good
## 65                               Good
## 66                               Good
## 67                               Good
## 68                               Good
## 69                               Good
## 70                               Good
## 71                               Good
## 72                  Not bad, not good
## 73                               Good
## 74                               Good
## 75                               Good
## 76                               Good
## 77                               Good
## 78                               Good
## 79                               Good
## 80                               Good
## 81                               Good
## 82                               Good
## 83                               Good
## 84                               Good
## 85                               Good
## 86                  Not bad, not good
## 87                               Good
## 88                          Very good
## 89                               Good
## 90                               Good
## 91                               Good
## 92                               Good
## 93                               Good
## 94                               Good
## 95                               Good
## 96                               Good
## 97                               Good
## 98                               Good
## 99                               Good
## 100                              Good
## 101                              Good
## 102                 Not bad, not good
## 103                 Not bad, not good
## 104                 Not bad, not good
## 105                              Good
## 106                              Good
## 107                              Good
## 108                         Very good
## 109                 Not bad, not good
## 110                              Good
## 111                         Very good
## 112                              Good
## 113                         Very good
## 114                         Very good
## 115                 Not bad, not good
## 116                         Very good
## 117                          Very bad
## 118                              Good
## 119                          Very bad
## 120                              Good
## 121                 Not bad, not good
## 122                         Very good
## 123                              Good
## 124                 Not bad, not good
## 125                               Bad
## 126                               Bad
## 127                               Bad
## 128                              Good
## 129                              Good
## 130                 Not bad, not good
## 131                 Not bad, not good
## 132                               Bad
## 133                 Not bad, not good
## 134                              Good
## 135                 Not bad, not good
## 136                 Not bad, not good
## 137                              Good
## 138                              Good
## 139                 Not bad, not good
## 140                              Good
## 141                              Good
## 142                 Not bad, not good
## 143                               Bad
## 144                          Very bad
## 145                              Good
## 146                              Good
## 147                              Good
## 148                         Very good
## 149                         Very good
## 150                 Not bad, not good
## 151                              Good
## 152                        Don't Know
## 153                              Good
## 154                              Good
## 155                 Not bad, not good
## 156                              Good
## 157                        Don't Know
## 158                         Very good
## 159                 Not bad, not good
## 160                 Not bad, not good
## 161                         Very good
## 162                 Not bad, not good
## 163                        Don't Know
## 164                        Don't Know
## 165                         Very good
## 166                        Don't Know
## 167                         Very good
## 168                        Don't Know
## 169                        Don't Know
## 170                 Not bad, not good
## 171                        Don't Know
## 172                        Don't Know
## 173                        Don't Know
## 174                 Not bad, not good
## 175                        Don't Know
## 176                              Good
## 177                        Don't Know
## 178                 Not bad, not good
## 179                 Not bad, not good
## 180                        Don't Know
## 181                               Bad
## 182                 Not bad, not good
## 183                        Don't Know
## 184                 Not bad, not good
## 185                 Not bad, not good
## 186                 Not bad, not good
## 187                 Not bad, not good
## 188                        Don't Know
## 189                               Bad
## 190                 Not bad, not good
## 191                               Bad
## 192                        Don't Know
## 193                        Don't Know
## 194                 Not bad, not good
## 195                        Don't Know
## 196                 Not bad, not good
## 197                         Very good
## 198                 Not bad, not good
## 199                              Good
## 200                        Don't Know
## 201                               Bad
## 202                 Not bad, not good
## 203                 Not bad, not good
## 204                              Good
## 205                              Good
## 206                              Good
## 207                 Not bad, not good
## 208                              Good
## 209                              Good
## 210                               Bad
## 211                 Not bad, not good
## 212                 Not bad, not good
## 213                 Not bad, not good
## 214                 Not bad, not good
## 215                 Not bad, not good
## 216                 Not bad, not good
## 217                              Good
## 218                 Not bad, not good
## 219                              Good
## 220                              Good
## 221                 Not bad, not good
## 222                 Not bad, not good
## 223                          Very bad
## 224                              Good
## 225                               Bad
## 226                 Not bad, not good
## 227                              Good
## 228                              Good
## 229                               Bad
## 230                               Bad
## 231                 Not bad, not good
## 232                 Not bad, not good
## 233                               Bad
## 234                 Not bad, not good
## 235                 Not bad, not good
## 236                               Bad
## 237                 Not bad, not good
## 238                               Bad
## 239                 Not bad, not good
## 240                 Not bad, not good
## 241                 Not bad, not good
## 242                 Not bad, not good
## 243                 Not bad, not good
## 244                 Not bad, not good
## 245                 Not bad, not good
## 246                 Not bad, not good
## 247                               Bad
## 248                               Bad
## 249                         Very good
## 250                               Bad
## 251                 Not bad, not good
## 252                               Bad
## 253                               Bad
## 254                 Not bad, not good
## 255                              Good
## 256                 Not bad, not good
## 257                 Not bad, not good
## 258                              Good
## 259                 Not bad, not good
## 260                              Good
## 261                 Not bad, not good
## 262                              Good
## 263                              Good
## 264                 Not bad, not good
## 265                              Good
## 266                         Very good
## 267                               Bad
## 268                              Good
## 269                              Good
## 270                              Good
## 271                              Good
## 272                              Good
## 273                 Not bad, not good
## 274                              Good
## 275                              Good
## 276                 Not bad, not good
## 277                              Good
## 278                              Good
## 279                              <NA>
## 280                              Good
## 281                              Good
## 282                              Good
## 283                              Good
## 284                               Bad
## 285                              Good
## 286                              Good
## 287                 Not bad, not good
## 288                              Good
## 289                        Don't Know
## 290                              Good
## 291                              Good
## 292                        Don't Know
## 293                              Good
## 294                              Good
## 295                              Good
## 296                              Good
## 297                              Good
## 298                 Not bad, not good
## 299                              Good
## 300                 Not bad, not good
## 302                              Good
## 303                         Very good
## 304                              Good
## 305                              Good
## 306                         Very good
## 307                              Good
## 308                              Good
## 309                              Good
## 310                         Very good
## 311                              Good
## 312                              Good
## 313                              Good
## 314                              Good
## 315                              Good
## 316                              Good
## 317                 Not bad, not good
## 318                         Very good
## 319                              Good
## 320                 Not bad, not good
## 321                              Good
## 322                              Good
## 323                              Good
## 324                              Good
## 325                              Good
## 326                              Good
## 327                              Good
## 328                              Good
## 329                         Very good
## 330                 Not bad, not good
## 331                 Not bad, not good
## 332                              Good
## 333                 Not bad, not good
## 334                 Not bad, not good
## 335                 Not bad, not good
## 336                              Good
## 337                 Not bad, not good
## 338                              Good
## 339                         Very good
## 340                              Good
## 341                              Good
## 342                 Not bad, not good
## 343                              Good
## 344                              Good
## 345                              Good
## 346                              Good
## 347                         Very good
## 348                              Good
## 349                         Very good
## 350                              Good
## 351                         Very good
## 352                        Don't Know
## 353                 Not bad, not good
## 354                              Good
## 355                              Good
## 356                              Good
## 357                 Not bad, not good
## 358                              Good
## 359                              Good
## 360                              Good
## 361                              Good
## 362                              Good
## 363                              Good
## 364                              Good
## 365                              Good
## 366                 Not bad, not good
## 367                              Good
## 368                              Good
## 369                 Not bad, not good
## 370                              Good
## 371                              Good
## 372                              Good
## 373                              Good
## 374                         Very good
## 375                              Good
## 376                 Not bad, not good
## 377                              Good
## 378                              Good
## 379                 Not bad, not good
## 380                              Good
## 381                              Good
## 382                              Good
## 383                              Good
## 384                         Very good
## 385                              Good
## 386                              Good
## 387                              Good
## 388                              Good
## 389                              Good
## 390                               Bad
## 391                 Not bad, not good
## 392                              Good
## 393                              Good
## 394                              Good
## 395                              Good
## 396                              Good
## 397                              Good
## 398                              Good
## 399                              Good
## 400                              Good
## 401                              Good
## 402                              Good
## 403                              Good
## 404                 Not bad, not good
## 405                 Not bad, not good
## 406                              Good
## 407                              Good
## 408                         Very good
## 409                              Good
## 410                              Good
## 411                         Very good
## 412                         Very good
## 413                         Very good
## 414                              Good
## 415                         Very good
## 416                         Very good
## 417                              <NA>
## 418                         Very good
## 419                         Very good
## 420                              <NA>
## 421                         Very good
## 422                              Good
## 423                              <NA>
## 424                         Very good
## 425                         Very good
## 426                         Very good
## 427                              Good
## 428                              Good
## 429                         Very good
## 430                              Good
## 431                         Very good
## 432                         Very good
## 433                         Very good
## 434                         Very good
## 435                         Very good
## 436                         Very good
## 437                              Good
## 438                              Good
## 439                         Very good
## 440                         Very good
## 441                         Very good
## 442                              Good
## 443                              Good
## 444                         Very good
## 445                         Very good
## 446                              Good
## 447                         Very good
## 448                              Good
## 449                         Very good
## 450                              <NA>
## 451                         Very good
## 452                         Very good
## 453                              Good
## 454                              Good
## 455                 Not bad, not good
## 456                              Good
## 457                 Not bad, not good
## 458                 Not bad, not good
## 459                              Good
## 460                 Not bad, not good
## 461                 Not bad, not good
## 462                         Very good
## 463                 Not bad, not good
## 464                 Not bad, not good
## 465                         Very good
## 466                 Not bad, not good
## 467                         Very good
## 468                 Not bad, not good
## 469                               Bad
## 470                          Very bad
## 471                 Not bad, not good
## 472                              Good
## 473                 Not bad, not good
## 474                              Good
## 475                              Good
## 476                              Good
## 477                              Good
## 478                 Not bad, not good
## 479                        Don't Know
## 480                              Good
## 481                              Good
## 482                          Very bad
## 483                 Not bad, not good
## 484                               Bad
## 485                              Good
## 486                              Good
## 487                 Not bad, not good
## 488                 Not bad, not good
## 489                              Good
## 490                              Good
## 491                               Bad
## 492                              Good
## 493                              Good
## 494                 Not bad, not good
## 495                          Very bad
## 496                 Not bad, not good
##      Development.of..Telecommunication.services
## 1                                          Good
## 2                             Not bad, not good
## 3                                          Good
## 4                                          Good
## 5                                          Good
## 6                                     Very good
## 7                                           Bad
## 8                                          Good
## 9                                     Very good
## 10                                         <NA>
## 11                                    Very good
## 12                                         Good
## 13                                         Good
## 14                            Not bad, not good
## 15                                         Good
## 16                                          Bad
## 17                                         Good
## 18                            Not bad, not good
## 19                                         Good
## 20                            Not bad, not good
## 21                                    Very good
## 22                            Not bad, not good
## 23                                         Good
## 24                            Not bad, not good
## 25                                         Good
## 26                            Not bad, not good
## 27                            Not bad, not good
## 28                                         Good
## 29                                         Good
## 30                                         Good
## 31                                         Good
## 32                                         Good
## 33                                         Good
## 34                            Not bad, not good
## 35                            Not bad, not good
## 36                            Not bad, not good
## 37                            Not bad, not good
## 38                                         Good
## 39                                         Good
## 40                                         Good
## 41                            Not bad, not good
## 42                            Not bad, not good
## 43                                         Good
## 44                                         Good
## 45                                         Good
## 46                                          Bad
## 47                            Not bad, not good
## 48                            Not bad, not good
## 49                                         Good
## 50                            Not bad, not good
## 51                                         Good
## 52                                         Good
## 53                                         Good
## 54                                         Good
## 55                            Not bad, not good
## 56                                         Good
## 57                                         Good
## 58                                         Good
## 59                                         Good
## 60                            Not bad, not good
## 61                                         Good
## 62                                    Very good
## 63                                    Very good
## 64                                    Very good
## 65                                    Very good
## 66                                         Good
## 67                                         Good
## 68                                         Good
## 69                                         Good
## 70                            Not bad, not good
## 71                                         Good
## 72                                         Good
## 73                                         Good
## 74                                         Good
## 75                                         Good
## 76                                    Very good
## 77                                    Very good
## 78                                    Very good
## 79                                    Very good
## 80                                    Very good
## 81                                         Good
## 82                                         Good
## 83                                         Good
## 84                                    Very good
## 85                                    Very good
## 86                                         Good
## 87                                         Good
## 88                                    Very good
## 89                                         Good
## 90                                         Good
## 91                                         Good
## 92                                         Good
## 93                                         Good
## 94                                         Good
## 95                                         Good
## 96                                         Good
## 97                                         Good
## 98                                         Good
## 99                                         Good
## 100                                        Good
## 101                           Not bad, not good
## 102                           Not bad, not good
## 103                           Not bad, not good
## 104                                         Bad
## 105                           Not bad, not good
## 106                           Not bad, not good
## 107                                        Good
## 108                                        Good
## 109                           Not bad, not good
## 110                                        Good
## 111                                        Good
## 112                           Not bad, not good
## 113                                        Good
## 114                                        Good
## 115                           Not bad, not good
## 116                                         Bad
## 117                                        Good
## 118                                    Very bad
## 119                                        Good
## 120                           Not bad, not good
## 121                           Not bad, not good
## 122                                         Bad
## 123                                    Very bad
## 124                           Not bad, not good
## 125                                         Bad
## 126                           Not bad, not good
## 127                           Not bad, not good
## 128                                    Very bad
## 129                           Not bad, not good
## 130                                        Good
## 131                           Not bad, not good
## 132                           Not bad, not good
## 133                                    Very bad
## 134                                        <NA>
## 135                                         Bad
## 136                           Not bad, not good
## 137                                         Bad
## 138                                         Bad
## 139                                         Bad
## 140                                         Bad
## 141                                         Bad
## 142                           Not bad, not good
## 143                           Not bad, not good
## 144                                    Very bad
## 145                           Not bad, not good
## 146                                         Bad
## 147                           Not bad, not good
## 148                                        Good
## 149                                        Good
## 150                           Not bad, not good
## 151                                        Good
## 152                                   Very good
## 153                           Not bad, not good
## 154                                        Good
## 155                                        Good
## 156                                        Good
## 157                           Not bad, not good
## 158                                        Good
## 159                                        Good
## 160                                        Good
## 161                                        Good
## 162                           Not bad, not good
## 163                                  Don't Know
## 164                                  Don't Know
## 165                                        Good
## 166                           Not bad, not good
## 167                                        Good
## 168                           Not bad, not good
## 169                                         Bad
## 170                                  Don't Know
## 171                                        Good
## 172                                        Good
## 173                                        Good
## 174                           Not bad, not good
## 175                           Not bad, not good
## 176                           Not bad, not good
## 177                           Not bad, not good
## 178                                        Good
## 179                                        Good
## 180                                        Good
## 181                           Not bad, not good
## 182                                        Good
## 183                                  Don't Know
## 184                                        Good
## 185                                        Good
## 186                           Not bad, not good
## 187                                        Good
## 188                           Not bad, not good
## 189                           Not bad, not good
## 190                                        Good
## 191                           Not bad, not good
## 192                                         Bad
## 193                           Not bad, not good
## 194                                        Good
## 195                           Not bad, not good
## 196                                        Good
## 197                                        Good
## 198                                         Bad
## 199                           Not bad, not good
## 200                                  Don't Know
## 201                           Not bad, not good
## 202                           Not bad, not good
## 203                                        Good
## 204                           Not bad, not good
## 205                           Not bad, not good
## 206                                        Good
## 207                           Not bad, not good
## 208                                   Very good
## 209                                        Good
## 210                                    Very bad
## 211                                        Good
## 212                                        Good
## 213                                        Good
## 214                                         Bad
## 215                                        Good
## 216                                        Good
## 217                                        Good
## 218                           Not bad, not good
## 219                                        Good
## 220                           Not bad, not good
## 221                                        Good
## 222                                        Good
## 223                                        Good
## 224                                   Very good
## 225                           Not bad, not good
## 226                                        Good
## 227                                        Good
## 228                           Not bad, not good
## 229                                         Bad
## 230                           Not bad, not good
## 231                                        Good
## 232                                        Good
## 233                           Not bad, not good
## 234                           Not bad, not good
## 235                                         Bad
## 236                           Not bad, not good
## 237                                        Good
## 238                           Not bad, not good
## 239                           Not bad, not good
## 240                                         Bad
## 241                           Not bad, not good
## 242                           Not bad, not good
## 243                           Not bad, not good
## 244                           Not bad, not good
## 245                                        Good
## 246                           Not bad, not good
## 247                           Not bad, not good
## 248                           Not bad, not good
## 249                                    Very bad
## 250                                    Very bad
## 251                                         Bad
## 252                                         Bad
## 253                                  Don't Know
## 254                                        Good
## 255                                        Good
## 256                           Not bad, not good
## 257                           Not bad, not good
## 258                                        Good
## 259                           Not bad, not good
## 260                                        Good
## 261                           Not bad, not good
## 262                                        Good
## 263                                        Good
## 264                           Not bad, not good
## 265                                        Good
## 266                                        Good
## 267                                        Good
## 268                                        Good
## 269                                        Good
## 270                                        Good
## 271                           Not bad, not good
## 272                                        Good
## 273                           Not bad, not good
## 274                           Not bad, not good
## 275                                        Good
## 276                                        Good
## 277                                        Good
## 278                                        Good
## 279                                        <NA>
## 280                                        Good
## 281                                        Good
## 282                                        Good
## 283                                        Good
## 284                           Not bad, not good
## 285                                        Good
## 286                           Not bad, not good
## 287                           Not bad, not good
## 288                                        Good
## 289                                  Don't Know
## 290                                        Good
## 291                                        Good
## 292                                        Good
## 293                                        Good
## 294                                        Good
## 295                                        Good
## 296                           Not bad, not good
## 297                                        Good
## 298                                        Good
## 299                                        Good
## 300                           Not bad, not good
## 302                                        Good
## 303                                   Very good
## 304                                        Good
## 305                                        Good
## 306                                   Very good
## 307                                        Good
## 308                                        Good
## 309                                        Good
## 310                                   Very good
## 311                                        Good
## 312                                        Good
## 313                                        Good
## 314                                        Good
## 315                                        Good
## 316                                        Good
## 317                                        Good
## 318                                   Very good
## 319                                        Good
## 320                                        Good
## 321                           Not bad, not good
## 322                                        Good
## 323                                        Good
## 324                                        Good
## 325                                        Good
## 326                                        Good
## 327                                        Good
## 328                                        Good
## 329                           Not bad, not good
## 330                                         Bad
## 331                           Not bad, not good
## 332                                   Very good
## 333                                        Good
## 334                                        Good
## 335                                        Good
## 336                                    Very bad
## 337                                        Good
## 338                           Not bad, not good
## 339                                        Good
## 340                           Not bad, not good
## 341                                        Good
## 342                           Not bad, not good
## 343                           Not bad, not good
## 344                                   Very good
## 345                                        Good
## 346                                        Good
## 347                                   Very good
## 348                                        Good
## 349                                   Very good
## 350                                        Good
## 351                                   Very good
## 352                                  Don't Know
## 353                           Not bad, not good
## 354                                        Good
## 355                           Not bad, not good
## 356                           Not bad, not good
## 357                                        Good
## 358                                        Good
## 359                                        Good
## 360                                        Good
## 361                                        Good
## 362                                        Good
## 363                                        Good
## 364                                        Good
## 365                           Not bad, not good
## 366                           Not bad, not good
## 367                           Not bad, not good
## 368                           Not bad, not good
## 369                                        Good
## 370                                        Good
## 371                           Not bad, not good
## 372                                        Good
## 373                           Not bad, not good
## 374                                        Good
## 375                           Not bad, not good
## 376                           Not bad, not good
## 377                                        Good
## 378                                        Good
## 379                           Not bad, not good
## 380                                        Good
## 381                                        Good
## 382                                        Good
## 383                                        Good
## 384                                        Good
## 385                                        Good
## 386                                        Good
## 387                                        Good
## 388                                        Good
## 389                                        Good
## 390                           Not bad, not good
## 391                                        Good
## 392                                        Good
## 393                                        Good
## 394                                        Good
## 395                                        Good
## 396                                        Good
## 397                                        Good
## 398                                        Good
## 399                                        Good
## 400                                        Good
## 401                                        Good
## 402                                        Good
## 403                                        Good
## 404                                        Good
## 405                           Not bad, not good
## 406                                        Good
## 407                                        Good
## 408                                   Very good
## 409                                        Good
## 410                                        Good
## 411                                   Very good
## 412                                   Very good
## 413                                   Very good
## 414                                        Good
## 415                                   Very good
## 416                                   Very good
## 417                                        <NA>
## 418                                   Very good
## 419                                   Very good
## 420                                        <NA>
## 421                                   Very good
## 422                                   Very good
## 423                                        <NA>
## 424                                   Very good
## 425                                   Very good
## 426                                   Very good
## 427                                        Good
## 428                                        Good
## 429                                   Very good
## 430                                        Good
## 431                                   Very good
## 432                                   Very good
## 433                                   Very good
## 434                                   Very good
## 435                                   Very good
## 436                                   Very good
## 437                                        Good
## 438                                        Good
## 439                                   Very good
## 440                                   Very good
## 441                                   Very good
## 442                                        Good
## 443                                        Good
## 444                                   Very good
## 445                                   Very good
## 446                                        Good
## 447                                   Very good
## 448                                        Good
## 449                                   Very good
## 450                                        <NA>
## 451                                   Very good
## 452                                   Very good
## 453                                        Good
## 454                           Not bad, not good
## 455                                        Good
## 456                                        Good
## 457                           Not bad, not good
## 458                           Not bad, not good
## 459                                         Bad
## 460                                         Bad
## 461                                   Very good
## 462                                   Very good
## 463                                         Bad
## 464                           Not bad, not good
## 465                                   Very good
## 466                                         Bad
## 467                                   Very good
## 468                                        Good
## 469                                   Very good
## 470                           Not bad, not good
## 471                                         Bad
## 472                                        Good
## 473                           Not bad, not good
## 474                                        <NA>
## 475                                        Good
## 476                                        Good
## 477                                        Good
## 478                           Not bad, not good
## 479                                  Don't Know
## 480                                        Good
## 481                           Not bad, not good
## 482                                    Very bad
## 483                           Not bad, not good
## 484                                         Bad
## 485                                        Good
## 486                                        Good
## 487                                        Good
## 488                                        Good
## 489                                        Good
## 490                                        Good
## 491                           Not bad, not good
## 492                                        Good
## 493                           Not bad, not good
## 494                           Not bad, not good
## 495                                         Bad
## 496                           Not bad, not good
##      Development.of..Postal.services
## 1                  Not bad, not good
## 2                           Very bad
## 3                               Good
## 4                  Not bad, not good
## 5                               Good
## 6                          Very good
## 7                                Bad
## 8                  Not bad, not good
## 9                               Good
## 10                              <NA>
## 11                         Very good
## 12                 Not bad, not good
## 13                              Good
## 14                               Bad
## 15                              Good
## 16                               Bad
## 17                              Good
## 18                 Not bad, not good
## 19                              <NA>
## 20                 Not bad, not good
## 21                         Very good
## 22                              Good
## 23                              Good
## 24                               Bad
## 25                              Good
## 26                              Good
## 27                 Not bad, not good
## 28                              Good
## 29                              Good
## 30                 Not bad, not good
## 31                              Good
## 32                        Don't Know
## 33                 Not bad, not good
## 34                 Not bad, not good
## 35                 Not bad, not good
## 36                 Not bad, not good
## 37                               Bad
## 38                 Not bad, not good
## 39                 Not bad, not good
## 40                               Bad
## 41                 Not bad, not good
## 42                 Not bad, not good
## 43                              Good
## 44                 Not bad, not good
## 45                 Not bad, not good
## 46                          Very bad
## 47                 Not bad, not good
## 48                 Not bad, not good
## 49                 Not bad, not good
## 50                 Not bad, not good
## 51                              Good
## 52                 Not bad, not good
## 53                 Not bad, not good
## 54                 Not bad, not good
## 55                 Not bad, not good
## 56                 Not bad, not good
## 57                              Good
## 58                              Good
## 59                        Don't Know
## 60                 Not bad, not good
## 61                              <NA>
## 62                              Good
## 63                              Good
## 64                              Good
## 65                              Good
## 66                              <NA>
## 67                              Good
## 68                              Good
## 69                 Not bad, not good
## 70                               Bad
## 71                 Not bad, not good
## 72                              Good
## 73                              Good
## 74                              Good
## 75                              Good
## 76                              Good
## 77                              Good
## 78                              Good
## 79                              Good
## 80                              Good
## 81                              Good
## 82                              Good
## 83                              Good
## 84                              Good
## 85                              Good
## 86                 Not bad, not good
## 87                              Good
## 88                              Good
## 89                              Good
## 90                              Good
## 91                              <NA>
## 92                              Good
## 93                              Good
## 94                              Good
## 95                              Good
## 96                              Good
## 97                              Good
## 98                              Good
## 99                              Good
## 100                             Good
## 101                Not bad, not good
## 102                              Bad
## 103                              Bad
## 104                              Bad
## 105                Not bad, not good
## 106                Not bad, not good
## 107                             <NA>
## 108                             Good
## 109                             Good
## 110                             Good
## 111                Not bad, not good
## 112                Not bad, not good
## 113                             Good
## 114                             Good
## 115                Not bad, not good
## 116                             <NA>
## 117                             Good
## 118                         Very bad
## 119                             Good
## 120                Not bad, not good
## 121                              Bad
## 122                         Very bad
## 123                         Very bad
## 124                             <NA>
## 125                Not bad, not good
## 126                Not bad, not good
## 127                              Bad
## 128                         Very bad
## 129                              Bad
## 130                             Good
## 131                Not bad, not good
## 132                              Bad
## 133                              Bad
## 134                Not bad, not good
## 135                Not bad, not good
## 136                Not bad, not good
## 137                Not bad, not good
## 138                         Very bad
## 139                             Good
## 140                              Bad
## 141                Not bad, not good
## 142                Not bad, not good
## 143                              Bad
## 144                              Bad
## 145                              Bad
## 146                Not bad, not good
## 147                Not bad, not good
## 148                             Good
## 149                             Good
## 150                Not bad, not good
## 151                              Bad
## 152                             Good
## 153                Not bad, not good
## 154                             Good
## 155                Not bad, not good
## 156                              Bad
## 157                Not bad, not good
## 158                Not bad, not good
## 159                Not bad, not good
## 160                Not bad, not good
## 161                             Good
## 162                             Good
## 163                       Don't Know
## 164                       Don't Know
## 165                Not bad, not good
## 166                Not bad, not good
## 167                Not bad, not good
## 168                              Bad
## 169                              Bad
## 170                       Don't Know
## 171                              Bad
## 172                              Bad
## 173                Not bad, not good
## 174                Not bad, not good
## 175                             Good
## 176                              Bad
## 177                              Bad
## 178                Not bad, not good
## 179                Not bad, not good
## 180                Not bad, not good
## 181                Not bad, not good
## 182                Not bad, not good
## 183                       Don't Know
## 184                Not bad, not good
## 185                Not bad, not good
## 186                Not bad, not good
## 187                Not bad, not good
## 188                Not bad, not good
## 189                              Bad
## 190                Not bad, not good
## 191                Not bad, not good
## 192                Not bad, not good
## 193                Not bad, not good
## 194                Not bad, not good
## 195                              Bad
## 196                Not bad, not good
## 197                Not bad, not good
## 198                Not bad, not good
## 199                Not bad, not good
## 200                       Don't Know
## 201                              Bad
## 202                             Good
## 203                             Good
## 204                Not bad, not good
## 205                              Bad
## 206                Not bad, not good
## 207                             Good
## 208                             Good
## 209                             Good
## 210                Not bad, not good
## 211                              Bad
## 212                              Bad
## 213                Not bad, not good
## 214                              Bad
## 215                Not bad, not good
## 216                Not bad, not good
## 217                              Bad
## 218                             Good
## 219                        Very good
## 220                             Good
## 221                Not bad, not good
## 222                             Good
## 223                             Good
## 224                             Good
## 225                             Good
## 226                             Good
## 227                             Good
## 228                             Good
## 229                Not bad, not good
## 230                             Good
## 231                             Good
## 232                             Good
## 233                              Bad
## 234                             Good
## 235                Not bad, not good
## 236                              Bad
## 237                Not bad, not good
## 238                             Good
## 239                             Good
## 240                             Good
## 241                             Good
## 242                             Good
## 243                             Good
## 244                             Good
## 245                Not bad, not good
## 246                              Bad
## 247                             Good
## 248                              Bad
## 249                              Bad
## 250                Not bad, not good
## 251                              Bad
## 252                             Good
## 253                              Bad
## 254                             Good
## 255                             Good
## 256                Not bad, not good
## 257                Not bad, not good
## 258                             Good
## 259                             Good
## 260                        Very good
## 261                             Good
## 262                Not bad, not good
## 263                             Good
## 264                             Good
## 265                             Good
## 266                             Good
## 267                             Good
## 268                             Good
## 269                             Good
## 270                        Very good
## 271                Not bad, not good
## 272                Not bad, not good
## 273                             Good
## 274                             Good
## 275                             Good
## 276                Not bad, not good
## 277                             Good
## 278                             Good
## 279                             <NA>
## 280                Not bad, not good
## 281                             Good
## 282                             Good
## 283                             Good
## 284                              Bad
## 285                             Good
## 286                Not bad, not good
## 287                Not bad, not good
## 288                Not bad, not good
## 289                Not bad, not good
## 290                             Good
## 291                             Good
## 292                       Don't Know
## 293                             Good
## 294                             Good
## 295                              Bad
## 296                              Bad
## 297                Not bad, not good
## 298                             <NA>
## 299                             Good
## 300                Not bad, not good
## 302                             Good
## 303                Not bad, not good
## 304                              Bad
## 305                         Very bad
## 306                        Very good
## 307                             Good
## 308                             Good
## 309                Not bad, not good
## 310                        Very good
## 311                Not bad, not good
## 312                Not bad, not good
## 313                Not bad, not good
## 314                             Good
## 315                Not bad, not good
## 316                             Good
## 317                        Very good
## 318                        Very good
## 319                             Good
## 320                             Good
## 321                Not bad, not good
## 322                             Good
## 323                             Good
## 324                Not bad, not good
## 325                Not bad, not good
## 326                Not bad, not good
## 327                Not bad, not good
## 328                       Don't Know
## 329                             Good
## 330                              Bad
## 331                             Good
## 332                       Don't Know
## 333                        Very good
## 334                        Very good
## 335                Not bad, not good
## 336                         Very bad
## 337                        Very good
## 338                             Good
## 339                             Good
## 340                              Bad
## 341                Not bad, not good
## 342                Not bad, not good
## 343                             Good
## 344                             Good
## 345                             Good
## 346                             Good
## 347                        Very good
## 348                Not bad, not good
## 349                             Good
## 350                Not bad, not good
## 351                             Good
## 352                       Don't Know
## 353                Not bad, not good
## 354                       Don't Know
## 355                             Good
## 356                       Don't Know
## 357                             Good
## 358                Not bad, not good
## 359                Not bad, not good
## 360                             Good
## 361                       Don't Know
## 362                             Good
## 363                Not bad, not good
## 364                             Good
## 365                       Don't Know
## 366                             Good
## 367                             Good
## 368                       Don't Know
## 369                Not bad, not good
## 370                             Good
## 371                             Good
## 372                             Good
## 373                             Good
## 374                Not bad, not good
## 375                Not bad, not good
## 376                       Don't Know
## 377                             Good
## 378                             Good
## 379                Not bad, not good
## 380                             Good
## 381                       Don't Know
## 382                       Don't Know
## 383                       Don't Know
## 384                       Don't Know
## 385                       Don't Know
## 386                Not bad, not good
## 387                Not bad, not good
## 388                       Don't Know
## 389                Not bad, not good
## 390                       Don't Know
## 391                             Good
## 392                       Don't Know
## 393                       Don't Know
## 394                       Don't Know
## 395                Not bad, not good
## 396                       Don't Know
## 397                       Don't Know
## 398                Not bad, not good
## 399                       Don't Know
## 400                       Don't Know
## 401                       Don't Know
## 402                             Good
## 403                             Good
## 404                Not bad, not good
## 405                              Bad
## 406                             Good
## 407                             Good
## 408                        Very good
## 409                Not bad, not good
## 410                             Good
## 411                        Very good
## 412                        Very good
## 413                        Very good
## 414                             Good
## 415                        Very good
## 416                        Very good
## 417                             <NA>
## 418                        Very good
## 419                        Very good
## 420                             <NA>
## 421                        Very good
## 422                        Very good
## 423                             <NA>
## 424                        Very good
## 425                        Very good
## 426                        Very good
## 427                             Good
## 428                             Good
## 429                        Very good
## 430                             Good
## 431                        Very good
## 432                        Very good
## 433                        Very good
## 434                        Very good
## 435                        Very good
## 436                        Very good
## 437                             Good
## 438                             Good
## 439                        Very good
## 440                        Very good
## 441                        Very good
## 442                             Good
## 443                             Good
## 444                        Very good
## 445                        Very good
## 446                             Good
## 447                        Very good
## 448                             Good
## 449                        Very good
## 450                             <NA>
## 451                        Very good
## 452                        Very good
## 453                             Good
## 454                             <NA>
## 455                             <NA>
## 456                             <NA>
## 457                             <NA>
## 458                             <NA>
## 459                             <NA>
## 460                             <NA>
## 461                             <NA>
## 462                             <NA>
## 463                             <NA>
## 464                             <NA>
## 465                             <NA>
## 466                             <NA>
## 467                             <NA>
## 468                             <NA>
## 469                             <NA>
## 470                             <NA>
## 471                             <NA>
## 472                             <NA>
## 473                             <NA>
## 474                             <NA>
## 475                             <NA>
## 476                             <NA>
## 477                             <NA>
## 478                             <NA>
## 479                             <NA>
## 480                             <NA>
## 481                             <NA>
## 482                             <NA>
## 483                             <NA>
## 484                             <NA>
## 485                             <NA>
## 486                             <NA>
## 487                             <NA>
## 488                             <NA>
## 489                             <NA>
## 490                             <NA>
## 491                             <NA>
## 492                             <NA>
## 493                             <NA>
## 494                             <NA>
## 495                             <NA>
## 496                             <NA>
##      Development.of..Agricultural.extension.services
## 1                                  Not bad, not good
## 2                                                Bad
## 3                                               Good
## 4                                  Not bad, not good
## 5                                               Good
## 6                                               Good
## 7                                                Bad
## 8                                  Not bad, not good
## 9                                               Good
## 10                                              <NA>
## 11                                              Good
## 12                                              Good
## 13                                              Good
## 14                                              Good
## 15                                 Not bad, not good
## 16                                               Bad
## 17                                              Good
## 18                                              Good
## 19                                 Not bad, not good
## 20                                 Not bad, not good
## 21                                 Not bad, not good
## 22                                               Bad
## 23                                 Not bad, not good
## 24                                 Not bad, not good
## 25                                              Good
## 26                                 Not bad, not good
## 27                                               Bad
## 28                                        Don't Know
## 29                                              Good
## 30                                 Not bad, not good
## 31                                 Not bad, not good
## 32                                              Good
## 33                                              Good
## 34                                 Not bad, not good
## 35                                 Not bad, not good
## 36                                 Not bad, not good
## 37                                 Not bad, not good
## 38                                 Not bad, not good
## 39                                 Not bad, not good
## 40                                               Bad
## 41                                 Not bad, not good
## 42                                 Not bad, not good
## 43                                 Not bad, not good
## 44                                 Not bad, not good
## 45                                 Not bad, not good
## 46                                               Bad
## 47                                 Not bad, not good
## 48                                               Bad
## 49                                 Not bad, not good
## 50                                               Bad
## 51                                        Don't Know
## 52                                          Very bad
## 53                                 Not bad, not good
## 54                                               Bad
## 55                                               Bad
## 56                                               Bad
## 57                                          Very bad
## 58                                               Bad
## 59                                          Very bad
## 60                                          Very bad
## 61                                               Bad
## 62                                          Very bad
## 63                                          Very bad
## 64                                          Very bad
## 65                                          Very bad
## 66                                          Very bad
## 67                                          Very bad
## 68                                          Very bad
## 69                                          Very bad
## 70                                          Very bad
## 71                                              <NA>
## 72                                          Very bad
## 73                                          Very bad
## 74                                          Very bad
## 75                                          Very bad
## 76                                          Very bad
## 77                                          Very bad
## 78                                          Very bad
## 79                                          Very bad
## 80                                          Very bad
## 81                                          Very bad
## 82                                          Very bad
## 83                                          Very bad
## 84                                          Very bad
## 85                                          Very bad
## 86                                 Not bad, not good
## 87                                 Not bad, not good
## 88                                              Good
## 89                                 Not bad, not good
## 90                                 Not bad, not good
## 91                                 Not bad, not good
## 92                                 Not bad, not good
## 93                                 Not bad, not good
## 94                                 Not bad, not good
## 95                                          Very bad
## 96                                          Very bad
## 97                                          Very bad
## 98                                          Very bad
## 99                                          Very bad
## 100                                Not bad, not good
## 101                                              Bad
## 102                                Not bad, not good
## 103                                             Good
## 104                                              Bad
## 105                                             Good
## 106                                Not bad, not good
## 107                                Not bad, not good
## 108                                Not bad, not good
## 109                                             Good
## 110                                             Good
## 111                                Not bad, not good
## 112                                Not bad, not good
## 113                                             Good
## 114                                             <NA>
## 115                                Not bad, not good
## 116                                         Very bad
## 117                                Not bad, not good
## 118                                         Very bad
## 119                                Not bad, not good
## 120                                              Bad
## 121                                         Very bad
## 122                                Not bad, not good
## 123                                         Very bad
## 124                                              Bad
## 125                                Not bad, not good
## 126                                              Bad
## 127                                Not bad, not good
## 128                                         Very bad
## 129                                Not bad, not good
## 130                                             Good
## 131                                Not bad, not good
## 132                                Not bad, not good
## 133                                Not bad, not good
## 134                                              Bad
## 135                                              Bad
## 136                                Not bad, not good
## 137                                Not bad, not good
## 138                                              Bad
## 139                                              Bad
## 140                                              Bad
## 141                                Not bad, not good
## 142                                              Bad
## 143                                Not bad, not good
## 144                                              Bad
## 145                                Not bad, not good
## 146                                Not bad, not good
## 147                                Not bad, not good
## 148                                             Good
## 149                                             <NA>
## 150                                Not bad, not good
## 151                                Not bad, not good
## 152                                Not bad, not good
## 153                                             Good
## 154                                             Good
## 155                                             Good
## 156                                Not bad, not good
## 157                                Not bad, not good
## 158                                        Very good
## 159                                             Good
## 160                                             Good
## 161                                             Good
## 162                                             Good
## 163                                       Don't Know
## 164                                       Don't Know
## 165                                        Very good
## 166                                             Good
## 167                                        Very good
## 168                                             Good
## 169                                Not bad, not good
## 170                                Not bad, not good
## 171                                Not bad, not good
## 172                                Not bad, not good
## 173                                       Don't Know
## 174                                             Good
## 175                                Not bad, not good
## 176                                Not bad, not good
## 177                                             Good
## 178                                             Good
## 179                                             Good
## 180                                             Good
## 181                                             Good
## 182                                Not bad, not good
## 183                                       Don't Know
## 184                                             Good
## 185                                Not bad, not good
## 186                                             Good
## 187                                Not bad, not good
## 188                                             Good
## 189                                Not bad, not good
## 190                                Not bad, not good
## 191                                Not bad, not good
## 192                                Not bad, not good
## 193                                Not bad, not good
## 194                                             Good
## 195                                Not bad, not good
## 196                                              Bad
## 197                                Not bad, not good
## 198                                              Bad
## 199                                Not bad, not good
## 200                                       Don't Know
## 201                                Not bad, not good
## 202                                             Good
## 203                                Not bad, not good
## 204                                              Bad
## 205                                Not bad, not good
## 206                                Not bad, not good
## 207                                             Good
## 208                                              Bad
## 209                                              Bad
## 210                                             Good
## 211                                              Bad
## 212                                              Bad
## 213                                              Bad
## 214                                              Bad
## 215                                              Bad
## 216                                              Bad
## 217                                Not bad, not good
## 218                                              Bad
## 219                                              Bad
## 220                                Not bad, not good
## 221                                              Bad
## 222                                Not bad, not good
## 223                                Not bad, not good
## 224                                Not bad, not good
## 225                                              Bad
## 226                                Not bad, not good
## 227                                             Good
## 228                                             Good
## 229                                             Good
## 230                                             Good
## 231                                Not bad, not good
## 232                                Not bad, not good
## 233                                              Bad
## 234                                              Bad
## 235                                Not bad, not good
## 236                                Not bad, not good
## 237                                        Very good
## 238                                Not bad, not good
## 239                                              Bad
## 240                                              Bad
## 241                                              Bad
## 242                                              Bad
## 243                                              Bad
## 244                                              Bad
## 245                                        Very good
## 246                                Not bad, not good
## 247                                             Good
## 248                                Not bad, not good
## 249                                        Very good
## 250                                              Bad
## 251                                             Good
## 252                                             Good
## 253                                             Good
## 254                                             Good
## 255                                             Good
## 256                                             Good
## 257                                             Good
## 258                                             Good
## 259                                Not bad, not good
## 260                                             Good
## 261                                             Good
## 262                                             Good
## 263                                             Good
## 264                                             Good
## 265                                             Good
## 266                                             Good
## 267                                        Very good
## 268                                             Good
## 269                                             Good
## 270                                Not bad, not good
## 271                                             Good
## 272                                Not bad, not good
## 273                                             Good
## 274                                Not bad, not good
## 275                                             Good
## 276                                             Good
## 277                                             Good
## 278                                             Good
## 279                                             <NA>
## 280                                Not bad, not good
## 281                                             Good
## 282                                             Good
## 283                                             Good
## 284                                Not bad, not good
## 285                                             Good
## 286                                             Good
## 287                                Not bad, not good
## 288                                             Good
## 289                                             Good
## 290                                             Good
## 291                                             Good
## 292                                Not bad, not good
## 293                                Not bad, not good
## 294                                Not bad, not good
## 295                                              Bad
## 296                                Not bad, not good
## 297                                Not bad, not good
## 298                                Not bad, not good
## 299                                             Good
## 300                                              Bad
## 302                                Not bad, not good
## 303                                         Very bad
## 304                                Not bad, not good
## 305                                              Bad
## 306                                              Bad
## 307                                             Good
## 308                                              Bad
## 309                                              Bad
## 310                                         Very bad
## 311                                              Bad
## 312                                Not bad, not good
## 313                                              Bad
## 314                                              Bad
## 315                                              Bad
## 316                                Not bad, not good
## 317                                             Good
## 318                                         Very bad
## 319                                Not bad, not good
## 320                                Not bad, not good
## 321                                Not bad, not good
## 322                                              Bad
## 323                                             Good
## 324                                Not bad, not good
## 325                                              Bad
## 326                                              Bad
## 327                                              Bad
## 328                                              Bad
## 329                                              Bad
## 330                                              Bad
## 331                                        Very good
## 332                                        Very good
## 333                                       Don't Know
## 334                                       Don't Know
## 335                                              Bad
## 336                                Not bad, not good
## 337                                       Don't Know
## 338                                Not bad, not good
## 339                                Not bad, not good
## 340                                         Very bad
## 341                                              Bad
## 342                                              Bad
## 343                                              Bad
## 344                                              Bad
## 345                                              Bad
## 346                                             Good
## 347                                              Bad
## 348                                              Bad
## 349                                         Very bad
## 350                                              Bad
## 351                                              Bad
## 352                                Not bad, not good
## 353                                Not bad, not good
## 354                                             Good
## 355                                Not bad, not good
## 356                                Not bad, not good
## 357                                             Good
## 358                                             Good
## 359                                             Good
## 360                                             Good
## 361                                             Good
## 362                                             Good
## 363                                             Good
## 364                                Not bad, not good
## 365                                Not bad, not good
## 366                                Not bad, not good
## 367                                Not bad, not good
## 368                                Not bad, not good
## 369                                Not bad, not good
## 370                                Not bad, not good
## 371                                Not bad, not good
## 372                                Not bad, not good
## 373                                Not bad, not good
## 374                                        Very good
## 375                                             Good
## 376                                Not bad, not good
## 377                                             Good
## 378                                Not bad, not good
## 379                                Not bad, not good
## 380                                Not bad, not good
## 381                                Not bad, not good
## 382                                Not bad, not good
## 383                                Not bad, not good
## 384                                Not bad, not good
## 385                                Not bad, not good
## 386                                Not bad, not good
## 387                                Not bad, not good
## 388                                Not bad, not good
## 389                                Not bad, not good
## 390                                             Good
## 391                                Not bad, not good
## 392                                Not bad, not good
## 393                                Not bad, not good
## 394                                Not bad, not good
## 395                                             Good
## 396                                Not bad, not good
## 397                                Not bad, not good
## 398                                Not bad, not good
## 399                                Not bad, not good
## 400                                Not bad, not good
## 401                                Not bad, not good
## 402                                             Good
## 403                                             Good
## 404                                             Good
## 405                                Not bad, not good
## 406                                             Good
## 407                                             Good
## 408                                        Very good
## 409                                             Good
## 410                                             Good
## 411                                        Very good
## 412                                        Very good
## 413                                        Very good
## 414                                             Good
## 415                                        Very good
## 416                                        Very good
## 417                                       Don't Know
## 418                                        Very good
## 419                                        Very good
## 420                                             <NA>
## 421                                        Very good
## 422                                        Very good
## 423                                             <NA>
## 424                                        Very good
## 425                                        Very good
## 426                                        Very good
## 427                                             Good
## 428                                             Good
## 429                                        Very good
## 430                                             Good
## 431                                        Very good
## 432                                        Very good
## 433                                        Very good
## 434                                        Very good
## 435                                        Very good
## 436                                        Very good
## 437                                             Good
## 438                                             Good
## 439                                        Very good
## 440                                        Very good
## 441                                        Very good
## 442                                             Good
## 443                                             Good
## 444                                        Very good
## 445                                        Very good
## 446                                             Good
## 447                                        Very good
## 448                                             Good
## 449                                        Very good
## 450                                             <NA>
## 451                                        Very good
## 452                                        Very good
## 453                                             Good
## 454                                Not bad, not good
## 455                                Not bad, not good
## 456                                Not bad, not good
## 457                                              Bad
## 458                                              Bad
## 459                                              Bad
## 460                                Not bad, not good
## 461                                        Very good
## 462                                             Good
## 463                                Not bad, not good
## 464                                         Very bad
## 465                                             Good
## 466                                              Bad
## 467                                Not bad, not good
## 468                                              Bad
## 469                                Not bad, not good
## 470                                       Don't Know
## 471                                             Good
## 472                                Not bad, not good
## 473                                Not bad, not good
## 474                                Not bad, not good
## 475                                              Bad
## 476                                       Don't Know
## 477                                             Good
## 478                                              Bad
## 479                                       Don't Know
## 480                                             <NA>
## 481                                              Bad
## 482                                         Very bad
## 483                                Not bad, not good
## 484                                              Bad
## 485                                Not bad, not good
## 486                                Not bad, not good
## 487                                             Good
## 488                                Not bad, not good
## 489                                              Bad
## 490                                              Bad
## 491                                Not bad, not good
## 492                                Not bad, not good
## 493                                         Very bad
## 494                                             Good
## 495                                         Very bad
## 496                                              Bad
##      Development.of..Animal.health.care.services
## 1                              Not bad, not good
## 2                                            Bad
## 3                                           Good
## 4                                            Bad
## 5                              Not bad, not good
## 6                              Not bad, not good
## 7                                            Bad
## 8                              Not bad, not good
## 9                              Not bad, not good
## 10                                          <NA>
## 11                                          Good
## 12                             Not bad, not good
## 13                                          Good
## 14                             Not bad, not good
## 15                             Not bad, not good
## 16                                           Bad
## 17                                          Good
## 18                             Not bad, not good
## 19                                          Good
## 20                                          Good
## 21                             Not bad, not good
## 22                                           Bad
## 23                             Not bad, not good
## 24                                           Bad
## 25                             Not bad, not good
## 26                             Not bad, not good
## 27                                          Good
## 28                                          Good
## 29                                          Good
## 30                             Not bad, not good
## 31                             Not bad, not good
## 32                                          Good
## 33                                          Good
## 34                             Not bad, not good
## 35                             Not bad, not good
## 36                             Not bad, not good
## 37                             Not bad, not good
## 38                             Not bad, not good
## 39                             Not bad, not good
## 40                             Not bad, not good
## 41                             Not bad, not good
## 42                             Not bad, not good
## 43                             Not bad, not good
## 44                             Not bad, not good
## 45                                    Don't Know
## 46                                           Bad
## 47                             Not bad, not good
## 48                                           Bad
## 49                                           Bad
## 50                                           Bad
## 51                                    Don't Know
## 52                                      Very bad
## 53                             Not bad, not good
## 54                                           Bad
## 55                             Not bad, not good
## 56                                      Very bad
## 57                                           Bad
## 58                                      Very bad
## 59                                      Very bad
## 60                                      Very bad
## 61                             Not bad, not good
## 62                                      Very bad
## 63                                      Very bad
## 64                                      Very bad
## 65                                      Very bad
## 66                                      Very bad
## 67                                      Very bad
## 68                                      Very bad
## 69                                      Very bad
## 70                                      Very bad
## 71                                      Very bad
## 72                                      Very bad
## 73                                      Very bad
## 74                                      Very bad
## 75                                      Very bad
## 76                                      Very bad
## 77                                      Very bad
## 78                                      Very bad
## 79                                      Very bad
## 80                                      Very bad
## 81                                      Very bad
## 82                                      Very bad
## 83                                      Very bad
## 84                                      Very bad
## 85                                      Very bad
## 86                             Not bad, not good
## 87                             Not bad, not good
## 88                                          Good
## 89                             Not bad, not good
## 90                             Not bad, not good
## 91                             Not bad, not good
## 92                             Not bad, not good
## 93                             Not bad, not good
## 94                             Not bad, not good
## 95                                      Very bad
## 96                                           Bad
## 97                                      Very bad
## 98                                      Very bad
## 99                                      Very bad
## 100                            Not bad, not good
## 101                            Not bad, not good
## 102                            Not bad, not good
## 103                            Not bad, not good
## 104                                          Bad
## 105                                          Bad
## 106                                         Good
## 107                                         Good
## 108                            Not bad, not good
## 109                            Not bad, not good
## 110                            Not bad, not good
## 111                            Not bad, not good
## 112                            Not bad, not good
## 113                            Not bad, not good
## 114                            Not bad, not good
## 115                            Not bad, not good
## 116                                     Very bad
## 117                                          Bad
## 118                                          Bad
## 119                            Not bad, not good
## 120                                          Bad
## 121                                          Bad
## 122                            Not bad, not good
## 123                                          Bad
## 124                            Not bad, not good
## 125                            Not bad, not good
## 126                                     Very bad
## 127                                          Bad
## 128                                         Good
## 129                            Not bad, not good
## 130                            Not bad, not good
## 131                                          Bad
## 132                            Not bad, not good
## 133                            Not bad, not good
## 134                                          Bad
## 135                            Not bad, not good
## 136                            Not bad, not good
## 137                                          Bad
## 138                            Not bad, not good
## 139                            Not bad, not good
## 140                                          Bad
## 141                                          Bad
## 142                            Not bad, not good
## 143                                          Bad
## 144                                          Bad
## 145                                          Bad
## 146                                          Bad
## 147                            Not bad, not good
## 148                            Not bad, not good
## 149                            Not bad, not good
## 150                            Not bad, not good
## 151                            Not bad, not good
## 152                                    Very good
## 153                                         Good
## 154                                         Good
## 155                            Not bad, not good
## 156                            Not bad, not good
## 157                            Not bad, not good
## 158                                         Good
## 159                                         Good
## 160                            Not bad, not good
## 161                            Not bad, not good
## 162                                         Good
## 163                                   Don't Know
## 164                                   Don't Know
## 165                                         Good
## 166                                         Good
## 167                                         Good
## 168                            Not bad, not good
## 169                            Not bad, not good
## 170                            Not bad, not good
## 171                            Not bad, not good
## 172                            Not bad, not good
## 173                                          Bad
## 174                            Not bad, not good
## 175                            Not bad, not good
## 176                            Not bad, not good
## 177                            Not bad, not good
## 178                            Not bad, not good
## 179                            Not bad, not good
## 180                                         Good
## 181                            Not bad, not good
## 182                            Not bad, not good
## 183                                   Don't Know
## 184                                         Good
## 185                                         Good
## 186                            Not bad, not good
## 187                            Not bad, not good
## 188                            Not bad, not good
## 189                            Not bad, not good
## 190                            Not bad, not good
## 191                            Not bad, not good
## 192                            Not bad, not good
## 193                            Not bad, not good
## 194                            Not bad, not good
## 195                                          Bad
## 196                                          Bad
## 197                                          Bad
## 198                            Not bad, not good
## 199                            Not bad, not good
## 200                                   Don't Know
## 201                                          Bad
## 202                                          Bad
## 203                                          Bad
## 204                                          Bad
## 205                            Not bad, not good
## 206                            Not bad, not good
## 207                            Not bad, not good
## 208                            Not bad, not good
## 209                                          Bad
## 210                                         Good
## 211                                         Good
## 212                                          Bad
## 213                                          Bad
## 214                                          Bad
## 215                                          Bad
## 216                                          Bad
## 217                                     Very bad
## 218                                          Bad
## 219                                          Bad
## 220                                          Bad
## 221                            Not bad, not good
## 222                            Not bad, not good
## 223                                         Good
## 224                                     Very bad
## 225                            Not bad, not good
## 226                            Not bad, not good
## 227                                         Good
## 228                            Not bad, not good
## 229                                         Good
## 230                            Not bad, not good
## 231                            Not bad, not good
## 232                                          Bad
## 233                                          Bad
## 234                                          Bad
## 235                                         Good
## 236                                          Bad
## 237                                         Good
## 238                                         Good
## 239                                          Bad
## 240                                          Bad
## 241                                          Bad
## 242                                          Bad
## 243                                          Bad
## 244                                          Bad
## 245                                          Bad
## 246                                          Bad
## 247                                         Good
## 248                            Not bad, not good
## 249                                         Good
## 250                            Not bad, not good
## 251                            Not bad, not good
## 252                            Not bad, not good
## 253                            Not bad, not good
## 254                                         Good
## 255                                         Good
## 256                                         Good
## 257                            Not bad, not good
## 258                                         Good
## 259                                         Good
## 260                                         Good
## 261                                         Good
## 262                            Not bad, not good
## 263                            Not bad, not good
## 264                                         Good
## 265                                         Good
## 266                                         Good
## 267                                         Good
## 268                                         Good
## 269                                         Good
## 270                            Not bad, not good
## 271                            Not bad, not good
## 272                            Not bad, not good
## 273                                         Good
## 274                                         Good
## 275                                         Good
## 276                            Not bad, not good
## 277                                         Good
## 278                                         Good
## 279                                         <NA>
## 280                            Not bad, not good
## 281                                         Good
## 282                                         Good
## 283                                         Good
## 284                                          Bad
## 285                                         Good
## 286                                         Good
## 287                            Not bad, not good
## 288                                         Good
## 289                            Not bad, not good
## 290                                         Good
## 291                                         Good
## 292                            Not bad, not good
## 293                                         Good
## 294                                         Good
## 295                            Not bad, not good
## 296                            Not bad, not good
## 297                            Not bad, not good
## 298                                         Good
## 299                                         Good
## 300                            Not bad, not good
## 302                            Not bad, not good
## 303                                     Very bad
## 304                                          Bad
## 305                                          Bad
## 306                                          Bad
## 307                                          Bad
## 308                                          Bad
## 309                                          Bad
## 310                                          Bad
## 311                                          Bad
## 312                            Not bad, not good
## 313                                          Bad
## 314                                          Bad
## 315                                          Bad
## 316                            Not bad, not good
## 317                            Not bad, not good
## 318                                     Very bad
## 319                                         Good
## 320                            Not bad, not good
## 321                            Not bad, not good
## 322                                          Bad
## 323                                         Good
## 324                            Not bad, not good
## 325                                          Bad
## 326                                          Bad
## 327                                          Bad
## 328                                          Bad
## 329                                     Very bad
## 330                                    Very good
## 331                            Not bad, not good
## 332                                         Good
## 333                                    Very good
## 334                                    Very good
## 335                            Not bad, not good
## 336                                          Bad
## 337                                    Very good
## 338                                          Bad
## 339                                         Good
## 340                                     Very bad
## 341                            Not bad, not good
## 342                                          Bad
## 343                                          Bad
## 344                                     Very bad
## 345                                          Bad
## 346                                     Very bad
## 347                                          Bad
## 348                                          Bad
## 349                                     Very bad
## 350                                          Bad
## 351                                          Bad
## 352                                   Don't Know
## 353                            Not bad, not good
## 354                                         Good
## 355                            Not bad, not good
## 356                            Not bad, not good
## 357                            Not bad, not good
## 358                                         Good
## 359                                         Good
## 360                                         Good
## 361                                         Good
## 362                                         Good
## 363                                         Good
## 364                                         Good
## 365                            Not bad, not good
## 366                            Not bad, not good
## 367                            Not bad, not good
## 368                            Not bad, not good
## 369                            Not bad, not good
## 370                            Not bad, not good
## 371                            Not bad, not good
## 372                                         Good
## 373                            Not bad, not good
## 374                                         Good
## 375                                   Don't Know
## 376                            Not bad, not good
## 377                                         Good
## 378                                         Good
## 379                            Not bad, not good
## 380                            Not bad, not good
## 381                            Not bad, not good
## 382                            Not bad, not good
## 383                            Not bad, not good
## 384                            Not bad, not good
## 385                            Not bad, not good
## 386                            Not bad, not good
## 387                            Not bad, not good
## 388                            Not bad, not good
## 389                            Not bad, not good
## 390                                         Good
## 391                            Not bad, not good
## 392                                         Good
## 393                            Not bad, not good
## 394                            Not bad, not good
## 395                                         Good
## 396                            Not bad, not good
## 397                            Not bad, not good
## 398                            Not bad, not good
## 399                            Not bad, not good
## 400                            Not bad, not good
## 401                            Not bad, not good
## 402                                         Good
## 403                                         Good
## 404                                         Good
## 405                            Not bad, not good
## 406                                         Good
## 407                                         Good
## 408                                    Very good
## 409                                         Good
## 410                                         Good
## 411                                    Very good
## 412                                    Very good
## 413                                    Very good
## 414                                         Good
## 415                                    Very good
## 416                                    Very good
## 417                                   Don't Know
## 418                                    Very good
## 419                                    Very good
## 420                                         <NA>
## 421                                    Very good
## 422                                    Very good
## 423                                         <NA>
## 424                                    Very good
## 425                                    Very good
## 426                                    Very good
## 427                                         Good
## 428                                         Good
## 429                                    Very good
## 430                                         Good
## 431                                    Very good
## 432                                    Very good
## 433                                    Very good
## 434                                    Very good
## 435                                    Very good
## 436                                    Very good
## 437                                         Good
## 438                                         Good
## 439                                    Very good
## 440                                    Very good
## 441                                    Very good
## 442                                         Good
## 443                                         Good
## 444                                    Very good
## 445                                    Very good
## 446                                         Good
## 447                                    Very good
## 448                                         Good
## 449                                    Very good
## 450                                         <NA>
## 451                                    Very good
## 452                                    Very good
## 453                                         Good
## 454                                          Bad
## 455                            Not bad, not good
## 456                            Not bad, not good
## 457                            Not bad, not good
## 458                                     Very bad
## 459                                          Bad
## 460                                          Bad
## 461                                    Very good
## 462                                         Good
## 463                                          Bad
## 464                                          Bad
## 465                            Not bad, not good
## 466                                          Bad
## 467                                         Good
## 468                                          Bad
## 469                            Not bad, not good
## 470                            Not bad, not good
## 471                                         Good
## 472                            Not bad, not good
## 473                            Not bad, not good
## 474                                          Bad
## 475                            Not bad, not good
## 476                                   Don't Know
## 477                                         Good
## 478                                          Bad
## 479                                   Don't Know
## 480                                          Bad
## 481                                          Bad
## 482                                     Very bad
## 483                            Not bad, not good
## 484                                          Bad
## 485                            Not bad, not good
## 486                                   Don't Know
## 487                                          Bad
## 488                            Not bad, not good
## 489                            Not bad, not good
## 490                                          Bad
## 491                            Not bad, not good
## 492                            Not bad, not good
## 493                                     Very bad
## 494                                         Good
## 495                                          Bad
## 496                                          Bad
##      Development.of..If.any.other Success.in..Reducing.poverty
## 1                            <NA>       Did not succeed at all
## 2                            <NA>       Did not succeed at all
## 3                            <NA>         Succeeded quite well
## 4                      Don't Know          Succeeded very well
## 5                            <NA>         Succeeded quite well
## 6                            <NA>        Did not quite succeed
## 7               Not bad, not good         Succeeded quite well
## 8                            <NA>         Succeeded quite well
## 9                            <NA> Neither succeeded nor failed
## 10                           <NA>       Did not succeed at all
## 11                           <NA>         Succeeded quite well
## 12                           <NA>        Did not quite succeed
## 13                           <NA>         Succeeded quite well
## 14                           <NA>        Did not quite succeed
## 15                           Good         Succeeded quite well
## 16                           <NA>         Succeeded quite well
## 17                           <NA>         Succeeded quite well
## 18                           <NA>        Did not quite succeed
## 19                           <NA>         Succeeded quite well
## 20                           <NA>        Did not quite succeed
## 21              Not bad, not good Neither succeeded nor failed
## 22                           <NA>        Did not quite succeed
## 23                           <NA>         Succeeded quite well
## 24                           <NA>         Succeeded quite well
## 25              Not bad, not good         Succeeded quite well
## 26                           <NA>        Did not quite succeed
## 27                            Bad         Succeeded quite well
## 28                           <NA>         Succeeded quite well
## 29                           <NA>                   Don't Know
## 30                           <NA> Neither succeeded nor failed
## 31                           <NA> Neither succeeded nor failed
## 32                           <NA> Neither succeeded nor failed
## 33              Not bad, not good         Succeeded quite well
## 34                           <NA>        Did not quite succeed
## 35                           <NA>       Did not succeed at all
## 36                           <NA> Neither succeeded nor failed
## 37                           <NA>        Did not quite succeed
## 38                           <NA>        Did not quite succeed
## 39                           <NA>        Did not quite succeed
## 40                           <NA>         Succeeded quite well
## 41                           <NA>         Succeeded quite well
## 42                           <NA> Neither succeeded nor failed
## 43                           <NA>         Succeeded quite well
## 44                           <NA> Neither succeeded nor failed
## 45                           <NA>        Did not quite succeed
## 46                           <NA>       Did not succeed at all
## 47                           <NA>        Did not quite succeed
## 48                           <NA>        Did not quite succeed
## 49                           <NA>        Did not quite succeed
## 50                           <NA>       Did not succeed at all
## 51                           <NA> Neither succeeded nor failed
## 52                           <NA>         Succeeded quite well
## 53                           <NA>         Succeeded quite well
## 54                           <NA>       Did not succeed at all
## 55                           <NA>        Did not quite succeed
## 56                           <NA>        Did not quite succeed
## 57                           <NA>        Did not quite succeed
## 58                           <NA> Neither succeeded nor failed
## 59                           <NA>        Did not quite succeed
## 60                           <NA>        Did not quite succeed
## 61                           <NA>         Succeeded quite well
## 62                           <NA>        Did not quite succeed
## 63                           <NA>        Did not quite succeed
## 64                           <NA>        Did not quite succeed
## 65                           <NA>        Did not quite succeed
## 66                           <NA>        Did not quite succeed
## 67                           <NA>        Did not quite succeed
## 68                           <NA>         Succeeded quite well
## 69                           <NA>         Succeeded quite well
## 70                           <NA>         Succeeded quite well
## 71                           <NA>        Did not quite succeed
## 72                           <NA>        Did not quite succeed
## 73                           <NA>        Did not quite succeed
## 74                           <NA>        Did not quite succeed
## 75                           <NA>         Succeeded quite well
## 76                           <NA>        Did not quite succeed
## 77                           <NA>         Succeeded quite well
## 78                           <NA>         Succeeded quite well
## 79                           <NA>        Did not quite succeed
## 80                           <NA>         Succeeded quite well
## 81                           <NA>        Did not quite succeed
## 82                           <NA>         Succeeded quite well
## 83                           <NA>         Succeeded quite well
## 84                           <NA>        Did not quite succeed
## 85                           <NA>         Succeeded quite well
## 86                           <NA>         Succeeded quite well
## 87                           <NA>         Succeeded quite well
## 88                           <NA>         Succeeded quite well
## 89                           <NA>         Succeeded quite well
## 90                           <NA>         Succeeded quite well
## 91                           <NA>         Succeeded quite well
## 92                           <NA>         Succeeded quite well
## 93                           <NA>         Succeeded quite well
## 94                           <NA>         Succeeded quite well
## 95                           <NA>         Succeeded quite well
## 96                           <NA>         Succeeded quite well
## 97                           <NA>         Succeeded quite well
## 98                           <NA>         Succeeded quite well
## 99                           <NA>         Succeeded quite well
## 100                          <NA>         Succeeded quite well
## 101                          <NA> Neither succeeded nor failed
## 102                          <NA>        Did not quite succeed
## 103                          <NA>         Succeeded quite well
## 104                          <NA> Neither succeeded nor failed
## 105                          <NA>        Did not quite succeed
## 106                          <NA>         Succeeded quite well
## 107                          <NA> Neither succeeded nor failed
## 108                          <NA>        Did not quite succeed
## 109                          <NA> Neither succeeded nor failed
## 110                          <NA> Neither succeeded nor failed
## 111                          <NA> Neither succeeded nor failed
## 112                    Don't Know Neither succeeded nor failed
## 113                    Don't Know Neither succeeded nor failed
## 114                    Don't Know Neither succeeded nor failed
## 115                    Don't Know Neither succeeded nor failed
## 116                    Don't Know Neither succeeded nor failed
## 117                           Bad Neither succeeded nor failed
## 118                    Don't Know Neither succeeded nor failed
## 119             Not bad, not good Neither succeeded nor failed
## 120                    Don't Know Neither succeeded nor failed
## 121                    Don't Know Neither succeeded nor failed
## 122                    Don't Know Neither succeeded nor failed
## 123                    Don't Know Neither succeeded nor failed
## 124                    Don't Know Neither succeeded nor failed
## 125                    Don't Know Neither succeeded nor failed
## 126                    Don't Know Neither succeeded nor failed
## 127                    Don't Know Neither succeeded nor failed
## 128                    Don't Know Neither succeeded nor failed
## 129                    Don't Know Neither succeeded nor failed
## 130             Not bad, not good        Did not quite succeed
## 131                    Don't Know Neither succeeded nor failed
## 132                    Don't Know Neither succeeded nor failed
## 133                    Don't Know Neither succeeded nor failed
## 134                    Don't Know Neither succeeded nor failed
## 135                    Don't Know Neither succeeded nor failed
## 136             Not bad, not good Neither succeeded nor failed
## 137                    Don't Know        Did not quite succeed
## 138                    Don't Know Neither succeeded nor failed
## 139                    Don't Know Neither succeeded nor failed
## 140                    Don't Know Neither succeeded nor failed
## 141                    Don't Know        Did not quite succeed
## 142                    Don't Know         Succeeded quite well
## 143                    Don't Know Neither succeeded nor failed
## 144                    Don't Know         Succeeded quite well
## 145                    Don't Know Neither succeeded nor failed
## 146                    Don't Know        Did not quite succeed
## 147                    Don't Know Neither succeeded nor failed
## 148                    Don't Know Neither succeeded nor failed
## 149                    Don't Know Neither succeeded nor failed
## 150                    Don't Know Neither succeeded nor failed
## 151                          <NA>        Did not quite succeed
## 152                          Good Neither succeeded nor failed
## 153                          <NA> Neither succeeded nor failed
## 154                          <NA>       Did not succeed at all
## 155                          <NA>         Succeeded quite well
## 156                          <NA>        Did not quite succeed
## 157                          <NA>         Succeeded quite well
## 158                          <NA>         Succeeded quite well
## 159                          <NA> Neither succeeded nor failed
## 160                          <NA> Neither succeeded nor failed
## 161                          <NA>         Succeeded quite well
## 162                          <NA> Neither succeeded nor failed
## 163                          <NA>       Did not succeed at all
## 164                          <NA>       Did not succeed at all
## 165                          <NA>         Succeeded quite well
## 166                          <NA>         Succeeded quite well
## 167                          <NA>         Succeeded quite well
## 168                          <NA> Neither succeeded nor failed
## 169                          <NA>         Succeeded quite well
## 170                          <NA>         Succeeded quite well
## 171                          <NA>         Succeeded quite well
## 172                          <NA>         Succeeded quite well
## 173                          <NA>         Succeeded quite well
## 174                          <NA>         Succeeded quite well
## 175                          <NA> Neither succeeded nor failed
## 176                          <NA>         Succeeded quite well
## 177                          <NA> Neither succeeded nor failed
## 178                          <NA> Neither succeeded nor failed
## 179                          <NA> Neither succeeded nor failed
## 180                          <NA> Neither succeeded nor failed
## 181                          <NA> Neither succeeded nor failed
## 182                          <NA> Neither succeeded nor failed
## 183                          <NA> Neither succeeded nor failed
## 184                          <NA>        Did not quite succeed
## 185                          <NA>        Did not quite succeed
## 186                          <NA> Neither succeeded nor failed
## 187                          <NA> Neither succeeded nor failed
## 188                          <NA>        Did not quite succeed
## 189                          <NA> Neither succeeded nor failed
## 190                          <NA> Neither succeeded nor failed
## 191                          <NA> Neither succeeded nor failed
## 192                          <NA> Neither succeeded nor failed
## 193                          <NA>       Did not succeed at all
## 194                          <NA> Neither succeeded nor failed
## 195                          <NA> Neither succeeded nor failed
## 196                          <NA>         Succeeded quite well
## 197                          <NA> Neither succeeded nor failed
## 198                          <NA> Neither succeeded nor failed
## 199                          <NA> Neither succeeded nor failed
## 200                          <NA>        Did not quite succeed
## 201                    Don't Know        Did not quite succeed
## 202                    Don't Know       Did not succeed at all
## 203                    Don't Know        Did not quite succeed
## 204                    Don't Know        Did not quite succeed
## 205                    Don't Know Neither succeeded nor failed
## 206                    Don't Know Neither succeeded nor failed
## 207                    Don't Know       Did not succeed at all
## 208                    Don't Know       Did not succeed at all
## 209                    Don't Know       Did not succeed at all
## 210                    Don't Know Neither succeeded nor failed
## 211                    Don't Know       Did not succeed at all
## 212                    Don't Know       Did not succeed at all
## 213                    Don't Know       Did not succeed at all
## 214                    Don't Know       Did not succeed at all
## 215                    Don't Know       Did not succeed at all
## 216                    Don't Know       Did not succeed at all
## 217                    Don't Know Neither succeeded nor failed
## 218                    Don't Know       Did not succeed at all
## 219                    Don't Know        Did not quite succeed
## 220                    Don't Know        Did not quite succeed
## 221                    Don't Know        Did not quite succeed
## 222                    Don't Know        Did not quite succeed
## 223                    Don't Know Neither succeeded nor failed
## 224                    Don't Know        Did not quite succeed
## 225                    Don't Know        Did not quite succeed
## 226                    Don't Know Neither succeeded nor failed
## 227                    Don't Know        Did not quite succeed
## 228                    Don't Know Neither succeeded nor failed
## 229                    Don't Know Neither succeeded nor failed
## 230                    Don't Know       Did not succeed at all
## 231                    Don't Know        Did not quite succeed
## 232                    Don't Know       Did not succeed at all
## 233                    Don't Know       Did not succeed at all
## 234                    Don't Know       Did not succeed at all
## 235                    Don't Know       Did not succeed at all
## 236                    Don't Know        Did not quite succeed
## 237                    Don't Know        Did not quite succeed
## 238                    Don't Know Neither succeeded nor failed
## 239                    Don't Know       Did not succeed at all
## 240                    Don't Know       Did not succeed at all
## 241                    Don't Know       Did not succeed at all
## 242                    Don't Know       Did not succeed at all
## 243                    Don't Know       Did not succeed at all
## 244                    Don't Know       Did not succeed at all
## 245                    Don't Know         Succeeded quite well
## 246                    Don't Know       Did not succeed at all
## 247                    Don't Know         Succeeded quite well
## 248                    Don't Know       Did not succeed at all
## 249                    Don't Know        Did not quite succeed
## 250                    Don't Know        Did not quite succeed
## 251                          <NA>         Succeeded quite well
## 252                          <NA>         Succeeded quite well
## 253                          <NA>        Did not quite succeed
## 254                          <NA>       Did not succeed at all
## 255                          <NA>        Did not quite succeed
## 256                          <NA>         Succeeded quite well
## 257                          <NA>        Did not quite succeed
## 258                          <NA>        Did not quite succeed
## 259                          <NA>       Did not succeed at all
## 260                          <NA>          Succeeded very well
## 261                          <NA>          Succeeded very well
## 262                          <NA>         Succeeded quite well
## 263                          <NA>                   Don't Know
## 264                          <NA>         Succeeded quite well
## 265                          <NA>       Did not succeed at all
## 266                          <NA> Neither succeeded nor failed
## 267                          <NA>       Did not succeed at all
## 268                          <NA>        Did not quite succeed
## 269                          <NA>       Did not succeed at all
## 270                          <NA>         Succeeded quite well
## 271                          <NA>        Did not quite succeed
## 272                          <NA>        Did not quite succeed
## 273                          Good         Succeeded quite well
## 274             Not bad, not good        Did not quite succeed
## 275                          Good         Succeeded quite well
## 276                          <NA>         Succeeded quite well
## 277                          <NA>                   Don't Know
## 278                          <NA>         Succeeded quite well
## 279                          <NA>          Succeeded very well
## 280                          <NA>        Did not quite succeed
## 281                          <NA>         Succeeded quite well
## 282                          <NA>        Did not quite succeed
## 283                          Good        Did not quite succeed
## 284                          <NA>        Did not quite succeed
## 285                          <NA>         Succeeded quite well
## 286                          <NA>        Did not quite succeed
## 287                          <NA>         Succeeded quite well
## 288                          <NA>         Succeeded quite well
## 289                          <NA>                   Don't Know
## 290                          <NA>         Succeeded quite well
## 291                          <NA>         Succeeded quite well
## 292                          <NA>         Succeeded quite well
## 293                          <NA>         Succeeded quite well
## 294                          <NA>         Succeeded quite well
## 295                          <NA>       Did not succeed at all
## 296                          <NA>       Did not succeed at all
## 297                          <NA>       Did not succeed at all
## 298             Not bad, not good         Succeeded quite well
## 299                          <NA>       Did not succeed at all
## 300                          <NA>         Succeeded quite well
## 302                          <NA>        Did not quite succeed
## 303                          <NA>        Did not quite succeed
## 304                          <NA>       Did not succeed at all
## 305                          <NA>       Did not succeed at all
## 306                          <NA>       Did not succeed at all
## 307                          <NA>         Succeeded quite well
## 308                          <NA>        Did not quite succeed
## 309                          <NA>        Did not quite succeed
## 310                          <NA>       Did not succeed at all
## 311                          <NA>        Did not quite succeed
## 312                          <NA>         Succeeded quite well
## 313                          <NA>        Did not quite succeed
## 314                          <NA>        Did not quite succeed
## 315                          <NA>         Succeeded quite well
## 316                          <NA>        Did not quite succeed
## 317                          <NA>       Did not succeed at all
## 318                          <NA>       Did not succeed at all
## 319                          <NA> Neither succeeded nor failed
## 320                          <NA>        Did not quite succeed
## 321                          <NA> Neither succeeded nor failed
## 322                          <NA>        Did not quite succeed
## 323                          <NA>        Did not quite succeed
## 324                          <NA>         Succeeded quite well
## 325                          <NA>         Succeeded quite well
## 326                          <NA>        Did not quite succeed
## 327                          <NA>        Did not quite succeed
## 328                          <NA>         Succeeded quite well
## 329                          <NA>        Did not quite succeed
## 330                          <NA>        Did not quite succeed
## 331                          <NA>          Succeeded very well
## 332                          <NA>         Succeeded quite well
## 333                          <NA>          Succeeded very well
## 334                          <NA>          Succeeded very well
## 335                          <NA>          Succeeded very well
## 336                          <NA> Neither succeeded nor failed
## 337                          <NA>          Succeeded very well
## 338                          <NA> Neither succeeded nor failed
## 339                          <NA>        Did not quite succeed
## 340                          <NA>        Did not quite succeed
## 341                          <NA>        Did not quite succeed
## 342                          <NA>          Succeeded very well
## 343                          <NA>        Did not quite succeed
## 344                          <NA>        Did not quite succeed
## 345                          <NA>       Did not succeed at all
## 346                          <NA>         Succeeded quite well
## 347                          <NA>       Did not succeed at all
## 348                          <NA> Neither succeeded nor failed
## 349                          <NA>       Did not succeed at all
## 350                          <NA>        Did not quite succeed
## 351                          <NA>       Did not succeed at all
## 352                          <NA> Neither succeeded nor failed
## 353                          <NA>       Did not succeed at all
## 354                          <NA>        Did not quite succeed
## 355                          <NA>        Did not quite succeed
## 356                          <NA>        Did not quite succeed
## 357                          <NA> Neither succeeded nor failed
## 358                          <NA>       Did not succeed at all
## 359                          <NA>       Did not succeed at all
## 360                          <NA>         Succeeded quite well
## 361                          <NA>        Did not quite succeed
## 362                          <NA>        Did not quite succeed
## 363                          <NA> Neither succeeded nor failed
## 364                          <NA>       Did not succeed at all
## 365                          <NA>        Did not quite succeed
## 366                          <NA>       Did not succeed at all
## 367                          <NA>        Did not quite succeed
## 368                          <NA>        Did not quite succeed
## 369                          <NA>        Did not quite succeed
## 370                          <NA>        Did not quite succeed
## 371                          <NA>        Did not quite succeed
## 372                          <NA>        Did not quite succeed
## 373                          <NA> Neither succeeded nor failed
## 374                          <NA>         Succeeded quite well
## 375                          <NA>       Did not succeed at all
## 376                          <NA>        Did not quite succeed
## 377                          <NA>       Did not succeed at all
## 378                          <NA>         Succeeded quite well
## 379                          <NA>        Did not quite succeed
## 380                          <NA>       Did not succeed at all
## 381                          <NA>       Did not succeed at all
## 382                          <NA>        Did not quite succeed
## 383                          <NA>       Did not succeed at all
## 384                          <NA>       Did not succeed at all
## 385                          <NA>       Did not succeed at all
## 386                          <NA>        Did not quite succeed
## 387                          <NA>       Did not succeed at all
## 388                          <NA>        Did not quite succeed
## 389                          <NA>        Did not quite succeed
## 390                          <NA>                   Don't Know
## 391                          <NA>        Did not quite succeed
## 392                          <NA>        Did not quite succeed
## 393                          <NA>        Did not quite succeed
## 394                          <NA>        Did not quite succeed
## 395                          <NA>        Did not quite succeed
## 396                          <NA>        Did not quite succeed
## 397                          <NA>        Did not quite succeed
## 398                          <NA>        Did not quite succeed
## 399                          <NA>        Did not quite succeed
## 400                          <NA>        Did not quite succeed
## 401                          <NA>       Did not succeed at all
## 402                          Good       Did not succeed at all
## 403                          <NA> Neither succeeded nor failed
## 404                          <NA> Neither succeeded nor failed
## 405                          <NA> Neither succeeded nor failed
## 406                          <NA>       Did not succeed at all
## 407                          Good        Did not quite succeed
## 408                          <NA>        Did not quite succeed
## 409                    Don't Know        Did not quite succeed
## 410                          <NA>        Did not quite succeed
## 411                     Very good       Did not succeed at all
## 412                          <NA>       Did not succeed at all
## 413                          <NA>       Did not succeed at all
## 414                          <NA>        Did not quite succeed
## 415                     Very good       Did not succeed at all
## 416                     Very good       Did not succeed at all
## 417                    Don't Know        Did not quite succeed
## 418                          <NA>       Did not succeed at all
## 419                          <NA>       Did not succeed at all
## 420                          <NA>                         <NA>
## 421                          <NA>       Did not succeed at all
## 422                          <NA>                   Don't Know
## 423                          <NA>                         <NA>
## 424                          <NA>       Did not succeed at all
## 425                     Very good        Did not quite succeed
## 426                          <NA>       Did not succeed at all
## 427                          Good        Did not quite succeed
## 428                          Good                   Don't Know
## 429                     Very good       Did not succeed at all
## 430                          Good       Did not succeed at all
## 431                     Very good       Did not succeed at all
## 432                     Very good       Did not succeed at all
## 433                          <NA>       Did not succeed at all
## 434                     Very good       Did not succeed at all
## 435                     Very good       Did not succeed at all
## 436                          <NA>       Did not succeed at all
## 437                          Good       Did not succeed at all
## 438                          <NA>         Succeeded quite well
## 439                     Very good       Did not succeed at all
## 440                     Very good       Did not succeed at all
## 441                     Very good       Did not succeed at all
## 442                          Good        Did not quite succeed
## 443                          Good       Did not succeed at all
## 444                          <NA>       Did not succeed at all
## 445                     Very good       Did not succeed at all
## 446                          <NA>       Did not succeed at all
## 447                          <NA>       Did not succeed at all
## 448                          Good       Did not succeed at all
## 449                     Very good       Did not succeed at all
## 450                          <NA>        Did not quite succeed
## 451                          <NA>       Did not succeed at all
## 452                          <NA>       Did not succeed at all
## 453                          <NA>        Did not quite succeed
## 454                          <NA>       Did not succeed at all
## 455                          <NA>       Did not succeed at all
## 456                          <NA>         Succeeded quite well
## 457                          <NA> Neither succeeded nor failed
## 458                          <NA>        Did not quite succeed
## 459                          <NA>        Did not quite succeed
## 460                     Very good         Succeeded quite well
## 461                          <NA>          Succeeded very well
## 462                    Don't Know         Succeeded quite well
## 463                           Bad        Did not quite succeed
## 464                           Bad        Did not quite succeed
## 465                          <NA>        Did not quite succeed
## 466                          <NA> Neither succeeded nor failed
## 467                          <NA>         Succeeded quite well
## 468                          <NA>        Did not quite succeed
## 469                          <NA>         Succeeded quite well
## 470                    Don't Know Neither succeeded nor failed
## 471                          <NA>         Succeeded quite well
## 472                          <NA>        Did not quite succeed
## 473                          <NA>                   Don't Know
## 474                          <NA> Neither succeeded nor failed
## 475                          <NA>        Did not quite succeed
## 476                          <NA>                   Don't Know
## 477                          <NA> Neither succeeded nor failed
## 478                          <NA>        Did not quite succeed
## 479                          <NA>       Did not succeed at all
## 480                          <NA>        Did not quite succeed
## 481                          <NA>        Did not quite succeed
## 482                          <NA>       Did not succeed at all
## 483                          <NA>        Did not quite succeed
## 484                          <NA>        Did not quite succeed
## 485                          <NA>        Did not quite succeed
## 486                          <NA>        Did not quite succeed
## 487                    Don't Know Neither succeeded nor failed
## 488             Not bad, not good        Did not quite succeed
## 489                          <NA> Neither succeeded nor failed
## 490                          <NA>          Succeeded very well
## 491                           Bad Neither succeeded nor failed
## 492                          <NA> Neither succeeded nor failed
## 493                          <NA>       Did not succeed at all
## 494                          <NA>        Did not quite succeed
## 495                      Very bad       Did not succeed at all
## 496                          <NA>         Succeeded quite well
##        Success.in..Checking.crime
## 1          Did not succeed at all
## 2          Did not succeed at all
## 3            Succeeded quite well
## 4             Succeeded very well
## 5          Did not succeed at all
## 6          Did not succeed at all
## 7            Succeeded quite well
## 8           Did not quite succeed
## 9          Did not succeed at all
## 10         Did not succeed at all
## 11   Neither succeeded nor failed
## 12         Did not succeed at all
## 13           Succeeded quite well
## 14                           <NA>
## 15            Succeeded very well
## 16   Neither succeeded nor failed
## 17   Neither succeeded nor failed
## 18          Did not quite succeed
## 19   Neither succeeded nor failed
## 20           Succeeded quite well
## 21          Did not quite succeed
## 22         Did not succeed at all
## 23   Neither succeeded nor failed
## 24          Did not quite succeed
## 25           Succeeded quite well
## 26          Did not quite succeed
## 27           Succeeded quite well
## 28   Neither succeeded nor failed
## 29                     Don't Know
## 30          Did not quite succeed
## 31           Succeeded quite well
## 32          Did not quite succeed
## 33          Did not quite succeed
## 34          Did not quite succeed
## 35          Did not quite succeed
## 36   Neither succeeded nor failed
## 37          Did not quite succeed
## 38          Did not quite succeed
## 39          Did not quite succeed
## 40         Did not succeed at all
## 41          Did not quite succeed
## 42          Did not quite succeed
## 43          Did not quite succeed
## 44         Did not succeed at all
## 45          Did not quite succeed
## 46          Did not quite succeed
## 47          Did not quite succeed
## 48          Did not quite succeed
## 49   Neither succeeded nor failed
## 50          Did not quite succeed
## 51   Neither succeeded nor failed
## 52          Did not quite succeed
## 53           Succeeded quite well
## 54          Did not quite succeed
## 55          Did not quite succeed
## 56          Did not quite succeed
## 57          Did not quite succeed
## 58          Did not quite succeed
## 59          Did not quite succeed
## 60          Did not quite succeed
## 61           Succeeded quite well
## 62          Did not quite succeed
## 63          Did not quite succeed
## 64          Did not quite succeed
## 65          Did not quite succeed
## 66          Did not quite succeed
## 67          Did not quite succeed
## 68           Succeeded quite well
## 69           Succeeded quite well
## 70           Succeeded quite well
## 71          Did not quite succeed
## 72           Succeeded quite well
## 73          Did not quite succeed
## 74          Did not quite succeed
## 75           Succeeded quite well
## 76          Did not quite succeed
## 77           Succeeded quite well
## 78           Succeeded quite well
## 79          Did not quite succeed
## 80           Succeeded quite well
## 81          Did not quite succeed
## 82           Succeeded quite well
## 83           Succeeded quite well
## 84          Did not quite succeed
## 85           Succeeded quite well
## 86           Succeeded quite well
## 87          Did not quite succeed
## 88           Succeeded quite well
## 89           Succeeded quite well
## 90           Succeeded quite well
## 91           Succeeded quite well
## 92           Succeeded quite well
## 93           Succeeded quite well
## 94           Succeeded quite well
## 95           Succeeded quite well
## 96           Succeeded quite well
## 97           Succeeded quite well
## 98           Succeeded quite well
## 99           Succeeded quite well
## 100          Succeeded quite well
## 101         Did not quite succeed
## 102         Did not quite succeed
## 103          Succeeded quite well
## 104  Neither succeeded nor failed
## 105  Neither succeeded nor failed
## 106          Succeeded quite well
## 107          Succeeded quite well
## 108         Did not quite succeed
## 109  Neither succeeded nor failed
## 110  Neither succeeded nor failed
## 111  Neither succeeded nor failed
## 112  Neither succeeded nor failed
## 113          Succeeded quite well
## 114  Neither succeeded nor failed
## 115  Neither succeeded nor failed
## 116  Neither succeeded nor failed
## 117          Succeeded quite well
## 118  Neither succeeded nor failed
## 119          Succeeded quite well
## 120  Neither succeeded nor failed
## 121  Neither succeeded nor failed
## 122  Neither succeeded nor failed
## 123  Neither succeeded nor failed
## 124  Neither succeeded nor failed
## 125  Neither succeeded nor failed
## 126          Succeeded quite well
## 127         Did not quite succeed
## 128  Neither succeeded nor failed
## 129  Neither succeeded nor failed
## 130         Did not quite succeed
## 131  Neither succeeded nor failed
## 132          Succeeded quite well
## 133  Neither succeeded nor failed
## 134  Neither succeeded nor failed
## 135  Neither succeeded nor failed
## 136  Neither succeeded nor failed
## 137         Did not quite succeed
## 138         Did not quite succeed
## 139  Neither succeeded nor failed
## 140  Neither succeeded nor failed
## 141         Did not quite succeed
## 142          Succeeded quite well
## 143  Neither succeeded nor failed
## 144  Neither succeeded nor failed
## 145  Neither succeeded nor failed
## 146         Did not quite succeed
## 147  Neither succeeded nor failed
## 148          Succeeded quite well
## 149  Neither succeeded nor failed
## 150  Neither succeeded nor failed
## 151         Did not quite succeed
## 152         Did not quite succeed
## 153                    Don't Know
## 154        Did not succeed at all
## 155  Neither succeeded nor failed
## 156         Did not quite succeed
## 157         Did not quite succeed
## 158          Succeeded quite well
## 159          Succeeded quite well
## 160          Succeeded quite well
## 161  Neither succeeded nor failed
## 162         Did not quite succeed
## 163                    Don't Know
## 164        Did not succeed at all
## 165          Succeeded quite well
## 166  Neither succeeded nor failed
## 167          Succeeded quite well
## 168         Did not quite succeed
## 169  Neither succeeded nor failed
## 170         Did not quite succeed
## 171         Did not quite succeed
## 172         Did not quite succeed
## 173  Neither succeeded nor failed
## 174  Neither succeeded nor failed
## 175         Did not quite succeed
## 176         Did not quite succeed
## 177         Did not quite succeed
## 178         Did not quite succeed
## 179         Did not quite succeed
## 180         Did not quite succeed
## 181         Did not quite succeed
## 182         Did not quite succeed
## 183         Did not quite succeed
## 184         Did not quite succeed
## 185         Did not quite succeed
## 186         Did not quite succeed
## 187         Did not quite succeed
## 188        Did not succeed at all
## 189         Did not quite succeed
## 190         Did not quite succeed
## 191         Did not quite succeed
## 192         Did not quite succeed
## 193        Did not succeed at all
## 194         Did not quite succeed
## 195        Did not succeed at all
## 196         Did not quite succeed
## 197         Did not quite succeed
## 198         Did not quite succeed
## 199         Did not quite succeed
## 200        Did not succeed at all
## 201  Neither succeeded nor failed
## 202         Did not quite succeed
## 203         Did not quite succeed
## 204  Neither succeeded nor failed
## 205         Did not quite succeed
## 206        Did not succeed at all
## 207         Did not quite succeed
## 208         Did not quite succeed
## 209         Did not quite succeed
## 210         Did not quite succeed
## 211         Did not quite succeed
## 212         Did not quite succeed
## 213         Did not quite succeed
## 214         Did not quite succeed
## 215         Did not quite succeed
## 216         Did not quite succeed
## 217         Did not quite succeed
## 218        Did not succeed at all
## 219         Did not quite succeed
## 220         Did not quite succeed
## 221        Did not succeed at all
## 222  Neither succeeded nor failed
## 223         Did not quite succeed
## 224        Did not succeed at all
## 225         Did not quite succeed
## 226          Succeeded quite well
## 227  Neither succeeded nor failed
## 228         Did not quite succeed
## 229         Did not quite succeed
## 230         Did not quite succeed
## 231         Did not quite succeed
## 232         Did not quite succeed
## 233         Did not quite succeed
## 234         Did not quite succeed
## 235         Did not quite succeed
## 236  Neither succeeded nor failed
## 237  Neither succeeded nor failed
## 238  Neither succeeded nor failed
## 239         Did not quite succeed
## 240         Did not quite succeed
## 241         Did not quite succeed
## 242         Did not quite succeed
## 243         Did not quite succeed
## 244         Did not quite succeed
## 245  Neither succeeded nor failed
## 246         Did not quite succeed
## 247  Neither succeeded nor failed
## 248         Did not quite succeed
## 249         Did not quite succeed
## 250        Did not succeed at all
## 251          Succeeded quite well
## 252         Did not quite succeed
## 253         Did not quite succeed
## 254        Did not succeed at all
## 255          Succeeded quite well
## 256          Succeeded quite well
## 257         Did not quite succeed
## 258         Did not quite succeed
## 259         Did not quite succeed
## 260          Succeeded quite well
## 261          Succeeded quite well
## 262          Succeeded quite well
## 263                    Don't Know
## 264          Succeeded quite well
## 265        Did not succeed at all
## 266  Neither succeeded nor failed
## 267        Did not succeed at all
## 268         Did not quite succeed
## 269        Did not succeed at all
## 270          Succeeded quite well
## 271         Did not quite succeed
## 272         Did not quite succeed
## 273          Succeeded quite well
## 274          Succeeded quite well
## 275        Did not succeed at all
## 276         Did not quite succeed
## 277                    Don't Know
## 278          Succeeded quite well
## 279           Succeeded very well
## 280  Neither succeeded nor failed
## 281          Succeeded quite well
## 282         Did not quite succeed
## 283         Did not quite succeed
## 284          Succeeded quite well
## 285          Succeeded quite well
## 286         Did not quite succeed
## 287  Neither succeeded nor failed
## 288        Did not succeed at all
## 289                    Don't Know
## 290          Succeeded quite well
## 291          Succeeded quite well
## 292          Succeeded quite well
## 293          Succeeded quite well
## 294          Succeeded quite well
## 295        Did not succeed at all
## 296         Did not quite succeed
## 297         Did not quite succeed
## 298          Succeeded quite well
## 299        Did not succeed at all
## 300          Succeeded quite well
## 302         Did not quite succeed
## 303  Neither succeeded nor failed
## 304        Did not succeed at all
## 305        Did not succeed at all
## 306        Did not succeed at all
## 307         Did not quite succeed
## 308         Did not quite succeed
## 309         Did not quite succeed
## 310        Did not succeed at all
## 311         Did not quite succeed
## 312          Succeeded quite well
## 313         Did not quite succeed
## 314         Did not quite succeed
## 315          Succeeded quite well
## 316         Did not quite succeed
## 317        Did not succeed at all
## 318        Did not succeed at all
## 319        Did not succeed at all
## 320         Did not quite succeed
## 321         Did not quite succeed
## 322         Did not quite succeed
## 323         Did not quite succeed
## 324          Succeeded quite well
## 325          Succeeded quite well
## 326         Did not quite succeed
## 327         Did not quite succeed
## 328         Did not quite succeed
## 329  Neither succeeded nor failed
## 330         Did not quite succeed
## 331          Succeeded quite well
## 332  Neither succeeded nor failed
## 333          Succeeded quite well
## 334          Succeeded quite well
## 335         Did not quite succeed
## 336         Did not quite succeed
## 337  Neither succeeded nor failed
## 338          Succeeded quite well
## 339          Succeeded quite well
## 340         Did not quite succeed
## 341         Did not quite succeed
## 342          Succeeded quite well
## 343        Did not succeed at all
## 344          Succeeded quite well
## 345        Did not succeed at all
## 346          Succeeded quite well
## 347        Did not succeed at all
## 348  Neither succeeded nor failed
## 349        Did not succeed at all
## 350        Did not succeed at all
## 351        Did not succeed at all
## 352                    Don't Know
## 353         Did not quite succeed
## 354         Did not quite succeed
## 355         Did not quite succeed
## 356         Did not quite succeed
## 357  Neither succeeded nor failed
## 358         Did not quite succeed
## 359         Did not quite succeed
## 360          Succeeded quite well
## 361          Succeeded quite well
## 362         Did not quite succeed
## 363          Succeeded quite well
## 364        Did not succeed at all
## 365                    Don't Know
## 366         Did not quite succeed
## 367         Did not quite succeed
## 368         Did not quite succeed
## 369         Did not quite succeed
## 370         Did not quite succeed
## 371         Did not quite succeed
## 372         Did not quite succeed
## 373  Neither succeeded nor failed
## 374          Succeeded quite well
## 375        Did not succeed at all
## 376         Did not quite succeed
## 377         Did not quite succeed
## 378         Did not quite succeed
## 379         Did not quite succeed
## 380         Did not quite succeed
## 381         Did not quite succeed
## 382                    Don't Know
## 383         Did not quite succeed
## 384         Did not quite succeed
## 385         Did not quite succeed
## 386         Did not quite succeed
## 387         Did not quite succeed
## 388         Did not quite succeed
## 389         Did not quite succeed
## 390          Succeeded quite well
## 391         Did not quite succeed
## 392         Did not quite succeed
## 393         Did not quite succeed
## 394         Did not quite succeed
## 395         Did not quite succeed
## 396         Did not quite succeed
## 397        Did not succeed at all
## 398         Did not quite succeed
## 399         Did not quite succeed
## 400         Did not quite succeed
## 401         Did not quite succeed
## 402        Did not succeed at all
## 403         Did not quite succeed
## 404          Succeeded quite well
## 405  Neither succeeded nor failed
## 406         Did not quite succeed
## 407        Did not succeed at all
## 408         Did not quite succeed
## 409         Did not quite succeed
## 410         Did not quite succeed
## 411        Did not succeed at all
## 412        Did not succeed at all
## 413        Did not succeed at all
## 414         Did not quite succeed
## 415        Did not succeed at all
## 416        Did not succeed at all
## 417         Did not quite succeed
## 418        Did not succeed at all
## 419        Did not succeed at all
## 420                          <NA>
## 421        Did not succeed at all
## 422                    Don't Know
## 423                          <NA>
## 424        Did not succeed at all
## 425         Did not quite succeed
## 426        Did not succeed at all
## 427         Did not quite succeed
## 428                    Don't Know
## 429        Did not succeed at all
## 430        Did not succeed at all
## 431        Did not succeed at all
## 432        Did not succeed at all
## 433        Did not succeed at all
## 434        Did not succeed at all
## 435        Did not succeed at all
## 436        Did not succeed at all
## 437        Did not succeed at all
## 438         Did not quite succeed
## 439        Did not succeed at all
## 440        Did not succeed at all
## 441        Did not succeed at all
## 442         Did not quite succeed
## 443        Did not succeed at all
## 444        Did not succeed at all
## 445        Did not succeed at all
## 446        Did not succeed at all
## 447        Did not succeed at all
## 448        Did not succeed at all
## 449        Did not succeed at all
## 450         Did not quite succeed
## 451        Did not succeed at all
## 452        Did not succeed at all
## 453         Did not quite succeed
## 454         Did not quite succeed
## 455        Did not succeed at all
## 456          Succeeded quite well
## 457  Neither succeeded nor failed
## 458         Did not quite succeed
## 459          Succeeded quite well
## 460  Neither succeeded nor failed
## 461          Succeeded quite well
## 462  Neither succeeded nor failed
## 463          Succeeded quite well
## 464  Neither succeeded nor failed
## 465          Succeeded quite well
## 466        Did not succeed at all
## 467          Succeeded quite well
## 468        Did not succeed at all
## 469          Succeeded quite well
## 470  Neither succeeded nor failed
## 471         Did not quite succeed
## 472         Did not quite succeed
## 473                    Don't Know
## 474         Did not quite succeed
## 475          Succeeded quite well
## 476                    Don't Know
## 477         Did not quite succeed
## 478         Did not quite succeed
## 479        Did not succeed at all
## 480         Did not quite succeed
## 481         Did not quite succeed
## 482        Did not succeed at all
## 483        Did not succeed at all
## 484        Did not succeed at all
## 485        Did not succeed at all
## 486         Did not quite succeed
## 487          Succeeded quite well
## 488         Did not quite succeed
## 489         Did not quite succeed
## 490           Succeeded very well
## 491         Did not quite succeed
## 492          Succeeded quite well
## 493         Did not quite succeed
## 494         Did not quite succeed
## 495          Succeeded quite well
## 496          Succeeded quite well
##      Success.in..Ensuring.people.s.safety.and.security
## 1                               Did not succeed at all
## 2                               Did not succeed at all
## 3                                 Succeeded quite well
## 4                                  Succeeded very well
## 5                                Did not quite succeed
## 6                                Did not quite succeed
## 7                                 Succeeded quite well
## 8                                Did not quite succeed
## 9                                Did not quite succeed
## 10                              Did not succeed at all
## 11                                Succeeded quite well
## 12                              Did not succeed at all
## 13                               Did not quite succeed
## 14                               Did not quite succeed
## 15                                Succeeded quite well
## 16                                Succeeded quite well
## 17                               Did not quite succeed
## 18                              Did not succeed at all
## 19                        Neither succeeded nor failed
## 20                               Did not quite succeed
## 21                               Did not quite succeed
## 22                              Did not succeed at all
## 23                                Succeeded quite well
## 24                        Neither succeeded nor failed
## 25                                Succeeded quite well
## 26                        Neither succeeded nor failed
## 27                                Succeeded quite well
## 28                        Neither succeeded nor failed
## 29                                          Don't Know
## 30                               Did not quite succeed
## 31                        Neither succeeded nor failed
## 32                               Did not quite succeed
## 33                                Succeeded quite well
## 34                               Did not quite succeed
## 35                               Did not quite succeed
## 36                        Neither succeeded nor failed
## 37                               Did not quite succeed
## 38                               Did not quite succeed
## 39                               Did not quite succeed
## 40                              Did not succeed at all
## 41                                Succeeded quite well
## 42                               Did not quite succeed
## 43                               Did not quite succeed
## 44                              Did not succeed at all
## 45                               Did not quite succeed
## 46                               Did not quite succeed
## 47                               Did not quite succeed
## 48                              Did not succeed at all
## 49                        Neither succeeded nor failed
## 50                                          Don't Know
## 51                        Neither succeeded nor failed
## 52                               Did not quite succeed
## 53                                Succeeded quite well
## 54                              Did not succeed at all
## 55                               Did not quite succeed
## 56                               Did not quite succeed
## 57                               Did not quite succeed
## 58                               Did not quite succeed
## 59                                Succeeded quite well
## 60                               Did not quite succeed
## 61                                Succeeded quite well
## 62                               Did not quite succeed
## 63                               Did not quite succeed
## 64                               Did not quite succeed
## 65                               Did not quite succeed
## 66                              Did not succeed at all
## 67                               Did not quite succeed
## 68                                Succeeded quite well
## 69                                Succeeded quite well
## 70                                Succeeded quite well
## 71                               Did not quite succeed
## 72                                Succeeded quite well
## 73                                Succeeded quite well
## 74                               Did not quite succeed
## 75                                Succeeded quite well
## 76                               Did not quite succeed
## 77                                Succeeded quite well
## 78                                Succeeded quite well
## 79                               Did not quite succeed
## 80                                Succeeded quite well
## 81                               Did not quite succeed
## 82                                Succeeded quite well
## 83                                Succeeded quite well
## 84                               Did not quite succeed
## 85                                Succeeded quite well
## 86                                Succeeded quite well
## 87                               Did not quite succeed
## 88                                Succeeded quite well
## 89                                Succeeded quite well
## 90                                Succeeded quite well
## 91                                Succeeded quite well
## 92                        Neither succeeded nor failed
## 93                                Succeeded quite well
## 94                                Succeeded quite well
## 95                                Succeeded quite well
## 96                                Succeeded quite well
## 97                                Succeeded quite well
## 98                                Succeeded quite well
## 99                                Succeeded quite well
## 100                               Succeeded quite well
## 101                              Did not quite succeed
## 102                              Did not quite succeed
## 103                                Succeeded very well
## 104                       Neither succeeded nor failed
## 105                               Succeeded quite well
## 106                               Succeeded quite well
## 107                       Neither succeeded nor failed
## 108                               Succeeded quite well
## 109                       Neither succeeded nor failed
## 110                       Neither succeeded nor failed
## 111                       Neither succeeded nor failed
## 112                       Neither succeeded nor failed
## 113                               Succeeded quite well
## 114                       Neither succeeded nor failed
## 115                       Neither succeeded nor failed
## 116                       Neither succeeded nor failed
## 117                       Neither succeeded nor failed
## 118                               Succeeded quite well
## 119                               Succeeded quite well
## 120                       Neither succeeded nor failed
## 121                               Succeeded quite well
## 122                       Neither succeeded nor failed
## 123                               Succeeded quite well
## 124                       Neither succeeded nor failed
## 125                       Neither succeeded nor failed
## 126                               Succeeded quite well
## 127                       Neither succeeded nor failed
## 128                               Succeeded quite well
## 129                               Succeeded quite well
## 130                              Did not quite succeed
## 131                       Neither succeeded nor failed
## 132                               Succeeded quite well
## 133                               Succeeded quite well
## 134                       Neither succeeded nor failed
## 135                       Neither succeeded nor failed
## 136                       Neither succeeded nor failed
## 137                               Succeeded quite well
## 138                              Did not quite succeed
## 139                       Neither succeeded nor failed
## 140                       Neither succeeded nor failed
## 141                               Succeeded quite well
## 142                               Succeeded quite well
## 143                       Neither succeeded nor failed
## 144                               Succeeded quite well
## 145                               Succeeded quite well
## 146                               Succeeded quite well
## 147                       Neither succeeded nor failed
## 148                               Succeeded quite well
## 149                       Neither succeeded nor failed
## 150                       Neither succeeded nor failed
## 151                              Did not quite succeed
## 152                                         Don't Know
## 153                                         Don't Know
## 154                             Did not succeed at all
## 155                              Did not quite succeed
## 156                              Did not quite succeed
## 157                              Did not quite succeed
## 158                               Succeeded quite well
## 159                       Neither succeeded nor failed
## 160                       Neither succeeded nor failed
## 161                       Neither succeeded nor failed
## 162                              Did not quite succeed
## 163                                         Don't Know
## 164                             Did not succeed at all
## 165                               Succeeded quite well
## 166                              Did not quite succeed
## 167                               Succeeded quite well
## 168                              Did not quite succeed
## 169                              Did not quite succeed
## 170                              Did not quite succeed
## 171                             Did not succeed at all
## 172                                         Don't Know
## 173                                         Don't Know
## 174                              Did not quite succeed
## 175                             Did not succeed at all
## 176                       Neither succeeded nor failed
## 177                              Did not quite succeed
## 178                              Did not quite succeed
## 179                              Did not quite succeed
## 180                              Did not quite succeed
## 181                              Did not quite succeed
## 182                              Did not quite succeed
## 183                              Did not quite succeed
## 184                              Did not quite succeed
## 185                              Did not quite succeed
## 186                             Did not succeed at all
## 187                              Did not quite succeed
## 188                             Did not succeed at all
## 189                             Did not succeed at all
## 190                             Did not succeed at all
## 191                             Did not succeed at all
## 192                             Did not succeed at all
## 193                             Did not succeed at all
## 194                             Did not succeed at all
## 195                             Did not succeed at all
## 196                             Did not succeed at all
## 197                             Did not succeed at all
## 198                             Did not succeed at all
## 199                             Did not succeed at all
## 200                             Did not succeed at all
## 201                       Neither succeeded nor failed
## 202                       Neither succeeded nor failed
## 203                       Neither succeeded nor failed
## 204                       Neither succeeded nor failed
## 205                              Did not quite succeed
## 206                              Did not quite succeed
## 207                              Did not quite succeed
## 208                       Neither succeeded nor failed
## 209                              Did not quite succeed
## 210                       Neither succeeded nor failed
## 211                             Did not succeed at all
## 212                             Did not succeed at all
## 213                             Did not succeed at all
## 214                             Did not succeed at all
## 215                             Did not succeed at all
## 216                             Did not succeed at all
## 217                       Neither succeeded nor failed
## 218                             Did not succeed at all
## 219                       Neither succeeded nor failed
## 220                       Neither succeeded nor failed
## 221                       Neither succeeded nor failed
## 222                               Succeeded quite well
## 223                       Neither succeeded nor failed
## 224                       Neither succeeded nor failed
## 225                       Neither succeeded nor failed
## 226                       Neither succeeded nor failed
## 227                              Did not quite succeed
## 228                       Neither succeeded nor failed
## 229                              Did not quite succeed
## 230                              Did not quite succeed
## 231                       Neither succeeded nor failed
## 232                              Did not quite succeed
## 233                              Did not quite succeed
## 234                              Did not quite succeed
## 235                              Did not quite succeed
## 236                              Did not quite succeed
## 237                               Succeeded quite well
## 238                              Did not quite succeed
## 239                       Neither succeeded nor failed
## 240                              Did not quite succeed
## 241                              Did not quite succeed
## 242                              Did not quite succeed
## 243                              Did not quite succeed
## 244                              Did not quite succeed
## 245                              Did not quite succeed
## 246                              Did not quite succeed
## 247                               Succeeded quite well
## 248                             Did not succeed at all
## 249                              Did not quite succeed
## 250                              Did not quite succeed
## 251                       Neither succeeded nor failed
## 252                              Did not quite succeed
## 253                              Did not quite succeed
## 254                             Did not succeed at all
## 255                               Succeeded quite well
## 256                               Succeeded quite well
## 257                              Did not quite succeed
## 258                              Did not quite succeed
## 259                             Did not succeed at all
## 260                              Did not quite succeed
## 261                       Neither succeeded nor failed
## 262                              Did not quite succeed
## 263                                         Don't Know
## 264                               Succeeded quite well
## 265                             Did not succeed at all
## 266                       Neither succeeded nor failed
## 267                             Did not succeed at all
## 268                              Did not quite succeed
## 269                             Did not succeed at all
## 270                                         Don't Know
## 271                              Did not quite succeed
## 272                              Did not quite succeed
## 273                               Succeeded quite well
## 274                       Neither succeeded nor failed
## 275                              Did not quite succeed
## 276                       Neither succeeded nor failed
## 277                                         Don't Know
## 278                              Did not quite succeed
## 279                                Succeeded very well
## 280                              Did not quite succeed
## 281                               Succeeded quite well
## 282                       Neither succeeded nor failed
## 283                             Did not succeed at all
## 284                       Neither succeeded nor failed
## 285                       Neither succeeded nor failed
## 286                              Did not quite succeed
## 287                             Did not succeed at all
## 288                             Did not succeed at all
## 289                             Did not succeed at all
## 290                              Did not quite succeed
## 291                               Succeeded quite well
## 292                              Did not quite succeed
## 293                              Did not quite succeed
## 294                              Did not quite succeed
## 295                             Did not succeed at all
## 296                             Did not succeed at all
## 297                              Did not quite succeed
## 298                              Did not quite succeed
## 299                             Did not succeed at all
## 300                              Did not quite succeed
## 302                              Did not quite succeed
## 303                       Neither succeeded nor failed
## 304                             Did not succeed at all
## 305                               Succeeded quite well
## 306                              Did not quite succeed
## 307                               Succeeded quite well
## 308                              Did not quite succeed
## 309                              Did not quite succeed
## 310                             Did not succeed at all
## 311                              Did not quite succeed
## 312                               Succeeded quite well
## 313                              Did not quite succeed
## 314                              Did not quite succeed
## 315                               Succeeded quite well
## 316                              Did not quite succeed
## 317                             Did not succeed at all
## 318                                         Don't Know
## 319                             Did not succeed at all
## 320                              Did not quite succeed
## 321                              Did not quite succeed
## 322                              Did not quite succeed
## 323                              Did not quite succeed
## 324                               Succeeded quite well
## 325                                               <NA>
## 326                              Did not quite succeed
## 327                              Did not quite succeed
## 328                               Succeeded quite well
## 329                              Did not quite succeed
## 330                       Neither succeeded nor failed
## 331                              Did not quite succeed
## 332                              Did not quite succeed
## 333                       Neither succeeded nor failed
## 334                       Neither succeeded nor failed
## 335                               Succeeded quite well
## 336                       Neither succeeded nor failed
## 337                       Neither succeeded nor failed
## 338                               Succeeded quite well
## 339                       Neither succeeded nor failed
## 340                              Did not quite succeed
## 341                              Did not quite succeed
## 342                               Succeeded quite well
## 343                              Did not quite succeed
## 344                              Did not quite succeed
## 345                              Did not quite succeed
## 346                               Succeeded quite well
## 347                                         Don't Know
## 348                       Neither succeeded nor failed
## 349                             Did not succeed at all
## 350                              Did not quite succeed
## 351                             Did not succeed at all
## 352                                         Don't Know
## 353                              Did not quite succeed
## 354                              Did not quite succeed
## 355                              Did not quite succeed
## 356                              Did not quite succeed
## 357                       Neither succeeded nor failed
## 358                              Did not quite succeed
## 359                              Did not quite succeed
## 360                               Succeeded quite well
## 361                               Succeeded quite well
## 362                              Did not quite succeed
## 363                               Succeeded quite well
## 364                              Did not quite succeed
## 365                              Did not quite succeed
## 366                              Did not quite succeed
## 367                              Did not quite succeed
## 368                              Did not quite succeed
## 369                       Neither succeeded nor failed
## 370                              Did not quite succeed
## 371                              Did not quite succeed
## 372                              Did not quite succeed
## 373                       Neither succeeded nor failed
## 374                       Neither succeeded nor failed
## 375                              Did not quite succeed
## 376                              Did not quite succeed
## 377                              Did not quite succeed
## 378                              Did not quite succeed
## 379                              Did not quite succeed
## 380                              Did not quite succeed
## 381                                         Don't Know
## 382                              Did not quite succeed
## 383                              Did not quite succeed
## 384                                         Don't Know
## 385                              Did not quite succeed
## 386                              Did not quite succeed
## 387                              Did not quite succeed
## 388                              Did not quite succeed
## 389                              Did not quite succeed
## 390                       Neither succeeded nor failed
## 391                              Did not quite succeed
## 392                              Did not quite succeed
## 393                              Did not quite succeed
## 394                              Did not quite succeed
## 395                              Did not quite succeed
## 396                              Did not quite succeed
## 397                             Did not succeed at all
## 398                              Did not quite succeed
## 399                              Did not quite succeed
## 400                              Did not quite succeed
## 401                              Did not quite succeed
## 402                             Did not succeed at all
## 403                              Did not quite succeed
## 404                               Succeeded quite well
## 405                       Neither succeeded nor failed
## 406                             Did not succeed at all
## 407                             Did not succeed at all
## 408                              Did not quite succeed
## 409                             Did not succeed at all
## 410                              Did not quite succeed
## 411                             Did not succeed at all
## 412                             Did not succeed at all
## 413                             Did not succeed at all
## 414                              Did not quite succeed
## 415                             Did not succeed at all
## 416                             Did not succeed at all
## 417                                               <NA>
## 418                             Did not succeed at all
## 419                             Did not succeed at all
## 420                                               <NA>
## 421                             Did not succeed at all
## 422                                         Don't Know
## 423                                               <NA>
## 424                             Did not succeed at all
## 425                              Did not quite succeed
## 426                             Did not succeed at all
## 427                              Did not quite succeed
## 428                                         Don't Know
## 429                             Did not succeed at all
## 430                             Did not succeed at all
## 431                             Did not succeed at all
## 432                             Did not succeed at all
## 433                             Did not succeed at all
## 434                             Did not succeed at all
## 435                             Did not succeed at all
## 436                             Did not succeed at all
## 437                             Did not succeed at all
## 438                              Did not quite succeed
## 439                             Did not succeed at all
## 440                             Did not succeed at all
## 441                             Did not succeed at all
## 442                              Did not quite succeed
## 443                             Did not succeed at all
## 444                             Did not succeed at all
## 445                             Did not succeed at all
## 446                             Did not succeed at all
## 447                             Did not succeed at all
## 448                             Did not succeed at all
## 449                             Did not succeed at all
## 450                              Did not quite succeed
## 451                             Did not succeed at all
## 452                             Did not succeed at all
## 453                              Did not quite succeed
## 454                              Did not quite succeed
## 455                             Did not succeed at all
## 456                       Neither succeeded nor failed
## 457                       Neither succeeded nor failed
## 458                              Did not quite succeed
## 459                               Succeeded quite well
## 460                              Did not quite succeed
## 461                               Succeeded quite well
## 462                               Succeeded quite well
## 463                              Did not quite succeed
## 464                              Did not quite succeed
## 465                              Did not quite succeed
## 466                             Did not succeed at all
## 467                                Succeeded very well
## 468                              Did not quite succeed
## 469                               Succeeded quite well
## 470                               Succeeded quite well
## 471                       Neither succeeded nor failed
## 472                              Did not quite succeed
## 473                                         Don't Know
## 474                              Did not quite succeed
## 475                               Succeeded quite well
## 476                             Did not succeed at all
## 477                              Did not quite succeed
## 478                              Did not quite succeed
## 479                             Did not succeed at all
## 480                              Did not quite succeed
## 481                              Did not quite succeed
## 482                             Did not succeed at all
## 483                             Did not succeed at all
## 484                             Did not succeed at all
## 485                              Did not quite succeed
## 486                             Did not succeed at all
## 487                       Neither succeeded nor failed
## 488                              Did not quite succeed
## 489                       Neither succeeded nor failed
## 490                       Neither succeeded nor failed
## 491                               Succeeded quite well
## 492                               Succeeded quite well
## 493                              Did not quite succeed
## 494                              Did not quite succeed
## 495                              Did not quite succeed
## 496                               Succeeded quite well
##      Success.in..Generating.employment
## 1               Did not succeed at all
## 2               Did not succeed at all
## 3                 Succeeded quite well
## 4                  Succeeded very well
## 5         Neither succeeded nor failed
## 6                                 <NA>
## 7               Did not succeed at all
## 8                Did not quite succeed
## 9                Did not quite succeed
## 10              Did not succeed at all
## 11                Succeeded quite well
## 12              Did not succeed at all
## 13              Did not succeed at all
## 14        Neither succeeded nor failed
## 15              Did not succeed at all
## 16               Did not quite succeed
## 17              Did not succeed at all
## 18              Did not succeed at all
## 19               Did not quite succeed
## 20        Neither succeeded nor failed
## 21        Neither succeeded nor failed
## 22              Did not succeed at all
## 23                Succeeded quite well
## 24                                <NA>
## 25               Did not quite succeed
## 26              Did not succeed at all
## 27        Neither succeeded nor failed
## 28               Did not quite succeed
## 29                          Don't Know
## 30               Did not quite succeed
## 31              Did not succeed at all
## 32               Did not quite succeed
## 33        Neither succeeded nor failed
## 34              Did not succeed at all
## 35               Did not quite succeed
## 36        Neither succeeded nor failed
## 37               Did not quite succeed
## 38               Did not quite succeed
## 39               Did not quite succeed
## 40              Did not succeed at all
## 41                Succeeded quite well
## 42               Did not quite succeed
## 43               Did not quite succeed
## 44              Did not succeed at all
## 45               Did not quite succeed
## 46              Did not succeed at all
## 47              Did not succeed at all
## 48                                <NA>
## 49               Did not quite succeed
## 50              Did not succeed at all
## 51              Did not succeed at all
## 52              Did not succeed at all
## 53              Did not succeed at all
## 54              Did not succeed at all
## 55        Neither succeeded nor failed
## 56               Did not quite succeed
## 57               Did not quite succeed
## 58               Did not quite succeed
## 59               Did not quite succeed
## 60               Did not quite succeed
## 61        Neither succeeded nor failed
## 62              Did not succeed at all
## 63              Did not succeed at all
## 64              Did not succeed at all
## 65              Did not succeed at all
## 66                                <NA>
## 67              Did not succeed at all
## 68                Succeeded quite well
## 69              Did not succeed at all
## 70              Did not succeed at all
## 71              Did not succeed at all
## 72              Did not succeed at all
## 73              Did not succeed at all
## 74              Did not succeed at all
## 75              Did not succeed at all
## 76              Did not succeed at all
## 77              Did not succeed at all
## 78              Did not succeed at all
## 79              Did not succeed at all
## 80              Did not succeed at all
## 81              Did not succeed at all
## 82              Did not succeed at all
## 83              Did not succeed at all
## 84              Did not succeed at all
## 85              Did not succeed at all
## 86                Succeeded quite well
## 87               Did not quite succeed
## 88                Succeeded quite well
## 89        Neither succeeded nor failed
## 90        Neither succeeded nor failed
## 91        Neither succeeded nor failed
## 92        Neither succeeded nor failed
## 93        Neither succeeded nor failed
## 94        Neither succeeded nor failed
## 95              Did not succeed at all
## 96               Did not quite succeed
## 97              Did not succeed at all
## 98              Did not succeed at all
## 99              Did not succeed at all
## 100       Neither succeeded nor failed
## 101              Did not quite succeed
## 102                               <NA>
## 103       Neither succeeded nor failed
## 104       Neither succeeded nor failed
## 105       Neither succeeded nor failed
## 106       Neither succeeded nor failed
## 107               Succeeded quite well
## 108       Neither succeeded nor failed
## 109       Neither succeeded nor failed
## 110       Neither succeeded nor failed
## 111       Neither succeeded nor failed
## 112       Neither succeeded nor failed
## 113       Neither succeeded nor failed
## 114       Neither succeeded nor failed
## 115       Neither succeeded nor failed
## 116       Neither succeeded nor failed
## 117       Neither succeeded nor failed
## 118       Neither succeeded nor failed
## 119       Neither succeeded nor failed
## 120       Neither succeeded nor failed
## 121       Neither succeeded nor failed
## 122       Neither succeeded nor failed
## 123       Neither succeeded nor failed
## 124               Succeeded quite well
## 125       Neither succeeded nor failed
## 126       Neither succeeded nor failed
## 127              Did not quite succeed
## 128              Did not quite succeed
## 129       Neither succeeded nor failed
## 130              Did not quite succeed
## 131       Neither succeeded nor failed
## 132       Neither succeeded nor failed
## 133       Neither succeeded nor failed
## 134       Neither succeeded nor failed
## 135       Neither succeeded nor failed
## 136       Neither succeeded nor failed
## 137              Did not quite succeed
## 138       Neither succeeded nor failed
## 139       Neither succeeded nor failed
## 140       Neither succeeded nor failed
## 141       Neither succeeded nor failed
## 142               Succeeded quite well
## 143       Neither succeeded nor failed
## 144       Neither succeeded nor failed
## 145       Neither succeeded nor failed
## 146       Neither succeeded nor failed
## 147       Neither succeeded nor failed
## 148       Neither succeeded nor failed
## 149       Neither succeeded nor failed
## 150       Neither succeeded nor failed
## 151             Did not succeed at all
## 152              Did not quite succeed
## 153              Did not quite succeed
## 154             Did not succeed at all
## 155       Neither succeeded nor failed
## 156             Did not succeed at all
## 157       Neither succeeded nor failed
## 158       Neither succeeded nor failed
## 159       Neither succeeded nor failed
## 160               Succeeded quite well
## 161              Did not quite succeed
## 162              Did not quite succeed
## 163                         Don't Know
## 164                         Don't Know
## 165       Neither succeeded nor failed
## 166              Did not quite succeed
## 167       Neither succeeded nor failed
## 168       Neither succeeded nor failed
## 169       Neither succeeded nor failed
## 170              Did not quite succeed
## 171             Did not succeed at all
## 172             Did not succeed at all
## 173             Did not succeed at all
## 174       Neither succeeded nor failed
## 175             Did not succeed at all
## 176              Did not quite succeed
## 177              Did not quite succeed
## 178              Did not quite succeed
## 179              Did not quite succeed
## 180              Did not quite succeed
## 181              Did not quite succeed
## 182              Did not quite succeed
## 183             Did not succeed at all
## 184              Did not quite succeed
## 185              Did not quite succeed
## 186             Did not succeed at all
## 187              Did not quite succeed
## 188             Did not succeed at all
## 189             Did not succeed at all
## 190             Did not succeed at all
## 191              Did not quite succeed
## 192             Did not succeed at all
## 193              Did not quite succeed
## 194             Did not succeed at all
## 195             Did not succeed at all
## 196             Did not succeed at all
## 197              Did not quite succeed
## 198             Did not succeed at all
## 199             Did not succeed at all
## 200             Did not succeed at all
## 201              Did not quite succeed
## 202             Did not succeed at all
## 203             Did not succeed at all
## 204              Did not quite succeed
## 205              Did not quite succeed
## 206             Did not succeed at all
## 207             Did not succeed at all
## 208              Did not quite succeed
## 209       Neither succeeded nor failed
## 210              Did not quite succeed
## 211              Did not quite succeed
## 212              Did not quite succeed
## 213              Did not quite succeed
## 214              Did not quite succeed
## 215              Did not quite succeed
## 216              Did not quite succeed
## 217             Did not succeed at all
## 218              Did not quite succeed
## 219              Did not quite succeed
## 220             Did not succeed at all
## 221              Did not quite succeed
## 222       Neither succeeded nor failed
## 223              Did not quite succeed
## 224              Did not quite succeed
## 225       Neither succeeded nor failed
## 226              Did not quite succeed
## 227       Neither succeeded nor failed
## 228       Neither succeeded nor failed
## 229             Did not succeed at all
## 230       Neither succeeded nor failed
## 231              Did not quite succeed
## 232       Neither succeeded nor failed
## 233       Neither succeeded nor failed
## 234       Neither succeeded nor failed
## 235       Neither succeeded nor failed
## 236               Succeeded quite well
## 237                Succeeded very well
## 238              Did not quite succeed
## 239       Neither succeeded nor failed
## 240       Neither succeeded nor failed
## 241       Neither succeeded nor failed
## 242       Neither succeeded nor failed
## 243       Neither succeeded nor failed
## 244       Neither succeeded nor failed
## 245             Did not succeed at all
## 246       Neither succeeded nor failed
## 247       Neither succeeded nor failed
## 248             Did not succeed at all
## 249       Neither succeeded nor failed
## 250       Neither succeeded nor failed
## 251       Neither succeeded nor failed
## 252              Did not quite succeed
## 253             Did not succeed at all
## 254             Did not succeed at all
## 255               Succeeded quite well
## 256             Did not succeed at all
## 257              Did not quite succeed
## 258              Did not quite succeed
## 259              Did not quite succeed
## 260                               <NA>
## 261              Did not quite succeed
## 262               Succeeded quite well
## 263                         Don't Know
## 264               Succeeded quite well
## 265             Did not succeed at all
## 266              Did not quite succeed
## 267             Did not succeed at all
## 268              Did not quite succeed
## 269             Did not succeed at all
## 270             Did not succeed at all
## 271              Did not quite succeed
## 272              Did not quite succeed
## 273               Succeeded quite well
## 274              Did not quite succeed
## 275             Did not succeed at all
## 276              Did not quite succeed
## 277                         Don't Know
## 278              Did not quite succeed
## 279                Succeeded very well
## 280               Succeeded quite well
## 281               Succeeded quite well
## 282               Succeeded quite well
## 283              Did not quite succeed
## 284              Did not quite succeed
## 285              Did not quite succeed
## 286              Did not quite succeed
## 287             Did not succeed at all
## 288             Did not succeed at all
## 289             Did not succeed at all
## 290             Did not succeed at all
## 291              Did not quite succeed
## 292              Did not quite succeed
## 293             Did not succeed at all
## 294             Did not succeed at all
## 295             Did not succeed at all
## 296             Did not succeed at all
## 297             Did not succeed at all
## 298             Did not succeed at all
## 299             Did not succeed at all
## 300               Succeeded quite well
## 302              Did not quite succeed
## 303       Neither succeeded nor failed
## 304             Did not succeed at all
## 305             Did not succeed at all
## 306              Did not quite succeed
## 307              Did not quite succeed
## 308              Did not quite succeed
## 309              Did not quite succeed
## 310              Did not quite succeed
## 311              Did not quite succeed
## 312               Succeeded quite well
## 313               Succeeded quite well
## 314              Did not quite succeed
## 315               Succeeded quite well
## 316              Did not quite succeed
## 317             Did not succeed at all
## 318                         Don't Know
## 319             Did not succeed at all
## 320              Did not quite succeed
## 321             Did not succeed at all
## 322              Did not quite succeed
## 323              Did not quite succeed
## 324               Succeeded quite well
## 325               Succeeded quite well
## 326              Did not quite succeed
## 327              Did not quite succeed
## 328              Did not quite succeed
## 329               Succeeded quite well
## 330              Did not quite succeed
## 331             Did not succeed at all
## 332             Did not succeed at all
## 333              Did not quite succeed
## 334              Did not quite succeed
## 335              Did not quite succeed
## 336              Did not quite succeed
## 337               Succeeded quite well
## 338               Succeeded quite well
## 339              Did not quite succeed
## 340       Neither succeeded nor failed
## 341              Did not quite succeed
## 342                Succeeded very well
## 343             Did not succeed at all
## 344             Did not succeed at all
## 345              Did not quite succeed
## 346               Succeeded quite well
## 347       Neither succeeded nor failed
## 348       Neither succeeded nor failed
## 349              Did not quite succeed
## 350             Did not succeed at all
## 351             Did not succeed at all
## 352              Did not quite succeed
## 353             Did not succeed at all
## 354              Did not quite succeed
## 355              Did not quite succeed
## 356              Did not quite succeed
## 357       Neither succeeded nor failed
## 358             Did not succeed at all
## 359             Did not succeed at all
## 360               Succeeded quite well
## 361              Did not quite succeed
## 362             Did not succeed at all
## 363              Did not quite succeed
## 364             Did not succeed at all
## 365              Did not quite succeed
## 366              Did not quite succeed
## 367             Did not succeed at all
## 368              Did not quite succeed
## 369              Did not quite succeed
## 370              Did not quite succeed
## 371              Did not quite succeed
## 372       Neither succeeded nor failed
## 373       Neither succeeded nor failed
## 374              Did not quite succeed
## 375             Did not succeed at all
## 376              Did not quite succeed
## 377              Did not quite succeed
## 378             Did not succeed at all
## 379              Did not quite succeed
## 380             Did not succeed at all
## 381              Did not quite succeed
## 382              Did not quite succeed
## 383             Did not succeed at all
## 384             Did not succeed at all
## 385             Did not succeed at all
## 386             Did not succeed at all
## 387             Did not succeed at all
## 388              Did not quite succeed
## 389              Did not quite succeed
## 390              Did not quite succeed
## 391              Did not quite succeed
## 392             Did not succeed at all
## 393              Did not quite succeed
## 394              Did not quite succeed
## 395              Did not quite succeed
## 396             Did not succeed at all
## 397             Did not succeed at all
## 398             Did not succeed at all
## 399              Did not quite succeed
## 400             Did not succeed at all
## 401             Did not succeed at all
## 402             Did not succeed at all
## 403       Neither succeeded nor failed
## 404       Neither succeeded nor failed
## 405       Neither succeeded nor failed
## 406             Did not succeed at all
## 407             Did not succeed at all
## 408              Did not quite succeed
## 409              Did not quite succeed
## 410       Neither succeeded nor failed
## 411             Did not succeed at all
## 412             Did not succeed at all
## 413             Did not succeed at all
## 414              Did not quite succeed
## 415             Did not succeed at all
## 416             Did not succeed at all
## 417              Did not quite succeed
## 418             Did not succeed at all
## 419             Did not succeed at all
## 420                               <NA>
## 421             Did not succeed at all
## 422                         Don't Know
## 423                               <NA>
## 424             Did not succeed at all
## 425              Did not quite succeed
## 426             Did not succeed at all
## 427              Did not quite succeed
## 428                         Don't Know
## 429             Did not succeed at all
## 430             Did not succeed at all
## 431             Did not succeed at all
## 432             Did not succeed at all
## 433             Did not succeed at all
## 434             Did not succeed at all
## 435             Did not succeed at all
## 436             Did not succeed at all
## 437             Did not succeed at all
## 438              Did not quite succeed
## 439             Did not succeed at all
## 440             Did not succeed at all
## 441             Did not succeed at all
## 442              Did not quite succeed
## 443             Did not succeed at all
## 444             Did not succeed at all
## 445             Did not succeed at all
## 446             Did not succeed at all
## 447             Did not succeed at all
## 448             Did not succeed at all
## 449             Did not succeed at all
## 450              Did not quite succeed
## 451             Did not succeed at all
## 452             Did not succeed at all
## 453              Did not quite succeed
## 454             Did not succeed at all
## 455             Did not succeed at all
## 456             Did not succeed at all
## 457             Did not succeed at all
## 458             Did not succeed at all
## 459             Did not succeed at all
## 460                         Don't Know
## 461               Succeeded quite well
## 462              Did not quite succeed
## 463              Did not quite succeed
## 464             Did not succeed at all
## 465       Neither succeeded nor failed
## 466             Did not succeed at all
## 467                Succeeded very well
## 468             Did not succeed at all
## 469       Neither succeeded nor failed
## 470             Did not succeed at all
## 471       Neither succeeded nor failed
## 472              Did not quite succeed
## 473                         Don't Know
## 474             Did not succeed at all
## 475             Did not succeed at all
## 476                         Don't Know
## 477             Did not succeed at all
## 478              Did not quite succeed
## 479             Did not succeed at all
## 480              Did not quite succeed
## 481              Did not quite succeed
## 482             Did not succeed at all
## 483             Did not succeed at all
## 484             Did not succeed at all
## 485             Did not succeed at all
## 486             Did not succeed at all
## 487              Did not quite succeed
## 488             Did not succeed at all
## 489       Neither succeeded nor failed
## 490                Succeeded very well
## 491              Did not quite succeed
## 492       Neither succeeded nor failed
## 493             Did not succeed at all
## 494              Did not quite succeed
## 495             Did not succeed at all
## 496              Did not quite succeed
##      Success.in..Checking.pollution.and.environmental.hazard
## 1                                     Did not succeed at all
## 2                                      Did not quite succeed
## 3                               Neither succeeded nor failed
## 4                                        Succeeded very well
## 5                                      Did not quite succeed
## 6                               Neither succeeded nor failed
## 7                                      Did not quite succeed
## 8                                                       <NA>
## 9                                        Succeeded very well
## 10                                     Did not quite succeed
## 11                              Neither succeeded nor failed
## 12                                     Did not quite succeed
## 13                                    Did not succeed at all
## 14                                     Did not quite succeed
## 15                                     Did not quite succeed
## 16                                       Succeeded very well
## 17                                    Did not succeed at all
## 18                                    Did not succeed at all
## 19                                     Did not quite succeed
## 20                                     Did not quite succeed
## 21                              Neither succeeded nor failed
## 22                                     Did not quite succeed
## 23                              Neither succeeded nor failed
## 24                                     Did not quite succeed
## 25                                     Did not quite succeed
## 26                                     Did not quite succeed
## 27                              Neither succeeded nor failed
## 28                                      Succeeded quite well
## 29                                                Don't Know
## 30                              Neither succeeded nor failed
## 31                                     Did not quite succeed
## 32                                     Did not quite succeed
## 33                              Neither succeeded nor failed
## 34                                     Did not quite succeed
## 35                                     Did not quite succeed
## 36                              Neither succeeded nor failed
## 37                                     Did not quite succeed
## 38                                     Did not quite succeed
## 39                                     Did not quite succeed
## 40                                     Did not quite succeed
## 41                                      Succeeded quite well
## 42                              Neither succeeded nor failed
## 43                              Neither succeeded nor failed
## 44                                     Did not quite succeed
## 45                                     Did not quite succeed
## 46                                    Did not succeed at all
## 47                                     Did not quite succeed
## 48                                     Did not quite succeed
## 49                                     Did not quite succeed
## 50                                                Don't Know
## 51                                     Did not quite succeed
## 52                              Neither succeeded nor failed
## 53                                      Succeeded quite well
## 54                                     Did not quite succeed
## 55                                     Did not quite succeed
## 56                                     Did not quite succeed
## 57                                     Did not quite succeed
## 58                                     Did not quite succeed
## 59                                      Succeeded quite well
## 60                                     Did not quite succeed
## 61                                      Succeeded quite well
## 62                                      Succeeded quite well
## 63                                     Did not quite succeed
## 64                                     Did not quite succeed
## 65                                     Did not quite succeed
## 66                              Neither succeeded nor failed
## 67                                     Did not quite succeed
## 68                                      Succeeded quite well
## 69                                      Succeeded quite well
## 70                                      Succeeded quite well
## 71                                     Did not quite succeed
## 72                                      Succeeded quite well
## 73                              Neither succeeded nor failed
## 74                                     Did not quite succeed
## 75                              Neither succeeded nor failed
## 76                                     Did not quite succeed
## 77                                      Succeeded quite well
## 78                                      Succeeded quite well
## 79                                     Did not quite succeed
## 80                                      Succeeded quite well
## 81                                     Did not quite succeed
## 82                              Neither succeeded nor failed
## 83                                      Succeeded quite well
## 84                                     Did not quite succeed
## 85                                      Succeeded quite well
## 86                                     Did not quite succeed
## 87                                     Did not quite succeed
## 88                                      Succeeded quite well
## 89                                      Succeeded quite well
## 90                                      Succeeded quite well
## 91                              Neither succeeded nor failed
## 92                                      Succeeded quite well
## 93                                      Succeeded quite well
## 94                              Neither succeeded nor failed
## 95                              Neither succeeded nor failed
## 96                                     Did not quite succeed
## 97                                      Succeeded quite well
## 98                                      Succeeded quite well
## 99                              Neither succeeded nor failed
## 100                                     Succeeded quite well
## 101                             Neither succeeded nor failed
## 102                             Neither succeeded nor failed
## 103                             Neither succeeded nor failed
## 104                                     Succeeded quite well
## 105                             Neither succeeded nor failed
## 106                             Neither succeeded nor failed
## 107                             Neither succeeded nor failed
## 108                             Neither succeeded nor failed
## 109                                    Did not quite succeed
## 110                             Neither succeeded nor failed
## 111                             Neither succeeded nor failed
## 112                             Neither succeeded nor failed
## 113                                     Succeeded quite well
## 114                             Neither succeeded nor failed
## 115                             Neither succeeded nor failed
## 116                             Neither succeeded nor failed
## 117                             Neither succeeded nor failed
## 118                             Neither succeeded nor failed
## 119                                    Did not quite succeed
## 120                             Neither succeeded nor failed
## 121                                     Succeeded quite well
## 122                                     Succeeded quite well
## 123                                     Succeeded quite well
## 124                             Neither succeeded nor failed
## 125                             Neither succeeded nor failed
## 126                                     Succeeded quite well
## 127                             Neither succeeded nor failed
## 128                             Neither succeeded nor failed
## 129                             Neither succeeded nor failed
## 130                                    Did not quite succeed
## 131                             Neither succeeded nor failed
## 132                                     Succeeded quite well
## 133                                     Succeeded quite well
## 134                             Neither succeeded nor failed
## 135                             Neither succeeded nor failed
## 136                             Neither succeeded nor failed
## 137                             Neither succeeded nor failed
## 138                                    Did not quite succeed
## 139                             Neither succeeded nor failed
## 140                             Neither succeeded nor failed
## 141                                     Succeeded quite well
## 142                                     Succeeded quite well
## 143                             Neither succeeded nor failed
## 144                                     Succeeded quite well
## 145                             Neither succeeded nor failed
## 146                                     Succeeded quite well
## 147                             Neither succeeded nor failed
## 148                                     Succeeded quite well
## 149                             Neither succeeded nor failed
## 150                             Neither succeeded nor failed
## 151                                   Did not succeed at all
## 152                             Neither succeeded nor failed
## 153                                   Did not succeed at all
## 154                                   Did not succeed at all
## 155                                    Did not quite succeed
## 156                                   Did not succeed at all
## 157                             Neither succeeded nor failed
## 158                             Neither succeeded nor failed
## 159                             Neither succeeded nor failed
## 160                                    Did not quite succeed
## 161                             Neither succeeded nor failed
## 162                                   Did not succeed at all
## 163                                               Don't Know
## 164                                               Don't Know
## 165                             Neither succeeded nor failed
## 166                                   Did not succeed at all
## 167                             Neither succeeded nor failed
## 168                                    Did not quite succeed
## 169                                    Did not quite succeed
## 170                                   Did not succeed at all
## 171                                   Did not succeed at all
## 172                                    Did not quite succeed
## 173                                               Don't Know
## 174                                    Did not quite succeed
## 175                                   Did not succeed at all
## 176                                    Did not quite succeed
## 177                                    Did not quite succeed
## 178                                    Did not quite succeed
## 179                                    Did not quite succeed
## 180                                    Did not quite succeed
## 181                                    Did not quite succeed
## 182                                   Did not succeed at all
## 183                                    Did not quite succeed
## 184                                    Did not quite succeed
## 185                                   Did not succeed at all
## 186                                   Did not succeed at all
## 187                                   Did not succeed at all
## 188                                   Did not succeed at all
## 189                                   Did not succeed at all
## 190                                   Did not succeed at all
## 191                                   Did not succeed at all
## 192                                   Did not succeed at all
## 193                                   Did not succeed at all
## 194                                   Did not succeed at all
## 195                                    Did not quite succeed
## 196                                   Did not succeed at all
## 197                                    Did not quite succeed
## 198                                    Did not quite succeed
## 199                                   Did not succeed at all
## 200                                    Did not quite succeed
## 201                             Neither succeeded nor failed
## 202                                    Did not quite succeed
## 203                             Neither succeeded nor failed
## 204                                    Did not quite succeed
## 205                             Neither succeeded nor failed
## 206                             Neither succeeded nor failed
## 207                                    Did not quite succeed
## 208                                     Succeeded quite well
## 209                                   Did not succeed at all
## 210                             Neither succeeded nor failed
## 211                                   Did not succeed at all
## 212                                   Did not succeed at all
## 213                                   Did not succeed at all
## 214                                   Did not succeed at all
## 215                                   Did not succeed at all
## 216                                   Did not succeed at all
## 217                                   Did not succeed at all
## 218                                    Did not quite succeed
## 219                                    Did not quite succeed
## 220                                    Did not quite succeed
## 221                             Neither succeeded nor failed
## 222                             Neither succeeded nor failed
## 223                             Neither succeeded nor failed
## 224                             Neither succeeded nor failed
## 225                                    Did not quite succeed
## 226                                     Succeeded quite well
## 227                                    Did not quite succeed
## 228                                     Succeeded quite well
## 229                                   Did not succeed at all
## 230                                    Did not quite succeed
## 231                             Neither succeeded nor failed
## 232                             Neither succeeded nor failed
## 233                             Neither succeeded nor failed
## 234                             Neither succeeded nor failed
## 235                                    Did not quite succeed
## 236                                      Succeeded very well
## 237                             Neither succeeded nor failed
## 238                             Neither succeeded nor failed
## 239                             Neither succeeded nor failed
## 240                                    Did not quite succeed
## 241                             Neither succeeded nor failed
## 242                             Neither succeeded nor failed
## 243                             Neither succeeded nor failed
## 244                             Neither succeeded nor failed
## 245                                   Did not succeed at all
## 246                             Neither succeeded nor failed
## 247                                    Did not quite succeed
## 248                                    Did not quite succeed
## 249                                      Succeeded very well
## 250                                     Succeeded quite well
## 251                                     Succeeded quite well
## 252                                     Succeeded quite well
## 253                                     Succeeded quite well
## 254                                    Did not quite succeed
## 255                                     Succeeded quite well
## 256                                    Did not quite succeed
## 257                                    Did not quite succeed
## 258                                    Did not quite succeed
## 259                                    Did not quite succeed
## 260                                     Succeeded quite well
## 261                                     Succeeded quite well
## 262                                     Succeeded quite well
## 263                                               Don't Know
## 264                                     Succeeded quite well
## 265                                               Don't Know
## 266                             Neither succeeded nor failed
## 267                                   Did not succeed at all
## 268                                    Did not quite succeed
## 269                                    Did not quite succeed
## 270                             Neither succeeded nor failed
## 271                                    Did not quite succeed
## 272                                    Did not quite succeed
## 273                                     Succeeded quite well
## 274                             Neither succeeded nor failed
## 275                             Neither succeeded nor failed
## 276                             Neither succeeded nor failed
## 277                                               Don't Know
## 278                                    Did not quite succeed
## 279                                     Succeeded quite well
## 280                                    Did not quite succeed
## 281                                     Succeeded quite well
## 282                                     Succeeded quite well
## 283                                     Succeeded quite well
## 284                             Neither succeeded nor failed
## 285                             Neither succeeded nor failed
## 286                                               Don't Know
## 287                                    Did not quite succeed
## 288                                   Did not succeed at all
## 289                                   Did not succeed at all
## 290                                    Did not quite succeed
## 291                                    Did not quite succeed
## 292                                     Succeeded quite well
## 293                                    Did not quite succeed
## 294                                    Did not quite succeed
## 295                                     Succeeded quite well
## 296                             Neither succeeded nor failed
## 297                                                     <NA>
## 298                                    Did not quite succeed
## 299                                               Don't Know
## 300                                    Did not quite succeed
## 302                                    Did not quite succeed
## 303                                     Succeeded quite well
## 304                                   Did not succeed at all
## 305                                   Did not succeed at all
## 306                                    Did not quite succeed
## 307                                     Succeeded quite well
## 308                                    Did not quite succeed
## 309                                    Did not quite succeed
## 310                                   Did not succeed at all
## 311                                     Succeeded quite well
## 312                                     Succeeded quite well
## 313                                               Don't Know
## 314                                    Did not quite succeed
## 315                                               Don't Know
## 316                                    Did not quite succeed
## 317                                   Did not succeed at all
## 318                                               Don't Know
## 319                                   Did not succeed at all
## 320                                    Did not quite succeed
## 321                                   Did not succeed at all
## 322                                    Did not quite succeed
## 323                                    Did not quite succeed
## 324                                     Succeeded quite well
## 325                                     Succeeded quite well
## 326                                    Did not quite succeed
## 327                                    Did not quite succeed
## 328                                    Did not quite succeed
## 329                                      Succeeded very well
## 330                                     Succeeded quite well
## 331                                               Don't Know
## 332                                               Don't Know
## 333                                   Did not succeed at all
## 334                                   Did not succeed at all
## 335                                    Did not quite succeed
## 336                             Neither succeeded nor failed
## 337                                    Did not quite succeed
## 338                                   Did not succeed at all
## 339                                    Did not quite succeed
## 340                             Neither succeeded nor failed
## 341                                    Did not quite succeed
## 342                                      Succeeded very well
## 343                                    Did not quite succeed
## 344                                   Did not succeed at all
## 345                                     Succeeded quite well
## 346                                     Succeeded quite well
## 347                                    Did not quite succeed
## 348                             Neither succeeded nor failed
## 349                                     Succeeded quite well
## 350                                   Did not succeed at all
## 351                                   Did not succeed at all
## 352                                               Don't Know
## 353                             Neither succeeded nor failed
## 354                                               Don't Know
## 355                                    Did not quite succeed
## 356                                    Did not quite succeed
## 357                             Neither succeeded nor failed
## 358                                               Don't Know
## 359                                    Did not quite succeed
## 360                                     Succeeded quite well
## 361                                    Did not quite succeed
## 362                                   Did not succeed at all
## 363                                    Did not quite succeed
## 364                                    Did not quite succeed
## 365                                    Did not quite succeed
## 366                                    Did not quite succeed
## 367                             Neither succeeded nor failed
## 368                                    Did not quite succeed
## 369                                    Did not quite succeed
## 370                                    Did not quite succeed
## 371                                    Did not quite succeed
## 372                             Neither succeeded nor failed
## 373                             Neither succeeded nor failed
## 374                                    Did not quite succeed
## 375                                   Did not succeed at all
## 376                                    Did not quite succeed
## 377                                    Did not quite succeed
## 378                                    Did not quite succeed
## 379                                    Did not quite succeed
## 380                                    Did not quite succeed
## 381                                               Don't Know
## 382                                               Don't Know
## 383                                    Did not quite succeed
## 384                                               Don't Know
## 385                                    Did not quite succeed
## 386                                    Did not quite succeed
## 387                                    Did not quite succeed
## 388                                    Did not quite succeed
## 389                                    Did not quite succeed
## 390                                    Did not quite succeed
## 391                                    Did not quite succeed
## 392                                    Did not quite succeed
## 393                                               Don't Know
## 394                                               Don't Know
## 395                                    Did not quite succeed
## 396                                   Did not succeed at all
## 397                                   Did not succeed at all
## 398                                    Did not quite succeed
## 399                                    Did not quite succeed
## 400                                    Did not quite succeed
## 401                                    Did not quite succeed
## 402                                   Did not succeed at all
## 403                                    Did not quite succeed
## 404                                    Did not quite succeed
## 405                             Neither succeeded nor failed
## 406                                   Did not succeed at all
## 407                                   Did not succeed at all
## 408                                   Did not succeed at all
## 409                                    Did not quite succeed
## 410                             Neither succeeded nor failed
## 411                                   Did not succeed at all
## 412                                   Did not succeed at all
## 413                                   Did not succeed at all
## 414                                    Did not quite succeed
## 415                                   Did not succeed at all
## 416                                   Did not succeed at all
## 417                                    Did not quite succeed
## 418                                   Did not succeed at all
## 419                                   Did not succeed at all
## 420                                                     <NA>
## 421                                   Did not succeed at all
## 422                                               Don't Know
## 423                                                     <NA>
## 424                                   Did not succeed at all
## 425                                    Did not quite succeed
## 426                                   Did not succeed at all
## 427                                    Did not quite succeed
## 428                                               Don't Know
## 429                                   Did not succeed at all
## 430                                   Did not succeed at all
## 431                                   Did not succeed at all
## 432                                   Did not succeed at all
## 433                                   Did not succeed at all
## 434                                   Did not succeed at all
## 435                                   Did not succeed at all
## 436                                   Did not succeed at all
## 437                                   Did not succeed at all
## 438                                                     <NA>
## 439                                   Did not succeed at all
## 440                                   Did not succeed at all
## 441                                   Did not succeed at all
## 442                                    Did not quite succeed
## 443                                   Did not succeed at all
## 444                                   Did not succeed at all
## 445                                   Did not succeed at all
## 446                                   Did not succeed at all
## 447                                   Did not succeed at all
## 448                                   Did not succeed at all
## 449                                   Did not succeed at all
## 450                                    Did not quite succeed
## 451                                   Did not succeed at all
## 452                                   Did not succeed at all
## 453                                    Did not quite succeed
## 454                                   Did not succeed at all
## 455                                    Did not quite succeed
## 456                                    Did not quite succeed
## 457                                   Did not succeed at all
## 458                                   Did not succeed at all
## 459                                     Succeeded quite well
## 460                                    Did not quite succeed
## 461                                     Succeeded quite well
## 462                                    Did not quite succeed
## 463                                    Did not quite succeed
## 464                                   Did not succeed at all
## 465                             Neither succeeded nor failed
## 466                                   Did not succeed at all
## 467                                     Succeeded quite well
## 468                                   Did not succeed at all
## 469                                     Succeeded quite well
## 470                                   Did not succeed at all
## 471                                    Did not quite succeed
## 472                                    Did not quite succeed
## 473                                               Don't Know
## 474                                    Did not quite succeed
## 475                                    Did not quite succeed
## 476                                   Did not succeed at all
## 477                                    Did not quite succeed
## 478                                    Did not quite succeed
## 479                                   Did not succeed at all
## 480                                    Did not quite succeed
## 481                                    Did not quite succeed
## 482                                   Did not succeed at all
## 483                                   Did not succeed at all
## 484                                   Did not succeed at all
## 485                                   Did not succeed at all
## 486                             Neither succeeded nor failed
## 487                                    Did not quite succeed
## 488                                    Did not quite succeed
## 489                                    Did not quite succeed
## 490                                      Succeeded very well
## 491                                     Succeeded quite well
## 492                             Neither succeeded nor failed
## 493                             Neither succeeded nor failed
## 494                                    Did not quite succeed
## 495                                   Did not succeed at all
## 496                                     Succeeded quite well
##       Success.in..Family.planning Success.in..Checking.corruption
## 1           Did not quite succeed          Did not succeed at all
## 2    Neither succeeded nor failed           Did not quite succeed
## 3    Neither succeeded nor failed                            <NA>
## 4            Succeeded quite well             Succeeded very well
## 5            Succeeded quite well           Did not quite succeed
## 6    Neither succeeded nor failed            Succeeded quite well
## 7             Succeeded very well                            <NA>
## 8           Did not quite succeed           Did not quite succeed
## 9            Succeeded quite well    Neither succeeded nor failed
## 10          Did not quite succeed          Did not succeed at all
## 11           Succeeded quite well           Did not quite succeed
## 12          Did not quite succeed          Did not succeed at all
## 13          Did not quite succeed          Did not succeed at all
## 14   Neither succeeded nor failed                            <NA>
## 15   Neither succeeded nor failed           Did not quite succeed
## 16            Succeeded very well             Succeeded very well
## 17          Did not quite succeed           Did not quite succeed
## 18           Succeeded quite well            Succeeded quite well
## 19   Neither succeeded nor failed                            <NA>
## 20          Did not quite succeed           Did not quite succeed
## 21   Neither succeeded nor failed    Neither succeeded nor failed
## 22   Neither succeeded nor failed          Did not succeed at all
## 23   Neither succeeded nor failed           Did not quite succeed
## 24   Neither succeeded nor failed           Did not quite succeed
## 25           Succeeded quite well           Did not quite succeed
## 26           Succeeded quite well    Neither succeeded nor failed
## 27            Succeeded very well    Neither succeeded nor failed
## 28           Succeeded quite well           Did not quite succeed
## 29                     Don't Know                      Don't Know
## 30   Neither succeeded nor failed          Did not succeed at all
## 31            Succeeded very well           Did not quite succeed
## 32           Succeeded quite well           Did not quite succeed
## 33           Succeeded quite well          Did not succeed at all
## 34          Did not quite succeed          Did not succeed at all
## 35           Succeeded quite well           Did not quite succeed
## 36   Neither succeeded nor failed    Neither succeeded nor failed
## 37          Did not quite succeed          Did not succeed at all
## 38           Succeeded quite well          Did not succeed at all
## 39   Neither succeeded nor failed           Did not quite succeed
## 40          Did not quite succeed          Did not succeed at all
## 41           Succeeded quite well           Did not quite succeed
## 42   Neither succeeded nor failed          Did not succeed at all
## 43   Neither succeeded nor failed          Did not succeed at all
## 44          Did not quite succeed           Did not quite succeed
## 45           Succeeded quite well           Did not quite succeed
## 46           Succeeded quite well          Did not succeed at all
## 47          Did not quite succeed           Did not quite succeed
## 48   Neither succeeded nor failed           Did not quite succeed
## 49   Neither succeeded nor failed           Did not quite succeed
## 50                     Don't Know                      Don't Know
## 51           Succeeded quite well    Neither succeeded nor failed
## 52           Succeeded quite well    Neither succeeded nor failed
## 53           Succeeded quite well            Succeeded quite well
## 54           Succeeded quite well           Did not quite succeed
## 55           Succeeded quite well           Did not quite succeed
## 56           Succeeded quite well           Did not quite succeed
## 57            Succeeded very well           Did not quite succeed
## 58            Succeeded very well            Succeeded quite well
## 59           Succeeded quite well           Did not quite succeed
## 60           Succeeded quite well           Did not quite succeed
## 61           Succeeded quite well            Succeeded quite well
## 62           Succeeded quite well            Succeeded quite well
## 63           Succeeded quite well            Succeeded quite well
## 64           Succeeded quite well           Did not quite succeed
## 65           Succeeded quite well           Did not quite succeed
## 66           Succeeded quite well            Succeeded quite well
## 67           Succeeded quite well            Succeeded quite well
## 68           Succeeded quite well            Succeeded quite well
## 69           Succeeded quite well            Succeeded quite well
## 70           Succeeded quite well            Succeeded quite well
## 71           Succeeded quite well            Succeeded quite well
## 72           Succeeded quite well            Succeeded quite well
## 73           Succeeded quite well    Neither succeeded nor failed
## 74           Succeeded quite well           Did not quite succeed
## 75           Succeeded quite well           Did not quite succeed
## 76           Succeeded quite well          Did not succeed at all
## 77           Succeeded quite well            Succeeded quite well
## 78           Succeeded quite well            Succeeded quite well
## 79           Succeeded quite well           Did not quite succeed
## 80           Succeeded quite well            Succeeded quite well
## 81           Succeeded quite well           Did not quite succeed
## 82           Succeeded quite well            Succeeded quite well
## 83           Succeeded quite well            Succeeded quite well
## 84           Succeeded quite well            Succeeded quite well
## 85           Succeeded quite well            Succeeded quite well
## 86           Succeeded quite well            Succeeded quite well
## 87           Succeeded quite well           Did not quite succeed
## 88           Succeeded quite well            Succeeded quite well
## 89           Succeeded quite well            Succeeded quite well
## 90           Succeeded quite well            Succeeded quite well
## 91           Succeeded quite well            Succeeded quite well
## 92           Succeeded quite well            Succeeded quite well
## 93           Succeeded quite well            Succeeded quite well
## 94           Succeeded quite well    Neither succeeded nor failed
## 95           Succeeded quite well            Succeeded quite well
## 96           Succeeded quite well            Succeeded quite well
## 97           Succeeded quite well            Succeeded quite well
## 98           Succeeded quite well            Succeeded quite well
## 99           Succeeded quite well    Neither succeeded nor failed
## 100          Succeeded quite well            Succeeded quite well
## 101          Succeeded quite well           Did not quite succeed
## 102  Neither succeeded nor failed    Neither succeeded nor failed
## 103  Neither succeeded nor failed            Succeeded quite well
## 104          Succeeded quite well            Succeeded quite well
## 105  Neither succeeded nor failed    Neither succeeded nor failed
## 106  Neither succeeded nor failed            Succeeded quite well
## 107  Neither succeeded nor failed    Neither succeeded nor failed
## 108          Succeeded quite well            Succeeded quite well
## 109         Did not quite succeed           Did not quite succeed
## 110  Neither succeeded nor failed            Succeeded quite well
## 111  Neither succeeded nor failed    Neither succeeded nor failed
## 112  Neither succeeded nor failed    Neither succeeded nor failed
## 113  Neither succeeded nor failed    Neither succeeded nor failed
## 114  Neither succeeded nor failed    Neither succeeded nor failed
## 115          Succeeded quite well    Neither succeeded nor failed
## 116  Neither succeeded nor failed    Neither succeeded nor failed
## 117  Neither succeeded nor failed            Succeeded quite well
## 118  Neither succeeded nor failed    Neither succeeded nor failed
## 119  Neither succeeded nor failed    Neither succeeded nor failed
## 120  Neither succeeded nor failed    Neither succeeded nor failed
## 121  Neither succeeded nor failed            Succeeded quite well
## 122         Did not quite succeed    Neither succeeded nor failed
## 123          Succeeded quite well    Neither succeeded nor failed
## 124          Succeeded quite well    Neither succeeded nor failed
## 125  Neither succeeded nor failed    Neither succeeded nor failed
## 126  Neither succeeded nor failed           Did not quite succeed
## 127  Neither succeeded nor failed            Succeeded quite well
## 128  Neither succeeded nor failed            Succeeded quite well
## 129         Did not quite succeed    Neither succeeded nor failed
## 130         Did not quite succeed           Did not quite succeed
## 131          Succeeded quite well    Neither succeeded nor failed
## 132  Neither succeeded nor failed            Succeeded quite well
## 133  Neither succeeded nor failed    Neither succeeded nor failed
## 134  Neither succeeded nor failed    Neither succeeded nor failed
## 135  Neither succeeded nor failed    Neither succeeded nor failed
## 136  Neither succeeded nor failed    Neither succeeded nor failed
## 137          Succeeded quite well           Did not quite succeed
## 138  Neither succeeded nor failed            Succeeded quite well
## 139  Neither succeeded nor failed            Succeeded quite well
## 140  Neither succeeded nor failed    Neither succeeded nor failed
## 141  Neither succeeded nor failed    Neither succeeded nor failed
## 142  Neither succeeded nor failed    Neither succeeded nor failed
## 143  Neither succeeded nor failed    Neither succeeded nor failed
## 144          Succeeded quite well    Neither succeeded nor failed
## 145         Did not quite succeed    Neither succeeded nor failed
## 146  Neither succeeded nor failed    Neither succeeded nor failed
## 147  Neither succeeded nor failed    Neither succeeded nor failed
## 148  Neither succeeded nor failed    Neither succeeded nor failed
## 149  Neither succeeded nor failed    Neither succeeded nor failed
## 150          Succeeded quite well    Neither succeeded nor failed
## 151           Succeeded very well           Did not quite succeed
## 152          Succeeded quite well    Neither succeeded nor failed
## 153          Succeeded quite well           Did not quite succeed
## 154          Succeeded quite well          Did not succeed at all
## 155          Succeeded quite well    Neither succeeded nor failed
## 156           Succeeded very well           Did not quite succeed
## 157          Succeeded quite well          Did not succeed at all
## 158          Succeeded quite well    Neither succeeded nor failed
## 159          Succeeded quite well    Neither succeeded nor failed
## 160          Succeeded quite well           Did not quite succeed
## 161          Succeeded quite well                            <NA>
## 162          Succeeded quite well          Did not succeed at all
## 163          Succeeded quite well                      Don't Know
## 164          Succeeded quite well                      Don't Know
## 165          Succeeded quite well    Neither succeeded nor failed
## 166          Succeeded quite well          Did not succeed at all
## 167          Succeeded quite well    Neither succeeded nor failed
## 168          Succeeded quite well           Did not quite succeed
## 169          Succeeded quite well           Did not quite succeed
## 170          Succeeded quite well          Did not succeed at all
## 171          Succeeded quite well           Did not quite succeed
## 172          Succeeded quite well           Did not quite succeed
## 173          Succeeded quite well                      Don't Know
## 174          Succeeded quite well           Did not quite succeed
## 175          Succeeded quite well           Did not quite succeed
## 176          Succeeded quite well           Did not quite succeed
## 177          Succeeded quite well    Neither succeeded nor failed
## 178          Succeeded quite well           Did not quite succeed
## 179          Succeeded quite well           Did not quite succeed
## 180          Succeeded quite well           Did not quite succeed
## 181          Succeeded quite well           Did not quite succeed
## 182          Succeeded quite well          Did not succeed at all
## 183          Succeeded quite well           Did not quite succeed
## 184          Succeeded quite well          Did not succeed at all
## 185          Succeeded quite well          Did not succeed at all
## 186          Succeeded quite well           Did not quite succeed
## 187          Succeeded quite well          Did not succeed at all
## 188          Succeeded quite well          Did not succeed at all
## 189          Succeeded quite well          Did not succeed at all
## 190          Succeeded quite well          Did not succeed at all
## 191          Succeeded quite well           Did not quite succeed
## 192          Succeeded quite well          Did not succeed at all
## 193          Succeeded quite well          Did not succeed at all
## 194          Succeeded quite well           Did not quite succeed
## 195          Succeeded quite well           Did not quite succeed
## 196          Succeeded quite well           Did not quite succeed
## 197          Succeeded quite well           Did not quite succeed
## 198          Succeeded quite well           Did not quite succeed
## 199          Succeeded quite well           Did not quite succeed
## 200          Succeeded quite well           Did not quite succeed
## 201          Succeeded quite well           Did not quite succeed
## 202         Did not quite succeed          Did not succeed at all
## 203          Succeeded quite well           Did not quite succeed
## 204  Neither succeeded nor failed          Did not succeed at all
## 205           Succeeded very well             Succeeded very well
## 206          Succeeded quite well          Did not succeed at all
## 207  Neither succeeded nor failed           Did not quite succeed
## 208        Did not succeed at all    Neither succeeded nor failed
## 209  Neither succeeded nor failed          Did not succeed at all
## 210           Succeeded very well             Succeeded very well
## 211  Neither succeeded nor failed    Neither succeeded nor failed
## 212  Neither succeeded nor failed    Neither succeeded nor failed
## 213  Neither succeeded nor failed            Succeeded quite well
## 214  Neither succeeded nor failed    Neither succeeded nor failed
## 215  Neither succeeded nor failed    Neither succeeded nor failed
## 216  Neither succeeded nor failed    Neither succeeded nor failed
## 217         Did not quite succeed            Succeeded quite well
## 218  Neither succeeded nor failed          Did not succeed at all
## 219        Did not succeed at all            Succeeded quite well
## 220           Succeeded very well            Succeeded quite well
## 221          Succeeded quite well    Neither succeeded nor failed
## 222         Did not quite succeed           Did not quite succeed
## 223           Succeeded very well             Succeeded very well
## 224         Did not quite succeed            Succeeded quite well
## 225  Neither succeeded nor failed            Succeeded quite well
## 226         Did not quite succeed    Neither succeeded nor failed
## 227  Neither succeeded nor failed           Did not quite succeed
## 228          Succeeded quite well           Did not quite succeed
## 229           Succeeded very well    Neither succeeded nor failed
## 230           Succeeded very well    Neither succeeded nor failed
## 231          Succeeded quite well           Did not quite succeed
## 232          Succeeded quite well          Did not succeed at all
## 233          Succeeded quite well           Did not quite succeed
## 234          Succeeded quite well           Did not quite succeed
## 235          Succeeded quite well           Did not quite succeed
## 236           Succeeded very well    Neither succeeded nor failed
## 237  Neither succeeded nor failed    Neither succeeded nor failed
## 238  Neither succeeded nor failed            Succeeded quite well
## 239          Succeeded quite well           Did not quite succeed
## 240          Succeeded quite well           Did not quite succeed
## 241          Succeeded quite well           Did not quite succeed
## 242          Succeeded quite well           Did not quite succeed
## 243          Succeeded quite well           Did not quite succeed
## 244          Succeeded quite well            Succeeded quite well
## 245         Did not quite succeed    Neither succeeded nor failed
## 246          Succeeded quite well            Succeeded quite well
## 247  Neither succeeded nor failed            Succeeded quite well
## 248  Neither succeeded nor failed            Succeeded quite well
## 249        Did not succeed at all    Neither succeeded nor failed
## 250          Succeeded quite well    Neither succeeded nor failed
## 251          Succeeded quite well            Succeeded quite well
## 252         Did not quite succeed           Did not quite succeed
## 253        Did not succeed at all                      Don't Know
## 254         Did not quite succeed           Did not quite succeed
## 255         Did not quite succeed            Succeeded quite well
## 256        Did not succeed at all          Did not succeed at all
## 257         Did not quite succeed                            <NA>
## 258        Did not succeed at all          Did not succeed at all
## 259        Did not succeed at all                      Don't Know
## 260          Succeeded quite well           Did not quite succeed
## 261  Neither succeeded nor failed           Did not quite succeed
## 262         Did not quite succeed           Did not quite succeed
## 263        Did not succeed at all           Did not quite succeed
## 264  Neither succeeded nor failed    Neither succeeded nor failed
## 265                    Don't Know                      Don't Know
## 266         Did not quite succeed          Did not succeed at all
## 267         Did not quite succeed           Did not quite succeed
## 268  Neither succeeded nor failed    Neither succeeded nor failed
## 269         Did not quite succeed          Did not succeed at all
## 270  Neither succeeded nor failed          Did not succeed at all
## 271         Did not quite succeed           Did not quite succeed
## 272         Did not quite succeed           Did not quite succeed
## 273          Succeeded quite well            Succeeded quite well
## 274          Succeeded quite well    Neither succeeded nor failed
## 275  Neither succeeded nor failed          Did not succeed at all
## 276         Did not quite succeed    Neither succeeded nor failed
## 277                    Don't Know                      Don't Know
## 278         Did not quite succeed           Did not quite succeed
## 279          Succeeded quite well            Succeeded quite well
## 280          Succeeded quite well    Neither succeeded nor failed
## 281          Succeeded quite well            Succeeded quite well
## 282          Succeeded quite well            Succeeded quite well
## 283          Succeeded quite well            Succeeded quite well
## 284          Succeeded quite well           Did not quite succeed
## 285  Neither succeeded nor failed            Succeeded quite well
## 286         Did not quite succeed           Did not quite succeed
## 287        Did not succeed at all           Did not quite succeed
## 288                    Don't Know                      Don't Know
## 289                    Don't Know                      Don't Know
## 290  Neither succeeded nor failed           Did not quite succeed
## 291         Did not quite succeed           Did not quite succeed
## 292                    Don't Know                      Don't Know
## 293         Did not quite succeed    Neither succeeded nor failed
## 294  Neither succeeded nor failed           Did not quite succeed
## 295          Succeeded quite well                      Don't Know
## 296  Neither succeeded nor failed                      Don't Know
## 297                    Don't Know                      Don't Know
## 298         Did not quite succeed    Neither succeeded nor failed
## 299                    Don't Know                      Don't Know
## 300          Succeeded quite well           Did not quite succeed
## 302         Did not quite succeed           Did not quite succeed
## 303           Succeeded very well             Succeeded very well
## 304          Succeeded quite well          Did not succeed at all
## 305        Did not succeed at all          Did not succeed at all
## 306         Did not quite succeed          Did not succeed at all
## 307         Did not quite succeed           Did not quite succeed
## 308          Succeeded quite well           Did not quite succeed
## 309          Succeeded quite well           Did not quite succeed
## 310  Neither succeeded nor failed          Did not succeed at all
## 311         Did not quite succeed            Succeeded quite well
## 312          Succeeded quite well            Succeeded quite well
## 313          Succeeded quite well           Did not quite succeed
## 314         Did not quite succeed           Did not quite succeed
## 315          Succeeded quite well            Succeeded quite well
## 316         Did not quite succeed          Did not succeed at all
## 317         Did not quite succeed          Did not succeed at all
## 318                    Don't Know                      Don't Know
## 319         Did not quite succeed          Did not succeed at all
## 320          Succeeded quite well    Neither succeeded nor failed
## 321          Succeeded quite well          Did not succeed at all
## 322          Succeeded quite well           Did not quite succeed
## 323         Did not quite succeed           Did not quite succeed
## 324          Succeeded quite well            Succeeded quite well
## 325          Succeeded quite well            Succeeded quite well
## 326         Did not quite succeed           Did not quite succeed
## 327         Did not quite succeed           Did not quite succeed
## 328          Succeeded quite well           Did not quite succeed
## 329           Succeeded very well            Succeeded quite well
## 330         Did not quite succeed    Neither succeeded nor failed
## 331        Did not succeed at all           Did not quite succeed
## 332        Did not succeed at all           Did not quite succeed
## 333                    Don't Know          Did not succeed at all
## 334                    Don't Know          Did not succeed at all
## 335          Succeeded quite well           Did not quite succeed
## 336         Did not quite succeed          Did not succeed at all
## 337          Succeeded quite well    Neither succeeded nor failed
## 338          Succeeded quite well           Did not quite succeed
## 339          Succeeded quite well            Succeeded quite well
## 340          Succeeded quite well             Succeeded very well
## 341         Did not quite succeed            Succeeded quite well
## 342          Succeeded quite well             Succeeded very well
## 343  Neither succeeded nor failed          Did not succeed at all
## 344           Succeeded very well           Did not quite succeed
## 345  Neither succeeded nor failed    Neither succeeded nor failed
## 346           Succeeded very well    Neither succeeded nor failed
## 347         Did not quite succeed           Did not quite succeed
## 348          Succeeded quite well    Neither succeeded nor failed
## 349  Neither succeeded nor failed           Did not quite succeed
## 350         Did not quite succeed          Did not succeed at all
## 351         Did not quite succeed          Did not succeed at all
## 352         Did not quite succeed                      Don't Know
## 353  Neither succeeded nor failed          Did not succeed at all
## 354          Succeeded quite well           Did not quite succeed
## 355         Did not quite succeed           Did not quite succeed
## 356          Succeeded quite well           Did not quite succeed
## 357          Succeeded quite well    Neither succeeded nor failed
## 358          Succeeded quite well          Did not succeed at all
## 359          Succeeded quite well          Did not succeed at all
## 360          Succeeded quite well           Did not quite succeed
## 361         Did not quite succeed    Neither succeeded nor failed
## 362          Succeeded quite well          Did not succeed at all
## 363         Did not quite succeed          Did not succeed at all
## 364          Succeeded quite well          Did not succeed at all
## 365  Neither succeeded nor failed    Neither succeeded nor failed
## 366          Succeeded quite well          Did not succeed at all
## 367          Succeeded quite well           Did not quite succeed
## 368          Succeeded quite well    Neither succeeded nor failed
## 369          Succeeded quite well          Did not succeed at all
## 370          Succeeded quite well            Succeeded quite well
## 371          Succeeded quite well           Did not quite succeed
## 372          Succeeded quite well           Did not quite succeed
## 373          Succeeded quite well    Neither succeeded nor failed
## 374          Succeeded quite well           Did not quite succeed
## 375           Succeeded very well          Did not succeed at all
## 376          Succeeded quite well    Neither succeeded nor failed
## 377          Succeeded quite well           Did not quite succeed
## 378          Succeeded quite well           Did not quite succeed
## 379          Succeeded quite well           Did not quite succeed
## 380          Succeeded quite well           Did not quite succeed
## 381          Succeeded quite well           Did not quite succeed
## 382          Succeeded quite well           Did not quite succeed
## 383          Succeeded quite well          Did not succeed at all
## 384          Succeeded quite well          Did not succeed at all
## 385          Succeeded quite well          Did not succeed at all
## 386          Succeeded quite well           Did not quite succeed
## 387          Succeeded quite well          Did not succeed at all
## 388          Succeeded quite well           Did not quite succeed
## 389          Succeeded quite well          Did not succeed at all
## 390                    Don't Know          Did not succeed at all
## 391          Succeeded quite well          Did not succeed at all
## 392          Succeeded quite well          Did not succeed at all
## 393          Succeeded quite well           Did not quite succeed
## 394          Succeeded quite well           Did not quite succeed
## 395          Succeeded quite well           Did not quite succeed
## 396          Succeeded quite well          Did not succeed at all
## 397          Succeeded quite well          Did not succeed at all
## 398          Succeeded quite well           Did not quite succeed
## 399          Succeeded quite well                      Don't Know
## 400          Succeeded quite well          Did not succeed at all
## 401          Succeeded quite well          Did not succeed at all
## 402  Neither succeeded nor failed    Neither succeeded nor failed
## 403          Succeeded quite well           Did not quite succeed
## 404          Succeeded quite well    Neither succeeded nor failed
## 405  Neither succeeded nor failed          Did not succeed at all
## 406                    Don't Know          Did not succeed at all
## 407  Neither succeeded nor failed          Did not succeed at all
## 408  Neither succeeded nor failed          Did not succeed at all
## 409         Did not quite succeed           Did not quite succeed
## 410  Neither succeeded nor failed    Neither succeeded nor failed
## 411  Neither succeeded nor failed           Did not quite succeed
## 412  Neither succeeded nor failed          Did not succeed at all
## 413  Neither succeeded nor failed          Did not succeed at all
## 414         Did not quite succeed           Did not quite succeed
## 415                    Don't Know                      Don't Know
## 416  Neither succeeded nor failed          Did not succeed at all
## 417                    Don't Know                      Don't Know
## 418  Neither succeeded nor failed          Did not succeed at all
## 419  Neither succeeded nor failed          Did not succeed at all
## 420                          <NA>                            <NA>
## 421  Neither succeeded nor failed          Did not succeed at all
## 422                    Don't Know                      Don't Know
## 423                          <NA>                            <NA>
## 424  Neither succeeded nor failed          Did not succeed at all
## 425  Neither succeeded nor failed    Neither succeeded nor failed
## 426  Neither succeeded nor failed          Did not succeed at all
## 427  Neither succeeded nor failed           Did not quite succeed
## 428                    Don't Know                      Don't Know
## 429        Did not succeed at all          Did not succeed at all
## 430         Did not quite succeed          Did not succeed at all
## 431         Did not quite succeed          Did not succeed at all
## 432  Neither succeeded nor failed    Neither succeeded nor failed
## 433  Neither succeeded nor failed          Did not succeed at all
## 434        Did not succeed at all          Did not succeed at all
## 435  Neither succeeded nor failed          Did not succeed at all
## 436  Neither succeeded nor failed          Did not succeed at all
## 437  Neither succeeded nor failed          Did not succeed at all
## 438         Did not quite succeed           Did not quite succeed
## 439  Neither succeeded nor failed          Did not succeed at all
## 440  Neither succeeded nor failed          Did not succeed at all
## 441  Neither succeeded nor failed          Did not succeed at all
## 442         Did not quite succeed           Did not quite succeed
## 443         Did not quite succeed          Did not succeed at all
## 444         Did not quite succeed          Did not succeed at all
## 445  Neither succeeded nor failed          Did not succeed at all
## 446  Neither succeeded nor failed          Did not succeed at all
## 447        Did not succeed at all          Did not succeed at all
## 448        Did not succeed at all          Did not succeed at all
## 449        Did not succeed at all          Did not succeed at all
## 450         Did not quite succeed           Did not quite succeed
## 451         Did not quite succeed          Did not succeed at all
## 452         Did not quite succeed          Did not succeed at all
## 453         Did not quite succeed           Did not quite succeed
## 454         Did not quite succeed          Did not succeed at all
## 455        Did not succeed at all    Neither succeeded nor failed
## 456           Succeeded very well           Did not quite succeed
## 457  Neither succeeded nor failed          Did not succeed at all
## 458          Succeeded quite well          Did not succeed at all
## 459          Succeeded quite well          Did not succeed at all
## 460          Succeeded quite well    Neither succeeded nor failed
## 461           Succeeded very well            Succeeded quite well
## 462           Succeeded very well           Did not quite succeed
## 463  Neither succeeded nor failed            Succeeded quite well
## 464          Succeeded quite well           Did not quite succeed
## 465         Did not quite succeed          Did not succeed at all
## 466  Neither succeeded nor failed          Did not succeed at all
## 467           Succeeded very well            Succeeded quite well
## 468         Did not quite succeed          Did not succeed at all
## 469          Succeeded quite well            Succeeded quite well
## 470         Did not quite succeed          Did not succeed at all
## 471          Succeeded quite well           Did not quite succeed
## 472          Succeeded quite well          Did not succeed at all
## 473                    Don't Know                      Don't Know
## 474          Succeeded quite well          Did not succeed at all
## 475          Succeeded quite well    Neither succeeded nor failed
## 476                          <NA>                      Don't Know
## 477          Succeeded quite well           Did not quite succeed
## 478         Did not quite succeed           Did not quite succeed
## 479                    Don't Know                      Don't Know
## 480          Succeeded quite well          Did not succeed at all
## 481         Did not quite succeed           Did not quite succeed
## 482         Did not quite succeed          Did not succeed at all
## 483         Did not quite succeed          Did not succeed at all
## 484         Did not quite succeed          Did not succeed at all
## 485          Succeeded quite well    Neither succeeded nor failed
## 486           Succeeded very well          Did not succeed at all
## 487         Did not quite succeed           Did not quite succeed
## 488  Neither succeeded nor failed    Neither succeeded nor failed
## 489          Succeeded quite well    Neither succeeded nor failed
## 490  Neither succeeded nor failed             Succeeded very well
## 491         Did not quite succeed    Neither succeeded nor failed
## 492          Succeeded quite well    Neither succeeded nor failed
## 493          Succeeded quite well          Did not succeed at all
## 494          Succeeded quite well           Did not quite succeed
## 495  Neither succeeded nor failed          Did not succeed at all
## 496          Succeeded quite well            Succeeded quite well
##      Success.in..Controlling.human.trafficking
## 1                       Did not succeed at all
## 2                       Did not succeed at all
## 3                       Did not succeed at all
## 4                          Succeeded very well
## 5                         Succeeded quite well
## 6                 Neither succeeded nor failed
## 7                         Succeeded quite well
## 8                        Did not quite succeed
## 9                         Succeeded quite well
## 10                      Did not succeed at all
## 11                        Succeeded quite well
## 12                      Did not succeed at all
## 13                      Did not succeed at all
## 14                       Did not quite succeed
## 15                Neither succeeded nor failed
## 16                        Succeeded quite well
## 17                       Did not quite succeed
## 18                       Did not quite succeed
## 19                Neither succeeded nor failed
## 20                        Succeeded quite well
## 21                      Did not succeed at all
## 22                      Did not succeed at all
## 23                       Did not quite succeed
## 24                Neither succeeded nor failed
## 25                       Did not quite succeed
## 26                Neither succeeded nor failed
## 27                        Succeeded quite well
## 28                       Did not quite succeed
## 29                                  Don't Know
## 30                      Did not succeed at all
## 31                       Did not quite succeed
## 32                       Did not quite succeed
## 33                       Did not quite succeed
## 34                       Did not quite succeed
## 35                       Did not quite succeed
## 36                Neither succeeded nor failed
## 37                      Did not succeed at all
## 38                      Did not succeed at all
## 39                                        <NA>
## 40                      Did not succeed at all
## 41                       Did not quite succeed
## 42                      Did not succeed at all
## 43                      Did not succeed at all
## 44                       Did not quite succeed
## 45                       Did not quite succeed
## 46                       Did not quite succeed
## 47                       Did not quite succeed
## 48                       Did not quite succeed
## 49                       Did not quite succeed
## 50                                  Don't Know
## 51                        Succeeded quite well
## 52                        Succeeded quite well
## 53                        Succeeded quite well
## 54                       Did not quite succeed
## 55                Neither succeeded nor failed
## 56                        Succeeded quite well
## 57                        Succeeded quite well
## 58                        Succeeded quite well
## 59                                  Don't Know
## 60                       Did not quite succeed
## 61                        Succeeded quite well
## 62                        Succeeded quite well
## 63                        Succeeded quite well
## 64                        Succeeded quite well
## 65                        Succeeded quite well
## 66                        Succeeded quite well
## 67                        Succeeded quite well
## 68                        Succeeded quite well
## 69                        Succeeded quite well
## 70                        Succeeded quite well
## 71                        Succeeded quite well
## 72                        Succeeded quite well
## 73                Neither succeeded nor failed
## 74                        Succeeded quite well
## 75                Neither succeeded nor failed
## 76                        Succeeded quite well
## 77                        Succeeded quite well
## 78                        Succeeded quite well
## 79                        Succeeded quite well
## 80                        Succeeded quite well
## 81                        Succeeded quite well
## 82                        Succeeded quite well
## 83                        Succeeded quite well
## 84                        Succeeded quite well
## 85                        Succeeded quite well
## 86                        Succeeded quite well
## 87                        Succeeded quite well
## 88                        Succeeded quite well
## 89                        Succeeded quite well
## 90                        Succeeded quite well
## 91                        Succeeded quite well
## 92                        Succeeded quite well
## 93                        Succeeded quite well
## 94                        Succeeded quite well
## 95                        Succeeded quite well
## 96                        Succeeded quite well
## 97                        Succeeded quite well
## 98                        Succeeded quite well
## 99                        Succeeded quite well
## 100                       Succeeded quite well
## 101                      Did not quite succeed
## 102               Neither succeeded nor failed
## 103                       Succeeded quite well
## 104               Neither succeeded nor failed
## 105               Neither succeeded nor failed
## 106                       Succeeded quite well
## 107               Neither succeeded nor failed
## 108                       Succeeded quite well
## 109               Neither succeeded nor failed
## 110               Neither succeeded nor failed
## 111               Neither succeeded nor failed
## 112               Neither succeeded nor failed
## 113                       Succeeded quite well
## 114               Neither succeeded nor failed
## 115               Neither succeeded nor failed
## 116               Neither succeeded nor failed
## 117               Neither succeeded nor failed
## 118               Neither succeeded nor failed
## 119                       Succeeded quite well
## 120               Neither succeeded nor failed
## 121               Neither succeeded nor failed
## 122               Neither succeeded nor failed
## 123               Neither succeeded nor failed
## 124                       Succeeded quite well
## 125               Neither succeeded nor failed
## 126                      Did not quite succeed
## 127               Neither succeeded nor failed
## 128                      Did not quite succeed
## 129                      Did not quite succeed
## 130                      Did not quite succeed
## 131               Neither succeeded nor failed
## 132               Neither succeeded nor failed
## 133                       Succeeded quite well
## 134               Neither succeeded nor failed
## 135               Neither succeeded nor failed
## 136               Neither succeeded nor failed
## 137               Neither succeeded nor failed
## 138               Neither succeeded nor failed
## 139               Neither succeeded nor failed
## 140               Neither succeeded nor failed
## 141               Neither succeeded nor failed
## 142               Neither succeeded nor failed
## 143               Neither succeeded nor failed
## 144               Neither succeeded nor failed
## 145                      Did not quite succeed
## 146               Neither succeeded nor failed
## 147               Neither succeeded nor failed
## 148                       Succeeded quite well
## 149               Neither succeeded nor failed
## 150               Neither succeeded nor failed
## 151                      Did not quite succeed
## 152               Neither succeeded nor failed
## 153               Neither succeeded nor failed
## 154                     Did not succeed at all
## 155               Neither succeeded nor failed
## 156                      Did not quite succeed
## 157               Neither succeeded nor failed
## 158               Neither succeeded nor failed
## 159               Neither succeeded nor failed
## 160                      Did not quite succeed
## 161               Neither succeeded nor failed
## 162                     Did not succeed at all
## 163                                 Don't Know
## 164                                 Don't Know
## 165               Neither succeeded nor failed
## 166                     Did not succeed at all
## 167               Neither succeeded nor failed
## 168                      Did not quite succeed
## 169                      Did not quite succeed
## 170                     Did not succeed at all
## 171                      Did not quite succeed
## 172                     Did not succeed at all
## 173                     Did not succeed at all
## 174                      Did not quite succeed
## 175                      Did not quite succeed
## 176                      Did not quite succeed
## 177                      Did not quite succeed
## 178                      Did not quite succeed
## 179                      Did not quite succeed
## 180                      Did not quite succeed
## 181                      Did not quite succeed
## 182                     Did not succeed at all
## 183                     Did not succeed at all
## 184                     Did not succeed at all
## 185                     Did not succeed at all
## 186                      Did not quite succeed
## 187                      Did not quite succeed
## 188                      Did not quite succeed
## 189                     Did not succeed at all
## 190                     Did not succeed at all
## 191                     Did not succeed at all
## 192                     Did not succeed at all
## 193                     Did not succeed at all
## 194                      Did not quite succeed
## 195               Neither succeeded nor failed
## 196                     Did not succeed at all
## 197                      Did not quite succeed
## 198                     Did not succeed at all
## 199                     Did not succeed at all
## 200                     Did not succeed at all
## 201               Neither succeeded nor failed
## 202                       Succeeded quite well
## 203                       Succeeded quite well
## 204               Neither succeeded nor failed
## 205               Neither succeeded nor failed
## 206                      Did not quite succeed
## 207               Neither succeeded nor failed
## 208               Neither succeeded nor failed
## 209               Neither succeeded nor failed
## 210                       Succeeded quite well
## 211                       Succeeded quite well
## 212                       Succeeded quite well
## 213               Neither succeeded nor failed
## 214                       Succeeded quite well
## 215                       Succeeded quite well
## 216                       Succeeded quite well
## 217               Neither succeeded nor failed
## 218                      Did not quite succeed
## 219                      Did not quite succeed
## 220               Neither succeeded nor failed
## 221                       Succeeded quite well
## 222                     Did not succeed at all
## 223                       Succeeded quite well
## 224                      Did not quite succeed
## 225               Neither succeeded nor failed
## 226               Neither succeeded nor failed
## 227               Neither succeeded nor failed
## 228                     Did not succeed at all
## 229               Neither succeeded nor failed
## 230                       Succeeded quite well
## 231               Neither succeeded nor failed
## 232                      Did not quite succeed
## 233                       Succeeded quite well
## 234                       Succeeded quite well
## 235                       Succeeded quite well
## 236                      Did not quite succeed
## 237                       Succeeded quite well
## 238                       Succeeded quite well
## 239                       Succeeded quite well
## 240                       Succeeded quite well
## 241                       Succeeded quite well
## 242                       Succeeded quite well
## 243                       Succeeded quite well
## 244                      Did not quite succeed
## 245                       Succeeded quite well
## 246                       Succeeded quite well
## 247               Neither succeeded nor failed
## 248                        Succeeded very well
## 249                       Succeeded quite well
## 250               Neither succeeded nor failed
## 251                       Succeeded quite well
## 252                      Did not quite succeed
## 253                                 Don't Know
## 254                      Did not quite succeed
## 255                                       <NA>
## 256                     Did not succeed at all
## 257               Neither succeeded nor failed
## 258                     Did not succeed at all
## 259                      Did not quite succeed
## 260                       Succeeded quite well
## 261               Neither succeeded nor failed
## 262                      Did not quite succeed
## 263                                 Don't Know
## 264               Neither succeeded nor failed
## 265                                 Don't Know
## 266               Neither succeeded nor failed
## 267                      Did not quite succeed
## 268               Neither succeeded nor failed
## 269                      Did not quite succeed
## 270                      Did not quite succeed
## 271                      Did not quite succeed
## 272                      Did not quite succeed
## 273                       Succeeded quite well
## 274                       Succeeded quite well
## 275               Neither succeeded nor failed
## 276                      Did not quite succeed
## 277                                 Don't Know
## 278                      Did not quite succeed
## 279                       Succeeded quite well
## 280                       Succeeded quite well
## 281                       Succeeded quite well
## 282                       Succeeded quite well
## 283                       Succeeded quite well
## 284               Neither succeeded nor failed
## 285                       Succeeded quite well
## 286                      Did not quite succeed
## 287                                 Don't Know
## 288                     Did not succeed at all
## 289                                 Don't Know
## 290                      Did not quite succeed
## 291                      Did not quite succeed
## 292                                 Don't Know
## 293                     Did not succeed at all
## 294                      Did not quite succeed
## 295                                 Don't Know
## 296                                 Don't Know
## 297                                 Don't Know
## 298                     Did not succeed at all
## 299                      Did not quite succeed
## 300                      Did not quite succeed
## 302                      Did not quite succeed
## 303               Neither succeeded nor failed
## 304                      Did not quite succeed
## 305                     Did not succeed at all
## 306                      Did not quite succeed
## 307                       Succeeded quite well
## 308                      Did not quite succeed
## 309                      Did not quite succeed
## 310                      Did not quite succeed
## 311                       Succeeded quite well
## 312                       Succeeded quite well
## 313                      Did not quite succeed
## 314                      Did not quite succeed
## 315                       Succeeded quite well
## 316                     Did not succeed at all
## 317                     Did not succeed at all
## 318                                 Don't Know
## 319                     Did not succeed at all
## 320                       Succeeded quite well
## 321                      Did not quite succeed
## 322                      Did not quite succeed
## 323                      Did not quite succeed
## 324                       Succeeded quite well
## 325                       Succeeded quite well
## 326                      Did not quite succeed
## 327                      Did not quite succeed
## 328                       Succeeded quite well
## 329                      Did not quite succeed
## 330               Neither succeeded nor failed
## 331               Neither succeeded nor failed
## 332               Neither succeeded nor failed
## 333                      Did not quite succeed
## 334                      Did not quite succeed
## 335               Neither succeeded nor failed
## 336                                 Don't Know
## 337                      Did not quite succeed
## 338               Neither succeeded nor failed
## 339               Neither succeeded nor failed
## 340                       Succeeded quite well
## 341                      Did not quite succeed
## 342                        Succeeded very well
## 343                      Did not quite succeed
## 344                     Did not succeed at all
## 345                      Did not quite succeed
## 346                       Succeeded quite well
## 347                      Did not quite succeed
## 348               Neither succeeded nor failed
## 349                      Did not quite succeed
## 350                     Did not succeed at all
## 351                     Did not succeed at all
## 352                                 Don't Know
## 353               Neither succeeded nor failed
## 354                                 Don't Know
## 355                      Did not quite succeed
## 356                      Did not quite succeed
## 357               Neither succeeded nor failed
## 358                                 Don't Know
## 359                      Did not quite succeed
## 360                      Did not quite succeed
## 361                      Did not quite succeed
## 362               Neither succeeded nor failed
## 363               Neither succeeded nor failed
## 364                                 Don't Know
## 365               Neither succeeded nor failed
## 366                      Did not quite succeed
## 367                      Did not quite succeed
## 368                      Did not quite succeed
## 369                      Did not quite succeed
## 370                      Did not quite succeed
## 371                      Did not quite succeed
## 372               Neither succeeded nor failed
## 373                       Succeeded quite well
## 374               Neither succeeded nor failed
## 375                     Did not succeed at all
## 376               Neither succeeded nor failed
## 377                      Did not quite succeed
## 378                       Succeeded quite well
## 379                      Did not quite succeed
## 380                      Did not quite succeed
## 381                                 Don't Know
## 382                                 Don't Know
## 383                      Did not quite succeed
## 384                                 Don't Know
## 385                      Did not quite succeed
## 386                      Did not quite succeed
## 387                      Did not quite succeed
## 388                      Did not quite succeed
## 389                      Did not quite succeed
## 390                                 Don't Know
## 391                      Did not quite succeed
## 392                      Did not quite succeed
## 393                                 Don't Know
## 394                      Did not quite succeed
## 395                      Did not quite succeed
## 396                                 Don't Know
## 397                      Did not quite succeed
## 398                      Did not quite succeed
## 399                                 Don't Know
## 400                      Did not quite succeed
## 401                      Did not quite succeed
## 402               Neither succeeded nor failed
## 403                      Did not quite succeed
## 404               Neither succeeded nor failed
## 405                      Did not quite succeed
## 406                     Did not succeed at all
## 407                     Did not succeed at all
## 408                     Did not succeed at all
## 409                      Did not quite succeed
## 410               Neither succeeded nor failed
## 411                      Did not quite succeed
## 412                     Did not succeed at all
## 413                     Did not succeed at all
## 414                      Did not quite succeed
## 415                                 Don't Know
## 416               Neither succeeded nor failed
## 417                                       <NA>
## 418               Neither succeeded nor failed
## 419                     Did not succeed at all
## 420                                       <NA>
## 421                     Did not succeed at all
## 422                                 Don't Know
## 423                                       <NA>
## 424               Neither succeeded nor failed
## 425               Neither succeeded nor failed
## 426               Neither succeeded nor failed
## 427               Neither succeeded nor failed
## 428                                 Don't Know
## 429                     Did not succeed at all
## 430                      Did not quite succeed
## 431                      Did not quite succeed
## 432               Neither succeeded nor failed
## 433               Neither succeeded nor failed
## 434                     Did not succeed at all
## 435               Neither succeeded nor failed
## 436               Neither succeeded nor failed
## 437               Neither succeeded nor failed
## 438                      Did not quite succeed
## 439               Neither succeeded nor failed
## 440               Neither succeeded nor failed
## 441               Neither succeeded nor failed
## 442                      Did not quite succeed
## 443                      Did not quite succeed
## 444                      Did not quite succeed
## 445               Neither succeeded nor failed
## 446               Neither succeeded nor failed
## 447                     Did not succeed at all
## 448                     Did not succeed at all
## 449                     Did not succeed at all
## 450                      Did not quite succeed
## 451                      Did not quite succeed
## 452                      Did not quite succeed
## 453                      Did not quite succeed
## 454                     Did not succeed at all
## 455                      Did not quite succeed
## 456               Neither succeeded nor failed
## 457               Neither succeeded nor failed
## 458                     Did not succeed at all
## 459                      Did not quite succeed
## 460                                 Don't Know
## 461                       Succeeded quite well
## 462                       Succeeded quite well
## 463                      Did not quite succeed
## 464               Neither succeeded nor failed
## 465                      Did not quite succeed
## 466                      Did not quite succeed
## 467                        Succeeded very well
## 468                     Did not succeed at all
## 469                       Succeeded quite well
## 470                       Succeeded quite well
## 471                        Succeeded very well
## 472               Neither succeeded nor failed
## 473                                 Don't Know
## 474                     Did not succeed at all
## 475                        Succeeded very well
## 476                     Did not succeed at all
## 477                        Succeeded very well
## 478                      Did not quite succeed
## 479                                 Don't Know
## 480                                 Don't Know
## 481                      Did not quite succeed
## 482                     Did not succeed at all
## 483                     Did not succeed at all
## 484                      Did not quite succeed
## 485                      Did not quite succeed
## 486                      Did not quite succeed
## 487                      Did not quite succeed
## 488               Neither succeeded nor failed
## 489                       Succeeded quite well
## 490                        Succeeded very well
## 491                      Did not quite succeed
## 492               Neither succeeded nor failed
## 493                     Did not succeed at all
## 494                      Did not quite succeed
## 495                       Succeeded quite well
## 496                       Succeeded quite well
##      Success.in..Maintaining.gender.balance
## 1                     Did not quite succeed
## 2                    Did not succeed at all
## 3                    Did not succeed at all
## 4                       Succeeded very well
## 5                     Did not quite succeed
## 6                      Succeeded quite well
## 7              Neither succeeded nor failed
## 8                     Did not quite succeed
## 9                     Did not quite succeed
## 10                               Don't Know
## 11                     Succeeded quite well
## 12                    Did not quite succeed
## 13                    Did not quite succeed
## 14                     Succeeded quite well
## 15                     Succeeded quite well
## 16                     Succeeded quite well
## 17                     Succeeded quite well
## 18             Neither succeeded nor failed
## 19                     Succeeded quite well
## 20             Neither succeeded nor failed
## 21                   Did not succeed at all
## 22                    Did not quite succeed
## 23             Neither succeeded nor failed
## 24                    Did not quite succeed
## 25                    Did not quite succeed
## 26                    Did not quite succeed
## 27             Neither succeeded nor failed
## 28             Neither succeeded nor failed
## 29                               Don't Know
## 30                    Did not quite succeed
## 31                                     <NA>
## 32                    Did not quite succeed
## 33                    Did not quite succeed
## 34                    Did not quite succeed
## 35                     Succeeded quite well
## 36                     Succeeded quite well
## 37             Neither succeeded nor failed
## 38                    Did not quite succeed
## 39             Neither succeeded nor failed
## 40             Neither succeeded nor failed
## 41                    Did not quite succeed
## 42                    Did not quite succeed
## 43                    Did not quite succeed
## 44                    Did not quite succeed
## 45                    Did not quite succeed
## 46             Neither succeeded nor failed
## 47                    Did not quite succeed
## 48                    Did not quite succeed
## 49                    Did not quite succeed
## 50                               Don't Know
## 51                     Succeeded quite well
## 52             Neither succeeded nor failed
## 53                     Succeeded quite well
## 54                    Did not quite succeed
## 55                    Did not quite succeed
## 56                      Succeeded very well
## 57                      Succeeded very well
## 58                     Succeeded quite well
## 59                     Succeeded quite well
## 60                    Did not quite succeed
## 61                     Succeeded quite well
## 62                     Succeeded quite well
## 63                     Succeeded quite well
## 64                     Succeeded quite well
## 65                     Succeeded quite well
## 66                     Succeeded quite well
## 67                     Succeeded quite well
## 68                     Succeeded quite well
## 69                     Succeeded quite well
## 70                     Succeeded quite well
## 71                                     <NA>
## 72                     Succeeded quite well
## 73                     Succeeded quite well
## 74                     Succeeded quite well
## 75                     Succeeded quite well
## 76                     Succeeded quite well
## 77                     Succeeded quite well
## 78                     Succeeded quite well
## 79                     Succeeded quite well
## 80                     Succeeded quite well
## 81                     Succeeded quite well
## 82                     Succeeded quite well
## 83                     Succeeded quite well
## 84                     Succeeded quite well
## 85                     Succeeded quite well
## 86                     Succeeded quite well
## 87                     Succeeded quite well
## 88                     Succeeded quite well
## 89                     Succeeded quite well
## 90                     Succeeded quite well
## 91                     Succeeded quite well
## 92                     Succeeded quite well
## 93                     Succeeded quite well
## 94                     Succeeded quite well
## 95                     Succeeded quite well
## 96                     Succeeded quite well
## 97                     Succeeded quite well
## 98                     Succeeded quite well
## 99                     Succeeded quite well
## 100                    Succeeded quite well
## 101            Neither succeeded nor failed
## 102                   Did not quite succeed
## 103            Neither succeeded nor failed
## 104            Neither succeeded nor failed
## 105            Neither succeeded nor failed
## 106            Neither succeeded nor failed
## 107            Neither succeeded nor failed
## 108            Neither succeeded nor failed
## 109            Neither succeeded nor failed
## 110                    Succeeded quite well
## 111            Neither succeeded nor failed
## 112            Neither succeeded nor failed
## 113            Neither succeeded nor failed
## 114            Neither succeeded nor failed
## 115            Neither succeeded nor failed
## 116            Neither succeeded nor failed
## 117            Neither succeeded nor failed
## 118            Neither succeeded nor failed
## 119            Neither succeeded nor failed
## 120            Neither succeeded nor failed
## 121                    Succeeded quite well
## 122            Neither succeeded nor failed
## 123            Neither succeeded nor failed
## 124            Neither succeeded nor failed
## 125            Neither succeeded nor failed
## 126                   Did not quite succeed
## 127                   Did not quite succeed
## 128            Neither succeeded nor failed
## 129                   Did not quite succeed
## 130                   Did not quite succeed
## 131            Neither succeeded nor failed
## 132            Neither succeeded nor failed
## 133            Neither succeeded nor failed
## 134            Neither succeeded nor failed
## 135            Neither succeeded nor failed
## 136            Neither succeeded nor failed
## 137                    Succeeded quite well
## 138                    Succeeded quite well
## 139                    Succeeded quite well
## 140            Neither succeeded nor failed
## 141                   Did not quite succeed
## 142            Neither succeeded nor failed
## 143            Neither succeeded nor failed
## 144                    Succeeded quite well
## 145            Neither succeeded nor failed
## 146                   Did not quite succeed
## 147            Neither succeeded nor failed
## 148            Neither succeeded nor failed
## 149            Neither succeeded nor failed
## 150            Neither succeeded nor failed
## 151                   Did not quite succeed
## 152            Neither succeeded nor failed
## 153                              Don't Know
## 154                  Did not succeed at all
## 155                              Don't Know
## 156                   Did not quite succeed
## 157                              Don't Know
## 158                    Succeeded quite well
## 159            Neither succeeded nor failed
## 160            Neither succeeded nor failed
## 161            Neither succeeded nor failed
## 162                  Did not succeed at all
## 163                              Don't Know
## 164                              Don't Know
## 165                                    <NA>
## 166                  Did not succeed at all
## 167                    Succeeded quite well
## 168                   Did not quite succeed
## 169                   Did not quite succeed
## 170                  Did not succeed at all
## 171                   Did not quite succeed
## 172                  Did not succeed at all
## 173                                    <NA>
## 174                   Did not quite succeed
## 175                   Did not quite succeed
## 176                   Did not quite succeed
## 177                   Did not quite succeed
## 178                   Did not quite succeed
## 179                   Did not quite succeed
## 180                   Did not quite succeed
## 181                   Did not quite succeed
## 182                  Did not succeed at all
## 183                   Did not quite succeed
## 184                   Did not quite succeed
## 185                  Did not succeed at all
## 186                  Did not succeed at all
## 187                  Did not succeed at all
## 188                   Did not quite succeed
## 189                  Did not succeed at all
## 190                   Did not quite succeed
## 191                   Did not quite succeed
## 192                  Did not succeed at all
## 193                  Did not succeed at all
## 194                  Did not succeed at all
## 195            Neither succeeded nor failed
## 196                  Did not succeed at all
## 197                   Did not quite succeed
## 198                   Did not quite succeed
## 199                  Did not succeed at all
## 200                   Did not quite succeed
## 201            Neither succeeded nor failed
## 202            Neither succeeded nor failed
## 203            Neither succeeded nor failed
## 204                   Did not quite succeed
## 205                    Succeeded quite well
## 206                  Did not succeed at all
## 207                    Succeeded quite well
## 208                    Succeeded quite well
## 209                   Did not quite succeed
## 210                    Succeeded quite well
## 211            Neither succeeded nor failed
## 212            Neither succeeded nor failed
## 213            Neither succeeded nor failed
## 214            Neither succeeded nor failed
## 215            Neither succeeded nor failed
## 216            Neither succeeded nor failed
## 217                   Did not quite succeed
## 218            Neither succeeded nor failed
## 219            Neither succeeded nor failed
## 220                   Did not quite succeed
## 221            Neither succeeded nor failed
## 222                    Succeeded quite well
## 223                    Succeeded quite well
## 224                    Succeeded quite well
## 225                   Did not quite succeed
## 226                   Did not quite succeed
## 227            Neither succeeded nor failed
## 228                   Did not quite succeed
## 229                    Succeeded quite well
## 230                   Did not quite succeed
## 231            Neither succeeded nor failed
## 232            Neither succeeded nor failed
## 233                    Succeeded quite well
## 234                    Succeeded quite well
## 235                    Succeeded quite well
## 236            Neither succeeded nor failed
## 237                   Did not quite succeed
## 238            Neither succeeded nor failed
## 239                    Succeeded quite well
## 240                    Succeeded quite well
## 241                    Succeeded quite well
## 242                    Succeeded quite well
## 243                    Succeeded quite well
## 244                    Succeeded quite well
## 245                     Succeeded very well
## 246            Neither succeeded nor failed
## 247                   Did not quite succeed
## 248            Neither succeeded nor failed
## 249            Neither succeeded nor failed
## 250                   Did not quite succeed
## 251            Neither succeeded nor failed
## 252                   Did not quite succeed
## 253                  Did not succeed at all
## 254                   Did not quite succeed
## 255                    Succeeded quite well
## 256                  Did not succeed at all
## 257                   Did not quite succeed
## 258                  Did not succeed at all
## 259                   Did not quite succeed
## 260                   Did not quite succeed
## 261                   Did not quite succeed
## 262            Neither succeeded nor failed
## 263            Neither succeeded nor failed
## 264                   Did not quite succeed
## 265                  Did not succeed at all
## 266                                    <NA>
## 267                   Did not quite succeed
## 268                                    <NA>
## 269                   Did not quite succeed
## 270                   Did not quite succeed
## 271                   Did not quite succeed
## 272                   Did not quite succeed
## 273                    Succeeded quite well
## 274                                    <NA>
## 275                    Succeeded quite well
## 276            Neither succeeded nor failed
## 277                              Don't Know
## 278                   Did not quite succeed
## 279                   Did not quite succeed
## 280                   Did not quite succeed
## 281                    Succeeded quite well
## 282                    Succeeded quite well
## 283                   Did not quite succeed
## 284                    Succeeded quite well
## 285                    Succeeded quite well
## 286                   Did not quite succeed
## 287                  Did not succeed at all
## 288                              Don't Know
## 289                  Did not succeed at all
## 290                   Did not quite succeed
## 291                   Did not quite succeed
## 292                   Did not quite succeed
## 293                  Did not succeed at all
## 294                   Did not quite succeed
## 295                  Did not succeed at all
## 296                              Don't Know
## 297                  Did not succeed at all
## 298                  Did not succeed at all
## 299                  Did not succeed at all
## 300                   Did not quite succeed
## 302                   Did not quite succeed
## 303                    Succeeded quite well
## 304                   Did not quite succeed
## 305                  Did not succeed at all
## 306                   Did not quite succeed
## 307                    Succeeded quite well
## 308                    Succeeded quite well
## 309                   Did not quite succeed
## 310                   Did not quite succeed
## 311                    Succeeded quite well
## 312                    Succeeded quite well
## 313                   Did not quite succeed
## 314                    Succeeded quite well
## 315                    Succeeded quite well
## 316                  Did not succeed at all
## 317                   Did not quite succeed
## 318                              Don't Know
## 319                   Did not quite succeed
## 320            Neither succeeded nor failed
## 321                   Did not quite succeed
## 322                    Succeeded quite well
## 323                   Did not quite succeed
## 324                    Succeeded quite well
## 325                    Succeeded quite well
## 326                   Did not quite succeed
## 327                   Did not quite succeed
## 328                    Succeeded quite well
## 329                  Did not succeed at all
## 330                   Did not quite succeed
## 331                    Succeeded quite well
## 332            Neither succeeded nor failed
## 333            Neither succeeded nor failed
## 334            Neither succeeded nor failed
## 335                   Did not quite succeed
## 336                  Did not succeed at all
## 337            Neither succeeded nor failed
## 338                   Did not quite succeed
## 339            Neither succeeded nor failed
## 340                    Succeeded quite well
## 341                   Did not quite succeed
## 342                     Succeeded very well
## 343                    Succeeded quite well
## 344            Neither succeeded nor failed
## 345                   Did not quite succeed
## 346                    Succeeded quite well
## 347                   Did not quite succeed
## 348            Neither succeeded nor failed
## 349                   Did not quite succeed
## 350                   Did not quite succeed
## 351                  Did not succeed at all
## 352                              Don't Know
## 353            Neither succeeded nor failed
## 354                              Don't Know
## 355                    Succeeded quite well
## 356                   Did not quite succeed
## 357            Neither succeeded nor failed
## 358                    Succeeded quite well
## 359                   Did not quite succeed
## 360                   Did not quite succeed
## 361                   Did not quite succeed
## 362            Neither succeeded nor failed
## 363            Neither succeeded nor failed
## 364                   Did not quite succeed
## 365            Neither succeeded nor failed
## 366                   Did not quite succeed
## 367                   Did not quite succeed
## 368                   Did not quite succeed
## 369                   Did not quite succeed
## 370                   Did not quite succeed
## 371                   Did not quite succeed
## 372            Neither succeeded nor failed
## 373                    Succeeded quite well
## 374                    Succeeded quite well
## 375                  Did not succeed at all
## 376                    Succeeded quite well
## 377                   Did not quite succeed
## 378                    Succeeded quite well
## 379                   Did not quite succeed
## 380                   Did not quite succeed
## 381                              Don't Know
## 382                              Don't Know
## 383                   Did not quite succeed
## 384                   Did not quite succeed
## 385                   Did not quite succeed
## 386                   Did not quite succeed
## 387                   Did not quite succeed
## 388                   Did not quite succeed
## 389                   Did not quite succeed
## 390            Neither succeeded nor failed
## 391                   Did not quite succeed
## 392                   Did not quite succeed
## 393                   Did not quite succeed
## 394                   Did not quite succeed
## 395                    Succeeded quite well
## 396                   Did not quite succeed
## 397                   Did not quite succeed
## 398                   Did not quite succeed
## 399                              Don't Know
## 400                   Did not quite succeed
## 401                   Did not quite succeed
## 402            Neither succeeded nor failed
## 403                   Did not quite succeed
## 404            Neither succeeded nor failed
## 405                   Did not quite succeed
## 406            Neither succeeded nor failed
## 407                              Don't Know
## 408                  Did not succeed at all
## 409                   Did not quite succeed
## 410                                    <NA>
## 411                   Did not quite succeed
## 412                  Did not succeed at all
## 413            Neither succeeded nor failed
## 414                   Did not quite succeed
## 415                              Don't Know
## 416            Neither succeeded nor failed
## 417                                    <NA>
## 418            Neither succeeded nor failed
## 419            Neither succeeded nor failed
## 420                                    <NA>
## 421            Neither succeeded nor failed
## 422                              Don't Know
## 423                                    <NA>
## 424            Neither succeeded nor failed
## 425                                    <NA>
## 426            Neither succeeded nor failed
## 427            Neither succeeded nor failed
## 428                              Don't Know
## 429                  Did not succeed at all
## 430                   Did not quite succeed
## 431                   Did not quite succeed
## 432            Neither succeeded nor failed
## 433            Neither succeeded nor failed
## 434                  Did not succeed at all
## 435            Neither succeeded nor failed
## 436            Neither succeeded nor failed
## 437            Neither succeeded nor failed
## 438                   Did not quite succeed
## 439            Neither succeeded nor failed
## 440            Neither succeeded nor failed
## 441            Neither succeeded nor failed
## 442                   Did not quite succeed
## 443                   Did not quite succeed
## 444                   Did not quite succeed
## 445            Neither succeeded nor failed
## 446            Neither succeeded nor failed
## 447                  Did not succeed at all
## 448                  Did not succeed at all
## 449                  Did not succeed at all
## 450                   Did not quite succeed
## 451                   Did not quite succeed
## 452                   Did not quite succeed
## 453                   Did not quite succeed
## 454                  Did not succeed at all
## 455            Neither succeeded nor failed
## 456                   Did not quite succeed
## 457            Neither succeeded nor failed
## 458                  Did not succeed at all
## 459                  Did not succeed at all
## 460                  Did not succeed at all
## 461            Neither succeeded nor failed
## 462                     Succeeded very well
## 463            Neither succeeded nor failed
## 464            Neither succeeded nor failed
## 465                    Succeeded quite well
## 466                   Did not quite succeed
## 467                     Succeeded very well
## 468                   Did not quite succeed
## 469                   Did not quite succeed
## 470                  Did not succeed at all
## 471                     Succeeded very well
## 472                   Did not quite succeed
## 473                              Don't Know
## 474                  Did not succeed at all
## 475                    Succeeded quite well
## 476                              Don't Know
## 477                    Succeeded quite well
## 478                   Did not quite succeed
## 479                              Don't Know
## 480                              Don't Know
## 481                   Did not quite succeed
## 482                  Did not succeed at all
## 483            Neither succeeded nor failed
## 484                   Did not quite succeed
## 485                   Did not quite succeed
## 486                   Did not quite succeed
## 487                   Did not quite succeed
## 488            Neither succeeded nor failed
## 489            Neither succeeded nor failed
## 490                    Succeeded quite well
## 491                    Succeeded quite well
## 492                    Succeeded quite well
## 493                                    <NA>
## 494                   Did not quite succeed
## 495                    Succeeded quite well
## 496                                    <NA>
##      Success.in..Strengthening.local.government
## 1                         Did not quite succeed
## 2                        Did not succeed at all
## 3                        Did not succeed at all
## 4                          Succeeded quite well
## 5                         Did not quite succeed
## 6                         Did not quite succeed
## 7                  Neither succeeded nor failed
## 8                        Did not succeed at all
## 9                         Did not quite succeed
## 10                                   Don't Know
## 11                         Succeeded quite well
## 12                        Did not quite succeed
## 13                       Did not succeed at all
## 14                        Did not quite succeed
## 15                 Neither succeeded nor failed
## 16                 Neither succeeded nor failed
## 17                        Did not quite succeed
## 18                        Did not quite succeed
## 19                 Neither succeeded nor failed
## 20                        Did not quite succeed
## 21                        Did not quite succeed
## 22                 Neither succeeded nor failed
## 23                        Did not quite succeed
## 24                 Neither succeeded nor failed
## 25                        Did not quite succeed
## 26                 Neither succeeded nor failed
## 27                         Succeeded quite well
## 28                        Did not quite succeed
## 29                                   Don't Know
## 30                 Neither succeeded nor failed
## 31                         Succeeded quite well
## 32                        Did not quite succeed
## 33                        Did not quite succeed
## 34                        Did not quite succeed
## 35                        Did not quite succeed
## 36                 Neither succeeded nor failed
## 37                 Neither succeeded nor failed
## 38                       Did not succeed at all
## 39                                         <NA>
## 40                 Neither succeeded nor failed
## 41                 Neither succeeded nor failed
## 42                 Neither succeeded nor failed
## 43                 Neither succeeded nor failed
## 44                       Did not succeed at all
## 45                        Did not quite succeed
## 46                       Did not succeed at all
## 47                       Did not succeed at all
## 48                       Did not succeed at all
## 49                        Did not quite succeed
## 50                                   Don't Know
## 51                                   Don't Know
## 52                                   Don't Know
## 53                 Neither succeeded nor failed
## 54                       Did not succeed at all
## 55                 Neither succeeded nor failed
## 56                                   Don't Know
## 57                                   Don't Know
## 58                                   Don't Know
## 59                                   Don't Know
## 60                        Did not quite succeed
## 61                         Succeeded quite well
## 62                 Neither succeeded nor failed
## 63                 Neither succeeded nor failed
## 64                 Neither succeeded nor failed
## 65                 Neither succeeded nor failed
## 66                         Succeeded quite well
## 67                 Neither succeeded nor failed
## 68                         Succeeded quite well
## 69                                   Don't Know
## 70                         Succeeded quite well
## 71                         Succeeded quite well
## 72                 Neither succeeded nor failed
## 73                 Neither succeeded nor failed
## 74                 Neither succeeded nor failed
## 75                 Neither succeeded nor failed
## 76                 Neither succeeded nor failed
## 77                         Succeeded quite well
## 78                         Succeeded quite well
## 79                 Neither succeeded nor failed
## 80                 Neither succeeded nor failed
## 81                 Neither succeeded nor failed
## 82                         Succeeded quite well
## 83                 Neither succeeded nor failed
## 84                 Neither succeeded nor failed
## 85                         Succeeded quite well
## 86                 Neither succeeded nor failed
## 87                 Neither succeeded nor failed
## 88                         Succeeded quite well
## 89                         Succeeded quite well
## 90                 Neither succeeded nor failed
## 91                 Neither succeeded nor failed
## 92                         Succeeded quite well
## 93                         Succeeded quite well
## 94                         Succeeded quite well
## 95                 Neither succeeded nor failed
## 96                 Neither succeeded nor failed
## 97                         Succeeded quite well
## 98                         Succeeded quite well
## 99                 Neither succeeded nor failed
## 100                        Succeeded quite well
## 101                Neither succeeded nor failed
## 102                        Succeeded quite well
## 103                        Succeeded quite well
## 104                       Did not quite succeed
## 105                        Succeeded quite well
## 106                Neither succeeded nor failed
## 107                        Succeeded quite well
## 108                       Did not quite succeed
## 109                       Did not quite succeed
## 110                        Succeeded quite well
## 111                        Succeeded quite well
## 112                       Did not quite succeed
## 113                        Succeeded quite well
## 114                Neither succeeded nor failed
## 115                Neither succeeded nor failed
## 116                Neither succeeded nor failed
## 117                Neither succeeded nor failed
## 118                Neither succeeded nor failed
## 119                       Did not quite succeed
## 120                Neither succeeded nor failed
## 121                Neither succeeded nor failed
## 122                       Did not quite succeed
## 123                        Succeeded quite well
## 124                        Succeeded quite well
## 125                Neither succeeded nor failed
## 126                Neither succeeded nor failed
## 127                Neither succeeded nor failed
## 128                        Succeeded quite well
## 129                        Succeeded quite well
## 130                Neither succeeded nor failed
## 131                        Succeeded quite well
## 132                        Succeeded quite well
## 133                        Succeeded quite well
## 134                Neither succeeded nor failed
## 135                Neither succeeded nor failed
## 136                Neither succeeded nor failed
## 137                       Did not quite succeed
## 138                Neither succeeded nor failed
## 139                Neither succeeded nor failed
## 140                Neither succeeded nor failed
## 141                Neither succeeded nor failed
## 142                Neither succeeded nor failed
## 143                Neither succeeded nor failed
## 144                Neither succeeded nor failed
## 145                       Did not quite succeed
## 146                Neither succeeded nor failed
## 147                       Did not quite succeed
## 148                        Succeeded quite well
## 149                Neither succeeded nor failed
## 150                Neither succeeded nor failed
## 151                Neither succeeded nor failed
## 152                       Did not quite succeed
## 153                      Did not succeed at all
## 154                        Succeeded quite well
## 155                        Succeeded quite well
## 156                Neither succeeded nor failed
## 157                                  Don't Know
## 158                       Did not quite succeed
## 159                                  Don't Know
## 160                       Did not quite succeed
## 161                Neither succeeded nor failed
## 162                      Did not succeed at all
## 163                                  Don't Know
## 164                                  Don't Know
## 165                        Succeeded quite well
## 166                       Did not quite succeed
## 167                       Did not quite succeed
## 168                Neither succeeded nor failed
## 169                       Did not quite succeed
## 170                       Did not quite succeed
## 171                Neither succeeded nor failed
## 172                Neither succeeded nor failed
## 173                      Did not succeed at all
## 174                       Did not quite succeed
## 175                       Did not quite succeed
## 176                Neither succeeded nor failed
## 177                Neither succeeded nor failed
## 178                       Did not quite succeed
## 179                Neither succeeded nor failed
## 180                       Did not quite succeed
## 181                       Did not quite succeed
## 182                Neither succeeded nor failed
## 183                       Did not quite succeed
## 184                       Did not quite succeed
## 185                       Did not quite succeed
## 186                       Did not quite succeed
## 187                       Did not quite succeed
## 188                       Did not quite succeed
## 189                      Did not succeed at all
## 190                Neither succeeded nor failed
## 191                      Did not succeed at all
## 192                      Did not succeed at all
## 193                      Did not succeed at all
## 194                Neither succeeded nor failed
## 195                Neither succeeded nor failed
## 196                       Did not quite succeed
## 197                       Did not quite succeed
## 198                Neither succeeded nor failed
## 199                      Did not succeed at all
## 200                       Did not quite succeed
## 201                       Did not quite succeed
## 202                        Succeeded quite well
## 203                       Did not quite succeed
## 204                Neither succeeded nor failed
## 205                        Succeeded quite well
## 206                       Did not quite succeed
## 207                Neither succeeded nor failed
## 208                        Succeeded quite well
## 209                       Did not quite succeed
## 210                Neither succeeded nor failed
## 211                Neither succeeded nor failed
## 212                        Succeeded quite well
## 213                        Succeeded quite well
## 214                Neither succeeded nor failed
## 215                Neither succeeded nor failed
## 216                Neither succeeded nor failed
## 217                Neither succeeded nor failed
## 218                       Did not quite succeed
## 219                        Succeeded quite well
## 220                Neither succeeded nor failed
## 221                       Did not quite succeed
## 222                Neither succeeded nor failed
## 223                Neither succeeded nor failed
## 224                      Did not succeed at all
## 225                Neither succeeded nor failed
## 226                        Succeeded quite well
## 227                      Did not succeed at all
## 228                Neither succeeded nor failed
## 229                Neither succeeded nor failed
## 230                Neither succeeded nor failed
## 231                Neither succeeded nor failed
## 232                Neither succeeded nor failed
## 233                Neither succeeded nor failed
## 234                        Succeeded quite well
## 235                Neither succeeded nor failed
## 236                        Succeeded quite well
## 237                      Did not succeed at all
## 238                       Did not quite succeed
## 239                Neither succeeded nor failed
## 240                Neither succeeded nor failed
## 241                Neither succeeded nor failed
## 242                Neither succeeded nor failed
## 243                Neither succeeded nor failed
## 244                        Succeeded quite well
## 245                       Did not quite succeed
## 246                Neither succeeded nor failed
## 247                        Succeeded quite well
## 248                       Did not quite succeed
## 249                       Did not quite succeed
## 250                Neither succeeded nor failed
## 251                Neither succeeded nor failed
## 252                       Did not quite succeed
## 253                                  Don't Know
## 254                       Did not quite succeed
## 255                        Succeeded quite well
## 256                      Did not succeed at all
## 257                       Did not quite succeed
## 258                      Did not succeed at all
## 259                      Did not succeed at all
## 260                        Succeeded quite well
## 261                Neither succeeded nor failed
## 262                      Did not succeed at all
## 263                      Did not succeed at all
## 264                       Did not quite succeed
## 265                                  Don't Know
## 266                Neither succeeded nor failed
## 267                      Did not succeed at all
## 268                       Did not quite succeed
## 269                      Did not succeed at all
## 270                                  Don't Know
## 271                       Did not quite succeed
## 272                       Did not quite succeed
## 273                        Succeeded quite well
## 274                        Succeeded quite well
## 275                        Succeeded quite well
## 276                       Did not quite succeed
## 277                                  Don't Know
## 278                        Succeeded quite well
## 279                        Succeeded quite well
## 280                Neither succeeded nor failed
## 281                        Succeeded quite well
## 282                        Succeeded quite well
## 283                        Succeeded quite well
## 284                       Did not quite succeed
## 285                        Succeeded quite well
## 286                                  Don't Know
## 287                      Did not succeed at all
## 288                      Did not succeed at all
## 289                                  Don't Know
## 290                Neither succeeded nor failed
## 291                       Did not quite succeed
## 292                                  Don't Know
## 293                       Did not quite succeed
## 294                Neither succeeded nor failed
## 295                                  Don't Know
## 296                                  Don't Know
## 297                                  Don't Know
## 298                       Did not quite succeed
## 299                       Did not quite succeed
## 300                       Did not quite succeed
## 302                       Did not quite succeed
## 303                        Succeeded quite well
## 304                       Did not quite succeed
## 305                        Succeeded quite well
## 306                       Did not quite succeed
## 307                       Did not quite succeed
## 308                        Succeeded quite well
## 309                       Did not quite succeed
## 310                       Did not quite succeed
## 311                        Succeeded quite well
## 312                        Succeeded quite well
## 313                       Did not quite succeed
## 314                        Succeeded quite well
## 315                        Succeeded quite well
## 316                      Did not succeed at all
## 317                                  Don't Know
## 318                                  Don't Know
## 319                      Did not succeed at all
## 320                Neither succeeded nor failed
## 321                       Did not quite succeed
## 322                        Succeeded quite well
## 323                       Did not quite succeed
## 324                        Succeeded quite well
## 325                        Succeeded quite well
## 326                       Did not quite succeed
## 327                       Did not quite succeed
## 328                                  Don't Know
## 329                                  Don't Know
## 330                      Did not succeed at all
## 331                         Succeeded very well
## 332                        Succeeded quite well
## 333                        Succeeded quite well
## 334                        Succeeded quite well
## 335                Neither succeeded nor failed
## 336                       Did not quite succeed
## 337                        Succeeded quite well
## 338                Neither succeeded nor failed
## 339                Neither succeeded nor failed
## 340                        Succeeded quite well
## 341                       Did not quite succeed
## 342                        Succeeded quite well
## 343                Neither succeeded nor failed
## 344                       Did not quite succeed
## 345                                  Don't Know
## 346                        Succeeded quite well
## 347                Neither succeeded nor failed
## 348                Neither succeeded nor failed
## 349                Neither succeeded nor failed
## 350                      Did not succeed at all
## 351                       Did not quite succeed
## 352                                  Don't Know
## 353                Neither succeeded nor failed
## 354                                  Don't Know
## 355                       Did not quite succeed
## 356                       Did not quite succeed
## 357                Neither succeeded nor failed
## 358                       Did not quite succeed
## 359                       Did not quite succeed
## 360                       Did not quite succeed
## 361                       Did not quite succeed
## 362                        Succeeded quite well
## 363                Neither succeeded nor failed
## 364                       Did not quite succeed
## 365                Neither succeeded nor failed
## 366                       Did not quite succeed
## 367                       Did not quite succeed
## 368                       Did not quite succeed
## 369                       Did not quite succeed
## 370                       Did not quite succeed
## 371                       Did not quite succeed
## 372                Neither succeeded nor failed
## 373                Neither succeeded nor failed
## 374                        Succeeded quite well
## 375                      Did not succeed at all
## 376                Neither succeeded nor failed
## 377                       Did not quite succeed
## 378                        Succeeded quite well
## 379                       Did not quite succeed
## 380                       Did not quite succeed
## 381                                  Don't Know
## 382                                  Don't Know
## 383                       Did not quite succeed
## 384                       Did not quite succeed
## 385                       Did not quite succeed
## 386                       Did not quite succeed
## 387                       Did not quite succeed
## 388                                  Don't Know
## 389                       Did not quite succeed
## 390                       Did not quite succeed
## 391                       Did not quite succeed
## 392                       Did not quite succeed
## 393                                  Don't Know
## 394                                  Don't Know
## 395                        Succeeded quite well
## 396                       Did not quite succeed
## 397                       Did not quite succeed
## 398                       Did not quite succeed
## 399                                  Don't Know
## 400                       Did not quite succeed
## 401                       Did not quite succeed
## 402                Neither succeeded nor failed
## 403                Neither succeeded nor failed
## 404                       Did not quite succeed
## 405                       Did not quite succeed
## 406                Neither succeeded nor failed
## 407                Neither succeeded nor failed
## 408                      Did not succeed at all
## 409                       Did not quite succeed
## 410                Neither succeeded nor failed
## 411                       Did not quite succeed
## 412                Neither succeeded nor failed
## 413                       Did not quite succeed
## 414                Neither succeeded nor failed
## 415                                  Don't Know
## 416                       Did not quite succeed
## 417                       Did not quite succeed
## 418                Neither succeeded nor failed
## 419                Neither succeeded nor failed
## 420                                        <NA>
## 421                Neither succeeded nor failed
## 422                                  Don't Know
## 423                                        <NA>
## 424                Neither succeeded nor failed
## 425                       Did not quite succeed
## 426                Neither succeeded nor failed
## 427                Neither succeeded nor failed
## 428                                  Don't Know
## 429                      Did not succeed at all
## 430                      Did not succeed at all
## 431                      Did not succeed at all
## 432                Neither succeeded nor failed
## 433                Neither succeeded nor failed
## 434                      Did not succeed at all
## 435                Neither succeeded nor failed
## 436                Neither succeeded nor failed
## 437                Neither succeeded nor failed
## 438                      Did not succeed at all
## 439                Neither succeeded nor failed
## 440                                        <NA>
## 441                Neither succeeded nor failed
## 442                       Did not quite succeed
## 443                       Did not quite succeed
## 444                       Did not quite succeed
## 445                      Did not succeed at all
## 446                Neither succeeded nor failed
## 447                      Did not succeed at all
## 448                       Did not quite succeed
## 449                      Did not succeed at all
## 450                       Did not quite succeed
## 451                       Did not quite succeed
## 452                       Did not quite succeed
## 453                       Did not quite succeed
## 454                      Did not succeed at all
## 455                Neither succeeded nor failed
## 456                       Did not quite succeed
## 457                      Did not succeed at all
## 458                      Did not succeed at all
## 459                                        <NA>
## 460                Neither succeeded nor failed
## 461                        Succeeded quite well
## 462                       Did not quite succeed
## 463                Neither succeeded nor failed
## 464                Neither succeeded nor failed
## 465                        Succeeded quite well
## 466                       Did not quite succeed
## 467                         Succeeded very well
## 468                       Did not quite succeed
## 469                Neither succeeded nor failed
## 470                        Succeeded quite well
## 471                      Did not succeed at all
## 472                      Did not succeed at all
## 473                                  Don't Know
## 474                      Did not succeed at all
## 475                       Did not quite succeed
## 476                                  Don't Know
## 477                        Succeeded quite well
## 478                       Did not quite succeed
## 479                                  Don't Know
## 480                                  Don't Know
## 481                       Did not quite succeed
## 482                      Did not succeed at all
## 483                      Did not succeed at all
## 484                       Did not quite succeed
## 485                       Did not quite succeed
## 486                        Succeeded quite well
## 487                Neither succeeded nor failed
## 488                       Did not quite succeed
## 489                Neither succeeded nor failed
## 490                         Succeeded very well
## 491                Neither succeeded nor failed
## 492                        Succeeded quite well
## 493                      Did not succeed at all
## 494                Neither succeeded nor failed
## 495                      Did not succeed at all
## 496                        Succeeded quite well
##      Success.in..Human.resource.development.for.overseas.employment
## 1                                             Did not quite succeed
## 2                                             Did not quite succeed
## 3                                             Did not quite succeed
## 4                                               Succeeded very well
## 5                                             Did not quite succeed
## 6                                      Neither succeeded nor failed
## 7                                      Neither succeeded nor failed
## 8                                            Did not succeed at all
## 9                                             Did not quite succeed
## 10                                                       Don't Know
## 11                                             Succeeded quite well
## 12                                            Did not quite succeed
## 13                                            Did not quite succeed
## 14                                             Succeeded quite well
## 15                                           Did not succeed at all
## 16                                     Neither succeeded nor failed
## 17                                           Did not succeed at all
## 18                                            Did not quite succeed
## 19                                             Succeeded quite well
## 20                                            Did not quite succeed
## 21                                           Did not succeed at all
## 22                                           Did not succeed at all
## 23                                     Neither succeeded nor failed
## 24                                            Did not quite succeed
## 25                                     Neither succeeded nor failed
## 26                                     Neither succeeded nor failed
## 27                                            Did not quite succeed
## 28                                     Neither succeeded nor failed
## 29                                                       Don't Know
## 30                                     Neither succeeded nor failed
## 31                                     Neither succeeded nor failed
## 32                                            Did not quite succeed
## 33                                            Did not quite succeed
## 34                                           Did not succeed at all
## 35                                            Did not quite succeed
## 36                                            Did not quite succeed
## 37                                     Neither succeeded nor failed
## 38                                            Did not quite succeed
## 39                                     Neither succeeded nor failed
## 40                                     Neither succeeded nor failed
## 41                                     Neither succeeded nor failed
## 42                                     Neither succeeded nor failed
## 43                                     Neither succeeded nor failed
## 44                                            Did not quite succeed
## 45                                            Did not quite succeed
## 46                                     Neither succeeded nor failed
## 47                                           Did not succeed at all
## 48                                            Did not quite succeed
## 49                                            Did not quite succeed
## 50                                            Did not quite succeed
## 51                                                       Don't Know
## 52                                                       Don't Know
## 53                                     Neither succeeded nor failed
## 54                                           Did not succeed at all
## 55                                              Succeeded very well
## 56                                            Did not quite succeed
## 57                                                       Don't Know
## 58                                                       Don't Know
## 59                                            Did not quite succeed
## 60                                           Did not succeed at all
## 61                                     Neither succeeded nor failed
## 62                                     Neither succeeded nor failed
## 63                                     Neither succeeded nor failed
## 64                                            Did not quite succeed
## 65                                            Did not quite succeed
## 66                                     Neither succeeded nor failed
## 67                                     Neither succeeded nor failed
## 68                                             Succeeded quite well
## 69                                           Did not succeed at all
## 70                                     Neither succeeded nor failed
## 71                                     Neither succeeded nor failed
## 72                                     Neither succeeded nor failed
## 73                                            Did not quite succeed
## 74                                     Neither succeeded nor failed
## 75                                     Neither succeeded nor failed
## 76                                     Neither succeeded nor failed
## 77                                            Did not quite succeed
## 78                                     Neither succeeded nor failed
## 79                                     Neither succeeded nor failed
## 80                                     Neither succeeded nor failed
## 81                                     Neither succeeded nor failed
## 82                                     Neither succeeded nor failed
## 83                                     Neither succeeded nor failed
## 84                                     Neither succeeded nor failed
## 85                                     Neither succeeded nor failed
## 86                                     Neither succeeded nor failed
## 87                                     Neither succeeded nor failed
## 88                                             Succeeded quite well
## 89                                             Succeeded quite well
## 90                                     Neither succeeded nor failed
## 91                                     Neither succeeded nor failed
## 92                                     Neither succeeded nor failed
## 93                                     Neither succeeded nor failed
## 94                                             Succeeded quite well
## 95                                     Neither succeeded nor failed
## 96                                     Neither succeeded nor failed
## 97                                     Neither succeeded nor failed
## 98                                     Neither succeeded nor failed
## 99                                     Neither succeeded nor failed
## 100                                    Neither succeeded nor failed
## 101                                            Succeeded quite well
## 102                                           Did not quite succeed
## 103                                    Neither succeeded nor failed
## 104                                    Neither succeeded nor failed
## 105                                            Succeeded quite well
## 106                                            Succeeded quite well
## 107                                            Succeeded quite well
## 108                                    Neither succeeded nor failed
## 109                                    Neither succeeded nor failed
## 110                                           Did not quite succeed
## 111                                            Succeeded quite well
## 112                                    Neither succeeded nor failed
## 113                                    Neither succeeded nor failed
## 114                                    Neither succeeded nor failed
## 115                                    Neither succeeded nor failed
## 116                                    Neither succeeded nor failed
## 117                                    Neither succeeded nor failed
## 118                                    Neither succeeded nor failed
## 119                                           Did not quite succeed
## 120                                    Neither succeeded nor failed
## 121                                            Succeeded quite well
## 122                                    Neither succeeded nor failed
## 123                                    Neither succeeded nor failed
## 124                                    Neither succeeded nor failed
## 125                                    Neither succeeded nor failed
## 126                                           Did not quite succeed
## 127                                           Did not quite succeed
## 128                                    Neither succeeded nor failed
## 129                                    Neither succeeded nor failed
## 130                                    Neither succeeded nor failed
## 131                                    Neither succeeded nor failed
## 132                                    Neither succeeded nor failed
## 133                                    Neither succeeded nor failed
## 134                                    Neither succeeded nor failed
## 135                                    Neither succeeded nor failed
## 136                                    Neither succeeded nor failed
## 137                                    Neither succeeded nor failed
## 138                                            Succeeded quite well
## 139                                    Neither succeeded nor failed
## 140                                    Neither succeeded nor failed
## 141                                    Neither succeeded nor failed
## 142                                    Neither succeeded nor failed
## 143                                    Neither succeeded nor failed
## 144                                    Neither succeeded nor failed
## 145                                    Neither succeeded nor failed
## 146                                    Neither succeeded nor failed
## 147                                    Neither succeeded nor failed
## 148                                    Neither succeeded nor failed
## 149                                    Neither succeeded nor failed
## 150                                    Neither succeeded nor failed
## 151                                             Succeeded very well
## 152                                            Succeeded quite well
## 153                                    Neither succeeded nor failed
## 154                                            Succeeded quite well
## 155                                            Succeeded quite well
## 156                                             Succeeded very well
## 157                                            Succeeded quite well
## 158                                    Neither succeeded nor failed
## 159                                            Succeeded quite well
## 160                                    Neither succeeded nor failed
## 161                                    Neither succeeded nor failed
## 162                                    Neither succeeded nor failed
## 163                                            Succeeded quite well
## 164                                          Did not succeed at all
## 165                                           Did not quite succeed
## 166                                          Did not succeed at all
## 167                                    Neither succeeded nor failed
## 168                                    Neither succeeded nor failed
## 169                                    Neither succeeded nor failed
## 170                                           Did not quite succeed
## 171                                    Neither succeeded nor failed
## 172                                           Did not quite succeed
## 173                                           Did not quite succeed
## 174                                    Neither succeeded nor failed
## 175                                           Did not quite succeed
## 176                                    Neither succeeded nor failed
## 177                                           Did not quite succeed
## 178                                           Did not quite succeed
## 179                                           Did not quite succeed
## 180                                           Did not quite succeed
## 181                                           Did not quite succeed
## 182                                           Did not quite succeed
## 183                                           Did not quite succeed
## 184                                    Neither succeeded nor failed
## 185                                           Did not quite succeed
## 186                                           Did not quite succeed
## 187                                           Did not quite succeed
## 188                                           Did not quite succeed
## 189                                          Did not succeed at all
## 190                                           Did not quite succeed
## 191                                           Did not quite succeed
## 192                                           Did not quite succeed
## 193                                          Did not succeed at all
## 194                                           Did not quite succeed
## 195                                           Did not quite succeed
## 196                                          Did not succeed at all
## 197                                           Did not quite succeed
## 198                                    Neither succeeded nor failed
## 199                                           Did not quite succeed
## 200                                          Did not succeed at all
## 201                                    Neither succeeded nor failed
## 202                                           Did not quite succeed
## 203                                    Neither succeeded nor failed
## 204                                    Neither succeeded nor failed
## 205                                    Neither succeeded nor failed
## 206                                    Neither succeeded nor failed
## 207                                    Neither succeeded nor failed
## 208                                    Neither succeeded nor failed
## 209                                    Neither succeeded nor failed
## 210                                            Succeeded quite well
## 211                                    Neither succeeded nor failed
## 212                                    Neither succeeded nor failed
## 213                                    Neither succeeded nor failed
## 214                                    Neither succeeded nor failed
## 215                                    Neither succeeded nor failed
## 216                                    Neither succeeded nor failed
## 217                                            Succeeded quite well
## 218                                            Succeeded quite well
## 219                                    Neither succeeded nor failed
## 220                                           Did not quite succeed
## 221                                           Did not quite succeed
## 222                                            Succeeded quite well
## 223                                            Succeeded quite well
## 224                                             Succeeded very well
## 225                                            Succeeded quite well
## 226                                    Neither succeeded nor failed
## 227                                    Neither succeeded nor failed
## 228                                    Neither succeeded nor failed
## 229                                           Did not quite succeed
## 230                                           Did not quite succeed
## 231                                           Did not quite succeed
## 232                                            Succeeded quite well
## 233                                    Neither succeeded nor failed
## 234                                           Did not quite succeed
## 235                                    Neither succeeded nor failed
## 236                                    Neither succeeded nor failed
## 237                                    Neither succeeded nor failed
## 238                                          Did not succeed at all
## 239                                    Neither succeeded nor failed
## 240                                    Neither succeeded nor failed
## 241                                    Neither succeeded nor failed
## 242                                    Neither succeeded nor failed
## 243                                    Neither succeeded nor failed
## 244                                    Neither succeeded nor failed
## 245                                    Neither succeeded nor failed
## 246                                           Did not quite succeed
## 247                                    Neither succeeded nor failed
## 248                                    Neither succeeded nor failed
## 249                                    Neither succeeded nor failed
## 250                                             Succeeded very well
## 251                                           Did not quite succeed
## 252                                           Did not quite succeed
## 253                                                      Don't Know
## 254                                           Did not quite succeed
## 255                                            Succeeded quite well
## 256                                          Did not succeed at all
## 257                                    Neither succeeded nor failed
## 258                                           Did not quite succeed
## 259                                           Did not quite succeed
## 260                                           Did not quite succeed
## 261                                           Did not quite succeed
## 262                                    Neither succeeded nor failed
## 263                                    Neither succeeded nor failed
## 264                                                            <NA>
## 265                                          Did not succeed at all
## 266                                           Did not quite succeed
## 267                                          Did not succeed at all
## 268                                           Did not quite succeed
## 269                                           Did not quite succeed
## 270                                           Did not quite succeed
## 271                                           Did not quite succeed
## 272                                           Did not quite succeed
## 273                                            Succeeded quite well
## 274                                            Succeeded quite well
## 275                                            Succeeded quite well
## 276                                    Neither succeeded nor failed
## 277                                                      Don't Know
## 278                                            Succeeded quite well
## 279                                           Did not quite succeed
## 280                                           Did not quite succeed
## 281                                    Neither succeeded nor failed
## 282                                            Succeeded quite well
## 283                                    Neither succeeded nor failed
## 284                                    Neither succeeded nor failed
## 285                                            Succeeded quite well
## 286                                           Did not quite succeed
## 287                                                            <NA>
## 288                                                      Don't Know
## 289                                                      Don't Know
## 290                                           Did not quite succeed
## 291                                           Did not quite succeed
## 292                                                      Don't Know
## 293                                           Did not quite succeed
## 294                                           Did not quite succeed
## 295                                                      Don't Know
## 296                                                      Don't Know
## 297                                          Did not succeed at all
## 298                                           Did not quite succeed
## 299                                          Did not succeed at all
## 300                                           Did not quite succeed
## 302                                           Did not quite succeed
## 303                                    Neither succeeded nor failed
## 304                                           Did not quite succeed
## 305                                    Neither succeeded nor failed
## 306                                    Neither succeeded nor failed
## 307                                           Did not quite succeed
## 308                                            Succeeded quite well
## 309                                           Did not quite succeed
## 310                                           Did not quite succeed
## 311                                            Succeeded quite well
## 312                                            Succeeded quite well
## 313                                          Did not succeed at all
## 314                                           Did not quite succeed
## 315                                            Succeeded quite well
## 316                                          Did not succeed at all
## 317                                                      Don't Know
## 318                                                      Don't Know
## 319                                          Did not succeed at all
## 320                                    Neither succeeded nor failed
## 321                                    Neither succeeded nor failed
## 322                                           Did not quite succeed
## 323                                           Did not quite succeed
## 324                                            Succeeded quite well
## 325                                            Succeeded quite well
## 326                                           Did not quite succeed
## 327                                           Did not quite succeed
## 328                                                      Don't Know
## 329                                          Did not succeed at all
## 330                                          Did not succeed at all
## 331                                            Succeeded quite well
## 332                                             Succeeded very well
## 333                                             Succeeded very well
## 334                                             Succeeded very well
## 335                                            Succeeded quite well
## 336                                    Neither succeeded nor failed
## 337                                             Succeeded very well
## 338                                            Succeeded quite well
## 339                                           Did not quite succeed
## 340                                             Succeeded very well
## 341                                           Did not quite succeed
## 342                                    Neither succeeded nor failed
## 343                                           Did not quite succeed
## 344                                            Succeeded quite well
## 345                                    Neither succeeded nor failed
## 346                                             Succeeded very well
## 347                                    Neither succeeded nor failed
## 348                                    Neither succeeded nor failed
## 349                                    Neither succeeded nor failed
## 350                                           Did not quite succeed
## 351                                           Did not quite succeed
## 352                                                      Don't Know
## 353                                    Neither succeeded nor failed
## 354                                                      Don't Know
## 355                                           Did not quite succeed
## 356                                                      Don't Know
## 357                                    Neither succeeded nor failed
## 358                                           Did not quite succeed
## 359                                           Did not quite succeed
## 360                                            Succeeded quite well
## 361                                           Did not quite succeed
## 362                                           Did not quite succeed
## 363                                    Neither succeeded nor failed
## 364                                           Did not quite succeed
## 365                                    Neither succeeded nor failed
## 366                                           Did not quite succeed
## 367                                           Did not quite succeed
## 368                                    Neither succeeded nor failed
## 369                                           Did not quite succeed
## 370                                           Did not quite succeed
## 371                                           Did not quite succeed
## 372                                    Neither succeeded nor failed
## 373                                    Neither succeeded nor failed
## 374                                           Did not quite succeed
## 375                                           Did not quite succeed
## 376                                           Did not quite succeed
## 377                                           Did not quite succeed
## 378                                            Succeeded quite well
## 379                                           Did not quite succeed
## 380                                           Did not quite succeed
## 381                                                      Don't Know
## 382                                                      Don't Know
## 383                                           Did not quite succeed
## 384                                                      Don't Know
## 385                                           Did not quite succeed
## 386                                           Did not quite succeed
## 387                                           Did not quite succeed
## 388                                                      Don't Know
## 389                                           Did not quite succeed
## 390                                           Did not quite succeed
## 391                                           Did not quite succeed
## 392                                           Did not quite succeed
## 393                                                      Don't Know
## 394                                                      Don't Know
## 395                                           Did not quite succeed
## 396                                           Did not quite succeed
## 397                                           Did not quite succeed
## 398                                           Did not quite succeed
## 399                                                      Don't Know
## 400                                                      Don't Know
## 401                                                      Don't Know
## 402                                    Neither succeeded nor failed
## 403                                    Neither succeeded nor failed
## 404                                            Succeeded quite well
## 405                                           Did not quite succeed
## 406                                    Neither succeeded nor failed
## 407                                    Neither succeeded nor failed
## 408                                             Succeeded very well
## 409                                                      Don't Know
## 410                                    Neither succeeded nor failed
## 411                                           Did not quite succeed
## 412                                    Neither succeeded nor failed
## 413                                           Did not quite succeed
## 414                                           Did not quite succeed
## 415                                                      Don't Know
## 416                                          Did not succeed at all
## 417                                                      Don't Know
## 418                                            Succeeded quite well
## 419                                    Neither succeeded nor failed
## 420                                                            <NA>
## 421                                          Did not succeed at all
## 422                                                      Don't Know
## 423                                                            <NA>
## 424                                          Did not succeed at all
## 425                                            Succeeded quite well
## 426                                    Neither succeeded nor failed
## 427                                           Did not quite succeed
## 428                                                      Don't Know
## 429                                          Did not succeed at all
## 430                                           Did not quite succeed
## 431                                           Did not quite succeed
## 432                                    Neither succeeded nor failed
## 433                                    Neither succeeded nor failed
## 434                                          Did not succeed at all
## 435                                    Neither succeeded nor failed
## 436                                    Neither succeeded nor failed
## 437                                    Neither succeeded nor failed
## 438                                           Did not quite succeed
## 439                                          Did not succeed at all
## 440                                          Did not succeed at all
## 441                                    Neither succeeded nor failed
## 442                                           Did not quite succeed
## 443                                          Did not succeed at all
## 444                                          Did not succeed at all
## 445                                          Did not succeed at all
## 446                                          Did not succeed at all
## 447                                          Did not succeed at all
## 448                                           Did not quite succeed
## 449                                           Did not quite succeed
## 450                                           Did not quite succeed
## 451                                           Did not quite succeed
## 452                                          Did not succeed at all
## 453                                           Did not quite succeed
## 454                                          Did not succeed at all
## 455                                           Did not quite succeed
## 456                                          Did not succeed at all
## 457                                           Did not quite succeed
## 458                                          Did not succeed at all
## 459                                           Did not quite succeed
## 460                                    Neither succeeded nor failed
## 461                                            Succeeded quite well
## 462                                           Did not quite succeed
## 463                                           Did not quite succeed
## 464                                           Did not quite succeed
## 465                                    Neither succeeded nor failed
## 466                                          Did not succeed at all
## 467                                            Succeeded quite well
## 468                                           Did not quite succeed
## 469                                    Neither succeeded nor failed
## 470                                           Did not quite succeed
## 471                                    Neither succeeded nor failed
## 472                                          Did not succeed at all
## 473                                                            <NA>
## 474                                          Did not succeed at all
## 475                                           Did not quite succeed
## 476                                                      Don't Know
## 477                                            Succeeded quite well
## 478                                           Did not quite succeed
## 479                                                      Don't Know
## 480                                                      Don't Know
## 481                                           Did not quite succeed
## 482                                            Succeeded quite well
## 483                                    Neither succeeded nor failed
## 484                                          Did not succeed at all
## 485                                          Did not succeed at all
## 486                                            Succeeded quite well
## 487                                    Neither succeeded nor failed
## 488                                           Did not quite succeed
## 489                                    Neither succeeded nor failed
## 490                                            Succeeded quite well
## 491                                             Succeeded very well
## 492                                    Neither succeeded nor failed
## 493                                          Did not succeed at all
## 494                                    Neither succeeded nor failed
## 495                                          Did not succeed at all
## 496                                            Succeeded quite well
##      Success.in..Improving.the.general.economic.situation
## 1                                  Did not succeed at all
## 2                                  Did not succeed at all
## 3                                   Did not quite succeed
## 4                                     Succeeded very well
## 5                            Neither succeeded nor failed
## 6                            Neither succeeded nor failed
## 7                                   Did not quite succeed
## 8                            Neither succeeded nor failed
## 9                                   Did not quite succeed
## 10                                  Did not quite succeed
## 11                                  Did not quite succeed
## 12                           Neither succeeded nor failed
## 13                                  Did not quite succeed
## 14                           Neither succeeded nor failed
## 15                                  Did not quite succeed
## 16                                  Did not quite succeed
## 17                                 Did not succeed at all
## 18                                  Did not quite succeed
## 19                           Neither succeeded nor failed
## 20                                  Did not quite succeed
## 21                                  Did not quite succeed
## 22                                  Did not quite succeed
## 23                           Neither succeeded nor failed
## 24                           Neither succeeded nor failed
## 25                           Neither succeeded nor failed
## 26                                 Did not succeed at all
## 27                                                   <NA>
## 28                                  Did not quite succeed
## 29                                             Don't Know
## 30                                 Did not succeed at all
## 31                                 Did not succeed at all
## 32                                             Don't Know
## 33                           Neither succeeded nor failed
## 34                                 Did not succeed at all
## 35                                 Did not succeed at all
## 36                                  Did not quite succeed
## 37                           Neither succeeded nor failed
## 38                                  Did not quite succeed
## 39                           Neither succeeded nor failed
## 40                                 Did not succeed at all
## 41                                  Did not quite succeed
## 42                                 Did not succeed at all
## 43                                 Did not succeed at all
## 44                                 Did not succeed at all
## 45                                  Did not quite succeed
## 46                                 Did not succeed at all
## 47                                  Did not quite succeed
## 48                                  Did not quite succeed
## 49                                 Did not succeed at all
## 50                                  Did not quite succeed
## 51                                             Don't Know
## 52                                             Don't Know
## 53                           Neither succeeded nor failed
## 54                                 Did not succeed at all
## 55                           Neither succeeded nor failed
## 56                                  Did not quite succeed
## 57                                             Don't Know
## 58                                             Don't Know
## 59                                             Don't Know
## 60                                  Did not quite succeed
## 61                           Neither succeeded nor failed
## 62                           Neither succeeded nor failed
## 63                           Neither succeeded nor failed
## 64                                  Did not quite succeed
## 65                                 Did not succeed at all
## 66                                 Did not succeed at all
## 67                                 Did not succeed at all
## 68                           Neither succeeded nor failed
## 69                                  Did not quite succeed
## 70                           Neither succeeded nor failed
## 71                           Neither succeeded nor failed
## 72                           Neither succeeded nor failed
## 73                                  Did not quite succeed
## 74                           Neither succeeded nor failed
## 75                           Neither succeeded nor failed
## 76                           Neither succeeded nor failed
## 77                                  Did not quite succeed
## 78                           Neither succeeded nor failed
## 79                           Neither succeeded nor failed
## 80                           Neither succeeded nor failed
## 81                           Neither succeeded nor failed
## 82                           Neither succeeded nor failed
## 83                           Neither succeeded nor failed
## 84                           Neither succeeded nor failed
## 85                           Neither succeeded nor failed
## 86                           Neither succeeded nor failed
## 87                           Neither succeeded nor failed
## 88                                 Did not succeed at all
## 89                           Neither succeeded nor failed
## 90                           Neither succeeded nor failed
## 91                           Neither succeeded nor failed
## 92                           Neither succeeded nor failed
## 93                           Neither succeeded nor failed
## 94                           Neither succeeded nor failed
## 95                           Neither succeeded nor failed
## 96                           Neither succeeded nor failed
## 97                                 Did not succeed at all
## 98                           Neither succeeded nor failed
## 99                                 Did not succeed at all
## 100                          Neither succeeded nor failed
## 101                          Neither succeeded nor failed
## 102                          Neither succeeded nor failed
## 103                          Neither succeeded nor failed
## 104                          Neither succeeded nor failed
## 105                                  Succeeded quite well
## 106                          Neither succeeded nor failed
## 107                          Neither succeeded nor failed
## 108                                 Did not quite succeed
## 109                          Neither succeeded nor failed
## 110                                Did not succeed at all
## 111                          Neither succeeded nor failed
## 112                          Neither succeeded nor failed
## 113                          Neither succeeded nor failed
## 114                          Neither succeeded nor failed
## 115                          Neither succeeded nor failed
## 116                          Neither succeeded nor failed
## 117                          Neither succeeded nor failed
## 118                          Neither succeeded nor failed
## 119                                 Did not quite succeed
## 120                          Neither succeeded nor failed
## 121                          Neither succeeded nor failed
## 122                          Neither succeeded nor failed
## 123                                  Succeeded quite well
## 124                          Neither succeeded nor failed
## 125                          Neither succeeded nor failed
## 126                                 Did not quite succeed
## 127                          Neither succeeded nor failed
## 128                          Neither succeeded nor failed
## 129                          Neither succeeded nor failed
## 130                                Did not succeed at all
## 131                          Neither succeeded nor failed
## 132                                  Succeeded quite well
## 133                                  Succeeded quite well
## 134                          Neither succeeded nor failed
## 135                          Neither succeeded nor failed
## 136                          Neither succeeded nor failed
## 137                                  Succeeded quite well
## 138                          Neither succeeded nor failed
## 139                                  Succeeded quite well
## 140                          Neither succeeded nor failed
## 141                          Neither succeeded nor failed
## 142                                  Succeeded quite well
## 143                          Neither succeeded nor failed
## 144                          Neither succeeded nor failed
## 145                                 Did not quite succeed
## 146                          Neither succeeded nor failed
## 147                          Neither succeeded nor failed
## 148                          Neither succeeded nor failed
## 149                          Neither succeeded nor failed
## 150                          Neither succeeded nor failed
## 151                                 Did not quite succeed
## 152                          Neither succeeded nor failed
## 153                                 Did not quite succeed
## 154                                Did not succeed at all
## 155                          Neither succeeded nor failed
## 156                                 Did not quite succeed
## 157                          Neither succeeded nor failed
## 158                                 Did not quite succeed
## 159                                 Did not quite succeed
## 160                          Neither succeeded nor failed
## 161                          Neither succeeded nor failed
## 162                                 Did not quite succeed
## 163                                Did not succeed at all
## 164                                Did not succeed at all
## 165                          Neither succeeded nor failed
## 166                                 Did not quite succeed
## 167                                 Did not quite succeed
## 168                          Neither succeeded nor failed
## 169                          Neither succeeded nor failed
## 170                          Neither succeeded nor failed
## 171                          Neither succeeded nor failed
## 172                          Neither succeeded nor failed
## 173                                 Did not quite succeed
## 174                                 Did not quite succeed
## 175                                 Did not quite succeed
## 176                          Neither succeeded nor failed
## 177                                 Did not quite succeed
## 178                                 Did not quite succeed
## 179                          Neither succeeded nor failed
## 180                                 Did not quite succeed
## 181                                 Did not quite succeed
## 182                                 Did not quite succeed
## 183                                 Did not quite succeed
## 184                          Neither succeeded nor failed
## 185                                 Did not quite succeed
## 186                                 Did not quite succeed
## 187                                 Did not quite succeed
## 188                          Neither succeeded nor failed
## 189                                 Did not quite succeed
## 190                                 Did not quite succeed
## 191                                 Did not quite succeed
## 192                                 Did not quite succeed
## 193                                                  <NA>
## 194                                 Did not quite succeed
## 195                                 Did not quite succeed
## 196                                 Did not quite succeed
## 197                                 Did not quite succeed
## 198                                 Did not quite succeed
## 199                                Did not succeed at all
## 200                                                  <NA>
## 201                          Neither succeeded nor failed
## 202                          Neither succeeded nor failed
## 203                                   Succeeded very well
## 204                          Neither succeeded nor failed
## 205                                  Succeeded quite well
## 206                          Neither succeeded nor failed
## 207                          Neither succeeded nor failed
## 208                                  Succeeded quite well
## 209                                 Did not quite succeed
## 210                                   Succeeded very well
## 211                          Neither succeeded nor failed
## 212                          Neither succeeded nor failed
## 213                          Neither succeeded nor failed
## 214                                 Did not quite succeed
## 215                                 Did not quite succeed
## 216                          Neither succeeded nor failed
## 217                                 Did not quite succeed
## 218                          Neither succeeded nor failed
## 219                                  Succeeded quite well
## 220                          Neither succeeded nor failed
## 221                          Neither succeeded nor failed
## 222                          Neither succeeded nor failed
## 223                                   Succeeded very well
## 224                                  Succeeded quite well
## 225                          Neither succeeded nor failed
## 226                                 Did not quite succeed
## 227                                  Succeeded quite well
## 228                                  Succeeded quite well
## 229                          Neither succeeded nor failed
## 230                                 Did not quite succeed
## 231                          Neither succeeded nor failed
## 232                          Neither succeeded nor failed
## 233                                 Did not quite succeed
## 234                          Neither succeeded nor failed
## 235                                 Did not quite succeed
## 236                                  Succeeded quite well
## 237                          Neither succeeded nor failed
## 238                                Did not succeed at all
## 239                                 Did not quite succeed
## 240                                 Did not quite succeed
## 241                                 Did not quite succeed
## 242                                 Did not quite succeed
## 243                                 Did not quite succeed
## 244                          Neither succeeded nor failed
## 245                                  Succeeded quite well
## 246                                  Succeeded quite well
## 247                                 Did not quite succeed
## 248                                  Succeeded quite well
## 249                                  Succeeded quite well
## 250                                  Succeeded quite well
## 251                                                  <NA>
## 252                                                  <NA>
## 253                                                  <NA>
## 254                                                  <NA>
## 255                                                  <NA>
## 256                                                  <NA>
## 257                                                  <NA>
## 258                                                  <NA>
## 259                                                  <NA>
## 260                                                  <NA>
## 261                                                  <NA>
## 262                                                  <NA>
## 263                                                  <NA>
## 264                                                  <NA>
## 265                                                  <NA>
## 266                                                  <NA>
## 267                                                  <NA>
## 268                                                  <NA>
## 269                                                  <NA>
## 270                                                  <NA>
## 271                                                  <NA>
## 272                                                  <NA>
## 273                                                  <NA>
## 274                                                  <NA>
## 275                                                  <NA>
## 276                                                  <NA>
## 277                                                  <NA>
## 278                                                  <NA>
## 279                                                  <NA>
## 280                                                  <NA>
## 281                                                  <NA>
## 282                                                  <NA>
## 283                                                  <NA>
## 284                                                  <NA>
## 285                                                  <NA>
## 286                                                  <NA>
## 287                                                  <NA>
## 288                                                  <NA>
## 289                                                  <NA>
## 290                                                  <NA>
## 291                                                  <NA>
## 292                                                  <NA>
## 293                                                  <NA>
## 294                                                  <NA>
## 295                                                  <NA>
## 296                                                  <NA>
## 297                                                  <NA>
## 298                                                  <NA>
## 299                                                  <NA>
## 300                                                  <NA>
## 302                                 Did not quite succeed
## 303                          Neither succeeded nor failed
## 304                                Did not succeed at all
## 305                                  Succeeded quite well
## 306                                 Did not quite succeed
## 307                                  Succeeded quite well
## 308                                 Did not quite succeed
## 309                                 Did not quite succeed
## 310                                            Don't Know
## 311                                  Succeeded quite well
## 312                                  Succeeded quite well
## 313                                 Did not quite succeed
## 314                                 Did not quite succeed
## 315                                  Succeeded quite well
## 316                                Did not succeed at all
## 317                                 Did not quite succeed
## 318                                            Don't Know
## 319                                Did not succeed at all
## 320                                 Did not quite succeed
## 321                                  Succeeded quite well
## 322                                 Did not quite succeed
## 323                                 Did not quite succeed
## 324                                  Succeeded quite well
## 325                                  Succeeded quite well
## 326                                 Did not quite succeed
## 327                                 Did not quite succeed
## 328                                  Succeeded quite well
## 329                                 Did not quite succeed
## 330                                Did not succeed at all
## 331                                 Did not quite succeed
## 332                                  Succeeded quite well
## 333                                  Succeeded quite well
## 334                                  Succeeded quite well
## 335                                 Did not quite succeed
## 336                                  Succeeded quite well
## 337                                  Succeeded quite well
## 338                                  Succeeded quite well
## 339                                 Did not quite succeed
## 340                                  Succeeded quite well
## 341                                 Did not quite succeed
## 342                                 Did not quite succeed
## 343                                 Did not quite succeed
## 344                                  Succeeded quite well
## 345                                 Did not quite succeed
## 346                                  Succeeded quite well
## 347                                Did not succeed at all
## 348                          Neither succeeded nor failed
## 349                                 Did not quite succeed
## 350                                 Did not quite succeed
## 351                          Neither succeeded nor failed
## 352                          Neither succeeded nor failed
## 353                          Neither succeeded nor failed
## 354                                 Did not quite succeed
## 355                                 Did not quite succeed
## 356                                 Did not quite succeed
## 357                                 Did not quite succeed
## 358                                 Did not quite succeed
## 359                                 Did not quite succeed
## 360                                  Succeeded quite well
## 361                          Neither succeeded nor failed
## 362                                 Did not quite succeed
## 363                          Neither succeeded nor failed
## 364                                 Did not quite succeed
## 365                                 Did not quite succeed
## 366                                 Did not quite succeed
## 367                                 Did not quite succeed
## 368                                 Did not quite succeed
## 369                          Neither succeeded nor failed
## 370                                 Did not quite succeed
## 371                                 Did not quite succeed
## 372                                 Did not quite succeed
## 373                          Neither succeeded nor failed
## 374                                 Did not quite succeed
## 375                                 Did not quite succeed
## 376                                 Did not quite succeed
## 377                                Did not succeed at all
## 378                                 Did not quite succeed
## 379                                 Did not quite succeed
## 380                                Did not succeed at all
## 381                                 Did not quite succeed
## 382                                 Did not quite succeed
## 383                                 Did not quite succeed
## 384                                Did not succeed at all
## 385                                 Did not quite succeed
## 386                                 Did not quite succeed
## 387                                 Did not quite succeed
## 388                                 Did not quite succeed
## 389                                 Did not quite succeed
## 390                                 Did not quite succeed
## 391                                 Did not quite succeed
## 392                                 Did not quite succeed
## 393                                 Did not quite succeed
## 394                                 Did not quite succeed
## 395                                 Did not quite succeed
## 396                                 Did not quite succeed
## 397                                Did not succeed at all
## 398                                 Did not quite succeed
## 399                                 Did not quite succeed
## 400                                 Did not quite succeed
## 401                                 Did not quite succeed
## 402                          Neither succeeded nor failed
## 403                          Neither succeeded nor failed
## 404                          Neither succeeded nor failed
## 405                                 Did not quite succeed
## 406                          Neither succeeded nor failed
## 407                          Neither succeeded nor failed
## 408                                   Succeeded very well
## 409                                 Did not quite succeed
## 410                          Neither succeeded nor failed
## 411                                 Did not quite succeed
## 412                                Did not succeed at all
## 413                                Did not succeed at all
## 414                                 Did not quite succeed
## 415                                            Don't Know
## 416                                Did not succeed at all
## 417                                            Don't Know
## 418                                                  <NA>
## 419                          Neither succeeded nor failed
## 420                                                  <NA>
## 421                                Did not succeed at all
## 422                                            Don't Know
## 423                                                  <NA>
## 424                                Did not succeed at all
## 425                                  Succeeded quite well
## 426                          Neither succeeded nor failed
## 427                                 Did not quite succeed
## 428                                            Don't Know
## 429                                Did not succeed at all
## 430                                Did not succeed at all
## 431                                Did not succeed at all
## 432                          Neither succeeded nor failed
## 433                          Neither succeeded nor failed
## 434                                Did not succeed at all
## 435                          Neither succeeded nor failed
## 436                                Did not succeed at all
## 437                                Did not succeed at all
## 438                                 Did not quite succeed
## 439                                Did not succeed at all
## 440                                Did not succeed at all
## 441                                Did not succeed at all
## 442                                 Did not quite succeed
## 443                                Did not succeed at all
## 444                                Did not succeed at all
## 445                                Did not succeed at all
## 446                                Did not succeed at all
## 447                                Did not succeed at all
## 448                                 Did not quite succeed
## 449                                 Did not quite succeed
## 450                                                  <NA>
## 451                                Did not succeed at all
## 452                                Did not succeed at all
## 453                                 Did not quite succeed
## 454                                 Did not quite succeed
## 455                                 Did not quite succeed
## 456                                 Did not quite succeed
## 457                                 Did not quite succeed
## 458                                Did not succeed at all
## 459                                  Succeeded quite well
## 460                                            Don't Know
## 461                                  Succeeded quite well
## 462                                 Did not quite succeed
## 463                                  Succeeded quite well
## 464                                  Succeeded quite well
## 465                                   Succeeded very well
## 466                                Did not succeed at all
## 467                                  Succeeded quite well
## 468                                 Did not quite succeed
## 469                          Neither succeeded nor failed
## 470                                  Succeeded quite well
## 471                                 Did not quite succeed
## 472                                  Succeeded quite well
## 473                                            Don't Know
## 474                                Did not succeed at all
## 475                                Did not succeed at all
## 476                                            Don't Know
## 477                                 Did not quite succeed
## 478                                 Did not quite succeed
## 479                                            Don't Know
## 480                                            Don't Know
## 481                                 Did not quite succeed
## 482                                Did not succeed at all
## 483                                Did not succeed at all
## 484                                Did not succeed at all
## 485                                Did not succeed at all
## 486                                  Succeeded quite well
## 487                          Neither succeeded nor failed
## 488                          Neither succeeded nor failed
## 489                          Neither succeeded nor failed
## 490                                   Succeeded very well
## 491                          Neither succeeded nor failed
## 492                                  Succeeded quite well
## 493                                Did not succeed at all
## 494                                 Did not quite succeed
## 495                                Did not succeed at all
## 496                                  Succeeded quite well
##      Success.in..Reducing.mother.infant.mortality
## 1                            Succeeded quite well
## 2                            Succeeded quite well
## 3                           Did not quite succeed
## 4                    Neither succeeded nor failed
## 5                            Succeeded quite well
## 6                           Did not quite succeed
## 7                    Neither succeeded nor failed
## 8                           Did not quite succeed
## 9                           Did not quite succeed
## 10                          Did not quite succeed
## 11                          Did not quite succeed
## 12                           Succeeded quite well
## 13                          Did not quite succeed
## 14                           Succeeded quite well
## 15                           Succeeded quite well
## 16                          Did not quite succeed
## 17                         Did not succeed at all
## 18                          Did not quite succeed
## 19                          Did not quite succeed
## 20                          Did not quite succeed
## 21                          Did not quite succeed
## 22                          Did not quite succeed
## 23                           Succeeded quite well
## 24                          Did not quite succeed
## 25                   Neither succeeded nor failed
## 26                           Succeeded quite well
## 27                            Succeeded very well
## 28                           Succeeded quite well
## 29                                     Don't Know
## 30                   Neither succeeded nor failed
## 31                           Succeeded quite well
## 32                           Succeeded quite well
## 33                           Succeeded quite well
## 34                          Did not quite succeed
## 35                           Succeeded quite well
## 36                          Did not quite succeed
## 37                                           <NA>
## 38                   Neither succeeded nor failed
## 39                   Neither succeeded nor failed
## 40                   Neither succeeded nor failed
## 41                   Neither succeeded nor failed
## 42                          Did not quite succeed
## 43                          Did not quite succeed
## 44                   Neither succeeded nor failed
## 45                           Succeeded quite well
## 46                           Succeeded quite well
## 47                           Succeeded quite well
## 48                           Succeeded quite well
## 49                           Succeeded quite well
## 50                                     Don't Know
## 51                           Succeeded quite well
## 52                           Succeeded quite well
## 53                           Succeeded quite well
## 54                          Did not quite succeed
## 55                           Succeeded quite well
## 56                           Succeeded quite well
## 57                           Succeeded quite well
## 58                           Succeeded quite well
## 59                           Succeeded quite well
## 60                           Succeeded quite well
## 61                           Succeeded quite well
## 62                           Succeeded quite well
## 63                           Succeeded quite well
## 64                           Succeeded quite well
## 65                           Succeeded quite well
## 66                           Succeeded quite well
## 67                   Neither succeeded nor failed
## 68                           Succeeded quite well
## 69                           Succeeded quite well
## 70                           Succeeded quite well
## 71                           Succeeded quite well
## 72                           Succeeded quite well
## 73                           Succeeded quite well
## 74                           Succeeded quite well
## 75                           Succeeded quite well
## 76                           Succeeded quite well
## 77                          Did not quite succeed
## 78                           Succeeded quite well
## 79                           Succeeded quite well
## 80                           Succeeded quite well
## 81                           Succeeded quite well
## 82                           Succeeded quite well
## 83                           Succeeded quite well
## 84                           Succeeded quite well
## 85                           Succeeded quite well
## 86                           Succeeded quite well
## 87                           Succeeded quite well
## 88                            Succeeded very well
## 89                           Succeeded quite well
## 90                           Succeeded quite well
## 91                            Succeeded very well
## 92                           Succeeded quite well
## 93                           Succeeded quite well
## 94                           Succeeded quite well
## 95                           Succeeded quite well
## 96                           Succeeded quite well
## 97                           Succeeded quite well
## 98                           Succeeded quite well
## 99                           Succeeded quite well
## 100                          Succeeded quite well
## 101                         Did not quite succeed
## 102                  Neither succeeded nor failed
## 103                  Neither succeeded nor failed
## 104                  Neither succeeded nor failed
## 105                  Neither succeeded nor failed
## 106                  Neither succeeded nor failed
## 107                  Neither succeeded nor failed
## 108                  Neither succeeded nor failed
## 109                  Neither succeeded nor failed
## 110                        Did not succeed at all
## 111                  Neither succeeded nor failed
## 112                  Neither succeeded nor failed
## 113                          Succeeded quite well
## 114                  Neither succeeded nor failed
## 115                  Neither succeeded nor failed
## 116                  Neither succeeded nor failed
## 117                  Neither succeeded nor failed
## 118                  Neither succeeded nor failed
## 119                         Did not quite succeed
## 120                  Neither succeeded nor failed
## 121                  Neither succeeded nor failed
## 122                                          <NA>
## 123                  Neither succeeded nor failed
## 124                  Neither succeeded nor failed
## 125                  Neither succeeded nor failed
## 126                  Neither succeeded nor failed
## 127                         Did not quite succeed
## 128                         Did not quite succeed
## 129                         Did not quite succeed
## 130                         Did not quite succeed
## 131                  Neither succeeded nor failed
## 132                  Neither succeeded nor failed
## 133                  Neither succeeded nor failed
## 134                  Neither succeeded nor failed
## 135                  Neither succeeded nor failed
## 136                  Neither succeeded nor failed
## 137                         Did not quite succeed
## 138                  Neither succeeded nor failed
## 139                  Neither succeeded nor failed
## 140                  Neither succeeded nor failed
## 141                         Did not quite succeed
## 142                  Neither succeeded nor failed
## 143                  Neither succeeded nor failed
## 144                          Succeeded quite well
## 145                  Neither succeeded nor failed
## 146                         Did not quite succeed
## 147                  Neither succeeded nor failed
## 148                          Succeeded quite well
## 149                  Neither succeeded nor failed
## 150                  Neither succeeded nor failed
## 151                  Neither succeeded nor failed
## 152                          Succeeded quite well
## 153                          Succeeded quite well
## 154                          Succeeded quite well
## 155                          Succeeded quite well
## 156                  Neither succeeded nor failed
## 157                          Succeeded quite well
## 158                          Succeeded quite well
## 159                          Succeeded quite well
## 160                          Succeeded quite well
## 161                          Succeeded quite well
## 162                          Succeeded quite well
## 163                          Succeeded quite well
## 164                          Succeeded quite well
## 165                          Succeeded quite well
## 166                          Succeeded quite well
## 167                          Succeeded quite well
## 168                          Succeeded quite well
## 169                          Succeeded quite well
## 170                          Succeeded quite well
## 171                          Succeeded quite well
## 172                          Succeeded quite well
## 173                          Succeeded quite well
## 174                          Succeeded quite well
## 175                          Succeeded quite well
## 176                          Succeeded quite well
## 177                          Succeeded quite well
## 178                          Succeeded quite well
## 179                          Succeeded quite well
## 180                          Succeeded quite well
## 181                          Succeeded quite well
## 182                          Succeeded quite well
## 183                          Succeeded quite well
## 184                          Succeeded quite well
## 185                          Succeeded quite well
## 186                          Succeeded quite well
## 187                          Succeeded quite well
## 188                          Succeeded quite well
## 189                          Succeeded quite well
## 190                          Succeeded quite well
## 191                          Succeeded quite well
## 192                          Succeeded quite well
## 193                          Succeeded quite well
## 194                          Succeeded quite well
## 195                          Succeeded quite well
## 196                          Succeeded quite well
## 197                          Succeeded quite well
## 198                          Succeeded quite well
## 199                          Succeeded quite well
## 200                          Succeeded quite well
## 201                           Succeeded very well
## 202                  Neither succeeded nor failed
## 203                           Succeeded very well
## 204                          Succeeded quite well
## 205                  Neither succeeded nor failed
## 206                          Succeeded quite well
## 207                          Succeeded quite well
## 208                          Succeeded quite well
## 209                  Neither succeeded nor failed
## 210                          Succeeded quite well
## 211                  Neither succeeded nor failed
## 212                  Neither succeeded nor failed
## 213                  Neither succeeded nor failed
## 214                  Neither succeeded nor failed
## 215                  Neither succeeded nor failed
## 216                  Neither succeeded nor failed
## 217                           Succeeded very well
## 218                          Succeeded quite well
## 219                         Did not quite succeed
## 220                  Neither succeeded nor failed
## 221                           Succeeded very well
## 222                          Succeeded quite well
## 223                          Succeeded quite well
## 224                         Did not quite succeed
## 225                           Succeeded very well
## 226                           Succeeded very well
## 227                         Did not quite succeed
## 228                  Neither succeeded nor failed
## 229                         Did not quite succeed
## 230                          Succeeded quite well
## 231                  Neither succeeded nor failed
## 232                          Succeeded quite well
## 233                  Neither succeeded nor failed
## 234                  Neither succeeded nor failed
## 235                  Neither succeeded nor failed
## 236                           Succeeded very well
## 237                           Succeeded very well
## 238                           Succeeded very well
## 239                  Neither succeeded nor failed
## 240                  Neither succeeded nor failed
## 241                  Neither succeeded nor failed
## 242                  Neither succeeded nor failed
## 243                  Neither succeeded nor failed
## 244                         Did not quite succeed
## 245                           Succeeded very well
## 246                  Neither succeeded nor failed
## 247                  Neither succeeded nor failed
## 248                          Succeeded quite well
## 249                        Did not succeed at all
## 250                         Did not quite succeed
## 251                          Succeeded quite well
## 252                         Did not quite succeed
## 253                         Did not quite succeed
## 254                         Did not quite succeed
## 255                  Neither succeeded nor failed
## 256                        Did not succeed at all
## 257                                          <NA>
## 258                        Did not succeed at all
## 259                        Did not succeed at all
## 260                         Did not quite succeed
## 261                         Did not quite succeed
## 262                                          <NA>
## 263                        Did not succeed at all
## 264                        Did not succeed at all
## 265                  Neither succeeded nor failed
## 266                         Did not quite succeed
## 267                         Did not quite succeed
## 268                  Neither succeeded nor failed
## 269                         Did not quite succeed
## 270                         Did not quite succeed
## 271                         Did not quite succeed
## 272                         Did not quite succeed
## 273                          Succeeded quite well
## 274                  Neither succeeded nor failed
## 275                          Succeeded quite well
## 276                  Neither succeeded nor failed
## 277                                    Don't Know
## 278                          Succeeded quite well
## 279                  Neither succeeded nor failed
## 280                          Succeeded quite well
## 281                  Neither succeeded nor failed
## 282                          Succeeded quite well
## 283                         Did not quite succeed
## 284                         Did not quite succeed
## 285                          Succeeded quite well
## 286                         Did not quite succeed
## 287                                          <NA>
## 288                        Did not succeed at all
## 289                                    Don't Know
## 290                         Did not quite succeed
## 291                         Did not quite succeed
## 292                                    Don't Know
## 293                        Did not succeed at all
## 294                         Did not quite succeed
## 295                                    Don't Know
## 296                                    Don't Know
## 297                          Succeeded quite well
## 298                        Did not succeed at all
## 299                        Did not succeed at all
## 300                         Did not quite succeed
## 302                         Did not quite succeed
## 303                  Neither succeeded nor failed
## 304                          Succeeded quite well
## 305                          Succeeded quite well
## 306                         Did not quite succeed
## 307                          Succeeded quite well
## 308                          Succeeded quite well
## 309                          Succeeded quite well
## 310                         Did not quite succeed
## 311                          Succeeded quite well
## 312                          Succeeded quite well
## 313                          Succeeded quite well
## 314                          Succeeded quite well
## 315                          Succeeded quite well
## 316                          Succeeded quite well
## 317                                    Don't Know
## 318                         Did not quite succeed
## 319                         Did not quite succeed
## 320                          Succeeded quite well
## 321                          Succeeded quite well
## 322                          Succeeded quite well
## 323                         Did not quite succeed
## 324                          Succeeded quite well
## 325                          Succeeded quite well
## 326                         Did not quite succeed
## 327                         Did not quite succeed
## 328                          Succeeded quite well
## 329                  Neither succeeded nor failed
## 330                        Did not succeed at all
## 331                         Did not quite succeed
## 332                  Neither succeeded nor failed
## 333                  Neither succeeded nor failed
## 334                  Neither succeeded nor failed
## 335                          Succeeded quite well
## 336                           Succeeded very well
## 337                           Succeeded very well
## 338                           Succeeded very well
## 339                           Succeeded very well
## 340                         Did not quite succeed
## 341                          Succeeded quite well
## 342                         Did not quite succeed
## 343                  Neither succeeded nor failed
## 344                          Succeeded quite well
## 345                         Did not quite succeed
## 346                          Succeeded quite well
## 347                          Succeeded quite well
## 348                          Succeeded quite well
## 349                          Succeeded quite well
## 350                  Neither succeeded nor failed
## 351                         Did not quite succeed
## 352                  Neither succeeded nor failed
## 353                  Neither succeeded nor failed
## 354                          Succeeded quite well
## 355                         Did not quite succeed
## 356                          Succeeded quite well
## 357                  Neither succeeded nor failed
## 358                          Succeeded quite well
## 359                          Succeeded quite well
## 360                          Succeeded quite well
## 361                          Succeeded quite well
## 362                         Did not quite succeed
## 363                          Succeeded quite well
## 364                          Succeeded quite well
## 365                         Did not quite succeed
## 366                          Succeeded quite well
## 367                          Succeeded quite well
## 368                          Succeeded quite well
## 369                          Succeeded quite well
## 370                          Succeeded quite well
## 371                          Succeeded quite well
## 372                  Neither succeeded nor failed
## 373                          Succeeded quite well
## 374                          Succeeded quite well
## 375                         Did not quite succeed
## 376                         Did not quite succeed
## 377                          Succeeded quite well
## 378                          Succeeded quite well
## 379                          Succeeded quite well
## 380                          Succeeded quite well
## 381                          Succeeded quite well
## 382                          Succeeded quite well
## 383                          Succeeded quite well
## 384                          Succeeded quite well
## 385                          Succeeded quite well
## 386                          Succeeded quite well
## 387                          Succeeded quite well
## 388                          Succeeded quite well
## 389                          Succeeded quite well
## 390                          Succeeded quite well
## 391                          Succeeded quite well
## 392                          Succeeded quite well
## 393                          Succeeded quite well
## 394                          Succeeded quite well
## 395                         Did not quite succeed
## 396                          Succeeded quite well
## 397                          Succeeded quite well
## 398                          Succeeded quite well
## 399                          Succeeded quite well
## 400                          Succeeded quite well
## 401                          Succeeded quite well
## 402                  Neither succeeded nor failed
## 403                         Did not quite succeed
## 404                         Did not quite succeed
## 405                          Succeeded quite well
## 406                  Neither succeeded nor failed
## 407                  Neither succeeded nor failed
## 408                  Neither succeeded nor failed
## 409                         Did not quite succeed
## 410                  Neither succeeded nor failed
## 411                         Did not quite succeed
## 412                  Neither succeeded nor failed
## 413                  Neither succeeded nor failed
## 414                  Neither succeeded nor failed
## 415                                    Don't Know
## 416                         Did not quite succeed
## 417                                    Don't Know
## 418                  Neither succeeded nor failed
## 419                  Neither succeeded nor failed
## 420                                          <NA>
## 421                  Neither succeeded nor failed
## 422                                    Don't Know
## 423                                          <NA>
## 424                  Neither succeeded nor failed
## 425                          Succeeded quite well
## 426                  Neither succeeded nor failed
## 427                  Neither succeeded nor failed
## 428                                    Don't Know
## 429                        Did not succeed at all
## 430                         Did not quite succeed
## 431                         Did not quite succeed
## 432                  Neither succeeded nor failed
## 433                  Neither succeeded nor failed
## 434                        Did not succeed at all
## 435                  Neither succeeded nor failed
## 436                        Did not succeed at all
## 437                  Neither succeeded nor failed
## 438                         Did not quite succeed
## 439                  Neither succeeded nor failed
## 440                  Neither succeeded nor failed
## 441                  Neither succeeded nor failed
## 442                         Did not quite succeed
## 443                         Did not quite succeed
## 444                         Did not quite succeed
## 445                  Neither succeeded nor failed
## 446                        Did not succeed at all
## 447                        Did not succeed at all
## 448                         Did not quite succeed
## 449                         Did not quite succeed
## 450                                          <NA>
## 451                        Did not succeed at all
## 452                        Did not succeed at all
## 453                         Did not quite succeed
## 454                         Did not quite succeed
## 455                          Succeeded quite well
## 456                           Succeeded very well
## 457                  Neither succeeded nor failed
## 458                        Did not succeed at all
## 459                          Succeeded quite well
## 460                         Did not quite succeed
## 461                          Succeeded quite well
## 462                          Succeeded quite well
## 463                          Succeeded quite well
## 464                          Succeeded quite well
## 465                           Succeeded very well
## 466                        Did not succeed at all
## 467                           Succeeded very well
## 468                         Did not quite succeed
## 469                                          <NA>
## 470                         Did not quite succeed
## 471                  Neither succeeded nor failed
## 472                          Succeeded quite well
## 473                                    Don't Know
## 474                        Did not succeed at all
## 475                          Succeeded quite well
## 476                                    Don't Know
## 477                          Succeeded quite well
## 478                         Did not quite succeed
## 479                                    Don't Know
## 480                                    Don't Know
## 481                         Did not quite succeed
## 482                          Succeeded quite well
## 483                         Did not quite succeed
## 484                         Did not quite succeed
## 485                          Succeeded quite well
## 486                          Succeeded quite well
## 487                  Neither succeeded nor failed
## 488                  Neither succeeded nor failed
## 489                          Succeeded quite well
## 490                          Succeeded quite well
## 491                           Succeeded very well
## 492                          Succeeded quite well
## 493                         Did not quite succeed
## 494                          Succeeded quite well
## 495                  Neither succeeded nor failed
## 496                          Succeeded quite well
##             Success.in..Any.other
## 1                            <NA>
## 2                            <NA>
## 3                            <NA>
## 4                      Don't Know
## 5                            <NA>
## 6                            <NA>
## 7                            <NA>
## 8                            <NA>
## 9                            <NA>
## 10                           <NA>
## 11                           <NA>
## 12                           <NA>
## 13                           <NA>
## 14                           <NA>
## 15                           <NA>
## 16                           <NA>
## 17                           <NA>
## 18                           <NA>
## 19                           <NA>
## 20                           <NA>
## 21                     Don't Know
## 22                           <NA>
## 23                           <NA>
## 24          Did not quite succeed
## 25                           <NA>
## 26                           <NA>
## 27                           <NA>
## 28                           <NA>
## 29                           <NA>
## 30                           <NA>
## 31                           <NA>
## 32                           <NA>
## 33                           <NA>
## 34                           <NA>
## 35                           <NA>
## 36                           <NA>
## 37                           <NA>
## 38                           <NA>
## 39                           <NA>
## 40                           <NA>
## 41                           <NA>
## 42                           <NA>
## 43                           <NA>
## 44                           <NA>
## 45                           <NA>
## 46                           <NA>
## 47                           <NA>
## 48                           <NA>
## 49                           <NA>
## 50                           <NA>
## 51                           <NA>
## 52                           <NA>
## 53                           <NA>
## 54                           <NA>
## 55                           <NA>
## 56                           <NA>
## 57                           <NA>
## 58                           <NA>
## 59                           <NA>
## 60                           <NA>
## 61                           <NA>
## 62                           <NA>
## 63                           <NA>
## 64                           <NA>
## 65                           <NA>
## 66                           <NA>
## 67                           <NA>
## 68                           <NA>
## 69                           <NA>
## 70                           <NA>
## 71                           <NA>
## 72                           <NA>
## 73                           <NA>
## 74                           <NA>
## 75                           <NA>
## 76                           <NA>
## 77                           <NA>
## 78                           <NA>
## 79                           <NA>
## 80                           <NA>
## 81                           <NA>
## 82                           <NA>
## 83                           <NA>
## 84                           <NA>
## 85                           <NA>
## 86                           <NA>
## 87                           <NA>
## 88                           <NA>
## 89                           <NA>
## 90                           <NA>
## 91                           <NA>
## 92                           <NA>
## 93                           <NA>
## 94                           <NA>
## 95                           <NA>
## 96                           <NA>
## 97                           <NA>
## 98                           <NA>
## 99                           <NA>
## 100                          <NA>
## 101                          <NA>
## 102                          <NA>
## 103                          <NA>
## 104                          <NA>
## 105                          <NA>
## 106                          <NA>
## 107                          <NA>
## 108                          <NA>
## 109                          <NA>
## 110                          <NA>
## 111                          <NA>
## 112  Neither succeeded nor failed
## 113                    Don't Know
## 114                    Don't Know
## 115                    Don't Know
## 116  Neither succeeded nor failed
## 117                    Don't Know
## 118                    Don't Know
## 119                    Don't Know
## 120                    Don't Know
## 121                    Don't Know
## 122                    Don't Know
## 123                    Don't Know
## 124                    Don't Know
## 125                    Don't Know
## 126                    Don't Know
## 127                    Don't Know
## 128                    Don't Know
## 129                    Don't Know
## 130                    Don't Know
## 131                    Don't Know
## 132                    Don't Know
## 133                    Don't Know
## 134                    Don't Know
## 135  Neither succeeded nor failed
## 136                    Don't Know
## 137                    Don't Know
## 138                    Don't Know
## 139                    Don't Know
## 140                    Don't Know
## 141                    Don't Know
## 142  Neither succeeded nor failed
## 143  Neither succeeded nor failed
## 144                    Don't Know
## 145                    Don't Know
## 146                    Don't Know
## 147  Neither succeeded nor failed
## 148                    Don't Know
## 149  Neither succeeded nor failed
## 150                    Don't Know
## 151                          <NA>
## 152                          <NA>
## 153                          <NA>
## 154                          <NA>
## 155                          <NA>
## 156                          <NA>
## 157                          <NA>
## 158                          <NA>
## 159                          <NA>
## 160                          <NA>
## 161                          <NA>
## 162                          <NA>
## 163                          <NA>
## 164                          <NA>
## 165                          <NA>
## 166                          <NA>
## 167                          <NA>
## 168                          <NA>
## 169                          <NA>
## 170                          <NA>
## 171                          <NA>
## 172                          <NA>
## 173                          <NA>
## 174                          <NA>
## 175                          <NA>
## 176                          <NA>
## 177                          <NA>
## 178                          <NA>
## 179                          <NA>
## 180                          <NA>
## 181                          <NA>
## 182                          <NA>
## 183                          <NA>
## 184                          <NA>
## 185                          <NA>
## 186                          <NA>
## 187                          <NA>
## 188                          <NA>
## 189                          <NA>
## 190                          <NA>
## 191                          <NA>
## 192                          <NA>
## 193                          <NA>
## 194                          <NA>
## 195                          <NA>
## 196                          <NA>
## 197                          <NA>
## 198                          <NA>
## 199                          <NA>
## 200                          <NA>
## 201                    Don't Know
## 202                    Don't Know
## 203                    Don't Know
## 204                    Don't Know
## 205                    Don't Know
## 206                    Don't Know
## 207                    Don't Know
## 208                    Don't Know
## 209                    Don't Know
## 210                    Don't Know
## 211                    Don't Know
## 212                    Don't Know
## 213                    Don't Know
## 214                    Don't Know
## 215                    Don't Know
## 216                    Don't Know
## 217                    Don't Know
## 218                    Don't Know
## 219                    Don't Know
## 220                    Don't Know
## 221                    Don't Know
## 222                    Don't Know
## 223                    Don't Know
## 224                    Don't Know
## 225                    Don't Know
## 226                    Don't Know
## 227                    Don't Know
## 228                    Don't Know
## 229                    Don't Know
## 230                    Don't Know
## 231                    Don't Know
## 232                    Don't Know
## 233                    Don't Know
## 234                    Don't Know
## 235                    Don't Know
## 236                    Don't Know
## 237                    Don't Know
## 238                    Don't Know
## 239                    Don't Know
## 240                    Don't Know
## 241                    Don't Know
## 242                    Don't Know
## 243                    Don't Know
## 244                    Don't Know
## 245                    Don't Know
## 246                    Don't Know
## 247                    Don't Know
## 248                    Don't Know
## 249                    Don't Know
## 250                    Don't Know
## 251                          <NA>
## 252                          <NA>
## 253                          <NA>
## 254         Did not quite succeed
## 255         Did not quite succeed
## 256  Neither succeeded nor failed
## 257  Neither succeeded nor failed
## 258         Did not quite succeed
## 259         Did not quite succeed
## 260                          <NA>
## 261                          <NA>
## 262                          <NA>
## 263                          <NA>
## 264         Did not quite succeed
## 265                          <NA>
## 266                          <NA>
## 267                          <NA>
## 268         Did not quite succeed
## 269                          <NA>
## 270                          <NA>
## 271                          <NA>
## 272         Did not quite succeed
## 273                          <NA>
## 274                          <NA>
## 275          Succeeded quite well
## 276                          <NA>
## 277                          <NA>
## 278                          <NA>
## 279                          <NA>
## 280                          <NA>
## 281                          <NA>
## 282                          <NA>
## 283                          <NA>
## 284  Neither succeeded nor failed
## 285                          <NA>
## 286                          <NA>
## 287                          <NA>
## 288                          <NA>
## 289                          <NA>
## 290                          <NA>
## 291                          <NA>
## 292                          <NA>
## 293                          <NA>
## 294                          <NA>
## 295                          <NA>
## 296                          <NA>
## 297                          <NA>
## 298                          <NA>
## 299                          <NA>
## 300                          <NA>
## 302                          <NA>
## 303                          <NA>
## 304                          <NA>
## 305                          <NA>
## 306                          <NA>
## 307                          <NA>
## 308                          <NA>
## 309                          <NA>
## 310                          <NA>
## 311                          <NA>
## 312                          <NA>
## 313                          <NA>
## 314                          <NA>
## 315                          <NA>
## 316                          <NA>
## 317                          <NA>
## 318                          <NA>
## 319                          <NA>
## 320                          <NA>
## 321                          <NA>
## 322                          <NA>
## 323                          <NA>
## 324                          <NA>
## 325                          <NA>
## 326                          <NA>
## 327                          <NA>
## 328                          <NA>
## 329                          <NA>
## 330                          <NA>
## 331                          <NA>
## 332                          <NA>
## 333                          <NA>
## 334                          <NA>
## 335                          <NA>
## 336                          <NA>
## 337                          <NA>
## 338                          <NA>
## 339                          <NA>
## 340                          <NA>
## 341                          <NA>
## 342                          <NA>
## 343                          <NA>
## 344                          <NA>
## 345                          <NA>
## 346                          <NA>
## 347                          <NA>
## 348                          <NA>
## 349                          <NA>
## 350                          <NA>
## 351                          <NA>
## 352                          <NA>
## 353                          <NA>
## 354                          <NA>
## 355                          <NA>
## 356                          <NA>
## 357                          <NA>
## 358                          <NA>
## 359                          <NA>
## 360                          <NA>
## 361                          <NA>
## 362                          <NA>
## 363                          <NA>
## 364                          <NA>
## 365                          <NA>
## 366                          <NA>
## 367                          <NA>
## 368                          <NA>
## 369                          <NA>
## 370                          <NA>
## 371                          <NA>
## 372                          <NA>
## 373                          <NA>
## 374                          <NA>
## 375                          <NA>
## 376                          <NA>
## 377                          <NA>
## 378                          <NA>
## 379                          <NA>
## 380                          <NA>
## 381                          <NA>
## 382                          <NA>
## 383                          <NA>
## 384                          <NA>
## 385                          <NA>
## 386                          <NA>
## 387                          <NA>
## 388                          <NA>
## 389                          <NA>
## 390                          <NA>
## 391                          <NA>
## 392                          <NA>
## 393                          <NA>
## 394                          <NA>
## 395                          <NA>
## 396                          <NA>
## 397                          <NA>
## 398                          <NA>
## 399                          <NA>
## 400                          <NA>
## 401                          <NA>
## 402                          <NA>
## 403                          <NA>
## 404                          <NA>
## 405                          <NA>
## 406                          <NA>
## 407                          <NA>
## 408                          <NA>
## 409                    Don't Know
## 410  Neither succeeded nor failed
## 411                          <NA>
## 412                          <NA>
## 413                          <NA>
## 414                          <NA>
## 415                    Don't Know
## 416                          <NA>
## 417                          <NA>
## 418                          <NA>
## 419  Neither succeeded nor failed
## 420                          <NA>
## 421                          <NA>
## 422                    Don't Know
## 423                          <NA>
## 424                          <NA>
## 425                          <NA>
## 426                          <NA>
## 427                          <NA>
## 428                    Don't Know
## 429        Did not succeed at all
## 430                          <NA>
## 431                          <NA>
## 432  Neither succeeded nor failed
## 433  Neither succeeded nor failed
## 434        Did not succeed at all
## 435  Neither succeeded nor failed
## 436        Did not succeed at all
## 437  Neither succeeded nor failed
## 438                          <NA>
## 439                          <NA>
## 440                          <NA>
## 441        Did not succeed at all
## 442         Did not quite succeed
## 443                          <NA>
## 444                          <NA>
## 445                          <NA>
## 446                          <NA>
## 447        Did not succeed at all
## 448         Did not quite succeed
## 449         Did not quite succeed
## 450         Did not quite succeed
## 451                          <NA>
## 452        Did not succeed at all
## 453         Did not quite succeed
## 454                          <NA>
## 455                          <NA>
## 456                          <NA>
## 457                          <NA>
## 458                          <NA>
## 459                          <NA>
## 460                    Don't Know
## 461                          <NA>
## 462                    Don't Know
## 463          Succeeded quite well
## 464          Succeeded quite well
## 465                          <NA>
## 466        Did not succeed at all
## 467                          <NA>
## 468                          <NA>
## 469                          <NA>
## 470                    Don't Know
## 471                          <NA>
## 472                          <NA>
## 473                          <NA>
## 474                          <NA>
## 475                          <NA>
## 476                          <NA>
## 477                          <NA>
## 478                          <NA>
## 479                          <NA>
## 480                          <NA>
## 481                          <NA>
## 482                          <NA>
## 483                          <NA>
## 484                          <NA>
## 485                          <NA>
## 486                          <NA>
## 487  Neither succeeded nor failed
## 488  Neither succeeded nor failed
## 489                          <NA>
## 490                          <NA>
## 491           Succeeded very well
## 492                          <NA>
## 493                          <NA>
## 494                          <NA>
## 495                          <NA>
## 496                          <NA>
##      Government.prepared.and.capable.for..Natural.Disaster
## 1                                         Very inefficient
## 2                        Neither efficient nor inefficient
## 3                                         Very inefficient
## 4                                         Very inefficient
## 5                                               Don't Know
## 6                                        Quite inefficient
## 7                                        Quite inefficient
## 8                                         Very inefficient
## 9                                         Very inefficient
## 10                       Neither efficient nor inefficient
## 11                                        Very inefficient
## 12                                       Quite inefficient
## 13                                       Quite inefficient
## 14                                       Quite inefficient
## 15                                       Quite inefficient
## 16                                       Quite inefficient
## 17                                         Quite efficient
## 18                                       Quite inefficient
## 19                       Neither efficient nor inefficient
## 20                                       Quite inefficient
## 21                                         Quite efficient
## 22                       Neither efficient nor inefficient
## 23                                       Quite inefficient
## 24                                        Very inefficient
## 25                                         Quite efficient
## 26                                         Quite efficient
## 27                                       Quite inefficient
## 28                                         Quite efficient
## 29                       Neither efficient nor inefficient
## 30                                       Quite inefficient
## 31                                         Quite efficient
## 32                       Neither efficient nor inefficient
## 33                                       Quite inefficient
## 34                                       Quite inefficient
## 35                       Neither efficient nor inefficient
## 36                                       Quite inefficient
## 37                                        Very inefficient
## 38                                        Very inefficient
## 39                                       Quite inefficient
## 40                       Neither efficient nor inefficient
## 41                                       Quite inefficient
## 42                                        Very inefficient
## 43                                       Quite inefficient
## 44                       Neither efficient nor inefficient
## 45                                        Very inefficient
## 46                                       Quite inefficient
## 47                                         Quite efficient
## 48                                       Quite inefficient
## 49                                       Quite inefficient
## 50                       Neither efficient nor inefficient
## 51                                         Quite efficient
## 52                                         Quite efficient
## 53                                       Quite inefficient
## 54                                        Very inefficient
## 55                                         Quite efficient
## 56                                         Quite efficient
## 57                                         Quite efficient
## 58                                         Quite efficient
## 59                                       Quite inefficient
## 60                                         Quite efficient
## 61                                         Quite efficient
## 62                                        Very inefficient
## 63                                       Quite inefficient
## 64                                       Quite inefficient
## 65                       Neither efficient nor inefficient
## 66                       Neither efficient nor inefficient
## 67                                         Quite efficient
## 68                                       Quite inefficient
## 69                                       Quite inefficient
## 70                                       Quite inefficient
## 71                                       Quite inefficient
## 72                                       Quite inefficient
## 73                       Neither efficient nor inefficient
## 74                       Neither efficient nor inefficient
## 75                                         Quite efficient
## 76                                         Quite efficient
## 77                                         Quite efficient
## 78                       Neither efficient nor inefficient
## 79                       Neither efficient nor inefficient
## 80                       Neither efficient nor inefficient
## 81                                         Quite efficient
## 82                                       Quite inefficient
## 83                                       Quite inefficient
## 84                                         Quite efficient
## 85                       Neither efficient nor inefficient
## 86                                       Quite inefficient
## 87                       Neither efficient nor inefficient
## 88                                          Very efficient
## 89                                         Quite efficient
## 90                                       Quite inefficient
## 91                                         Quite efficient
## 92                                         Quite efficient
## 93                                         Quite efficient
## 94                                       Quite inefficient
## 95                                         Quite efficient
## 96                                         Quite efficient
## 97                                         Quite efficient
## 98                                         Quite efficient
## 99                                         Quite efficient
## 100                                        Quite efficient
## 101                      Neither efficient nor inefficient
## 102                      Neither efficient nor inefficient
## 103                                        Quite efficient
## 104                      Neither efficient nor inefficient
## 105                      Neither efficient nor inefficient
## 106                      Neither efficient nor inefficient
## 107                      Neither efficient nor inefficient
## 108                      Neither efficient nor inefficient
## 109                                        Quite efficient
## 110                      Neither efficient nor inefficient
## 111                      Neither efficient nor inefficient
## 112                      Neither efficient nor inefficient
## 113                      Neither efficient nor inefficient
## 114                      Neither efficient nor inefficient
## 115                      Neither efficient nor inefficient
## 116                                      Quite inefficient
## 117                      Neither efficient nor inefficient
## 118                      Neither efficient nor inefficient
## 119                      Neither efficient nor inefficient
## 120                      Neither efficient nor inefficient
## 121                      Neither efficient nor inefficient
## 122                      Neither efficient nor inefficient
## 123                      Neither efficient nor inefficient
## 124                      Neither efficient nor inefficient
## 125                      Neither efficient nor inefficient
## 126                      Neither efficient nor inefficient
## 127                      Neither efficient nor inefficient
## 128                      Neither efficient nor inefficient
## 129                      Neither efficient nor inefficient
## 130                      Neither efficient nor inefficient
## 131                      Neither efficient nor inefficient
## 132                      Neither efficient nor inefficient
## 133                      Neither efficient nor inefficient
## 134                      Neither efficient nor inefficient
## 135                      Neither efficient nor inefficient
## 136                      Neither efficient nor inefficient
## 137                                      Quite inefficient
## 138                      Neither efficient nor inefficient
## 139                      Neither efficient nor inefficient
## 140                      Neither efficient nor inefficient
## 141                      Neither efficient nor inefficient
## 142                                             Don't Know
## 143                      Neither efficient nor inefficient
## 144                      Neither efficient nor inefficient
## 145                      Neither efficient nor inefficient
## 146                      Neither efficient nor inefficient
## 147                      Neither efficient nor inefficient
## 148                      Neither efficient nor inefficient
## 149                                        Quite efficient
## 150                                      Quite inefficient
## 151                      Neither efficient nor inefficient
## 152                                        Quite efficient
## 153                                        Quite efficient
## 154                                       Very inefficient
## 155                      Neither efficient nor inefficient
## 156                      Neither efficient nor inefficient
## 157                                       Very inefficient
## 158                                        Quite efficient
## 159                                      Quite inefficient
## 160                                        Quite efficient
## 161                                        Quite efficient
## 162                                        Quite efficient
## 163                                        Quite efficient
## 164                      Neither efficient nor inefficient
## 165                      Neither efficient nor inefficient
## 166                      Neither efficient nor inefficient
## 167                                        Quite efficient
## 168                                        Quite efficient
## 169                      Neither efficient nor inefficient
## 170                                        Quite efficient
## 171                                        Quite efficient
## 172                                        Quite efficient
## 173                      Neither efficient nor inefficient
## 174                      Neither efficient nor inefficient
## 175                                        Quite efficient
## 176                                        Quite efficient
## 177                                        Quite efficient
## 178                                        Quite efficient
## 179                                        Quite efficient
## 180                                        Quite efficient
## 181                                        Quite efficient
## 182                                        Quite efficient
## 183                                        Quite efficient
## 184                                        Quite efficient
## 185                      Neither efficient nor inefficient
## 186                                        Quite efficient
## 187                                        Quite efficient
## 188                                        Quite efficient
## 189                                        Quite efficient
## 190                                        Quite efficient
## 191                                        Quite efficient
## 192                      Neither efficient nor inefficient
## 193                                        Quite efficient
## 194                                        Quite efficient
## 195                                        Quite efficient
## 196                                        Quite efficient
## 197                                        Quite efficient
## 198                                        Quite efficient
## 199                                        Quite efficient
## 200                                        Quite efficient
## 201                      Neither efficient nor inefficient
## 202                                        Quite efficient
## 203                      Neither efficient nor inefficient
## 204                                      Quite inefficient
## 205                      Neither efficient nor inefficient
## 206                      Neither efficient nor inefficient
## 207                      Neither efficient nor inefficient
## 208                      Neither efficient nor inefficient
## 209                      Neither efficient nor inefficient
## 210                      Neither efficient nor inefficient
## 211                                        Quite efficient
## 212                                        Quite efficient
## 213                                        Quite efficient
## 214                                        Quite efficient
## 215                                        Quite efficient
## 216                                        Quite efficient
## 217                      Neither efficient nor inefficient
## 218                                        Quite efficient
## 219                                        Quite efficient
## 220                                        Quite efficient
## 221                                        Quite efficient
## 222                                        Quite efficient
## 223                      Neither efficient nor inefficient
## 224                                        Quite efficient
## 225                                      Quite inefficient
## 226                      Neither efficient nor inefficient
## 227                      Neither efficient nor inefficient
## 228                      Neither efficient nor inefficient
## 229                      Neither efficient nor inefficient
## 230                      Neither efficient nor inefficient
## 231                      Neither efficient nor inefficient
## 232                      Neither efficient nor inefficient
## 233                      Neither efficient nor inefficient
## 234                                      Quite inefficient
## 235                      Neither efficient nor inefficient
## 236                      Neither efficient nor inefficient
## 237                                        Quite efficient
## 238                                        Quite efficient
## 239                      Neither efficient nor inefficient
## 240                      Neither efficient nor inefficient
## 241                      Neither efficient nor inefficient
## 242                      Neither efficient nor inefficient
## 243                      Neither efficient nor inefficient
## 244                      Neither efficient nor inefficient
## 245                                        Quite efficient
## 246                      Neither efficient nor inefficient
## 247                      Neither efficient nor inefficient
## 248                                        Quite efficient
## 249                                        Quite efficient
## 250                                        Quite efficient
## 251                                       Very inefficient
## 252                                      Quite inefficient
## 253                                        Quite efficient
## 254                                      Quite inefficient
## 255                                                   <NA>
## 256                                       Very inefficient
## 257                                      Quite inefficient
## 258                                      Quite inefficient
## 259                                        Quite efficient
## 260                                      Quite inefficient
## 261                                      Quite inefficient
## 262                                      Quite inefficient
## 263                                      Quite inefficient
## 264                                      Quite inefficient
## 265                                       Very inefficient
## 266                                        Quite efficient
## 267                                       Very inefficient
## 268                      Neither efficient nor inefficient
## 269                                        Quite efficient
## 270                                         Very efficient
## 271                                       Very inefficient
## 272                                      Quite inefficient
## 273                                       Very inefficient
## 274                                        Quite efficient
## 275                                      Quite inefficient
## 276                      Neither efficient nor inefficient
## 277                                       Very inefficient
## 278                                      Quite inefficient
## 279                                       Very inefficient
## 280                                      Quite inefficient
## 281                                       Very inefficient
## 282                                       Very inefficient
## 283                                       Very inefficient
## 284                                      Quite inefficient
## 285                                       Very inefficient
## 286                                       Very inefficient
## 287                                       Very inefficient
## 288                                       Very inefficient
## 289                      Neither efficient nor inefficient
## 290                                      Quite inefficient
## 291                                       Very inefficient
## 292                      Neither efficient nor inefficient
## 293                                      Quite inefficient
## 294                                      Quite inefficient
## 295                                      Quite inefficient
## 296                      Neither efficient nor inefficient
## 297                                      Quite inefficient
## 298                                      Quite inefficient
## 299                                      Quite inefficient
## 300                                      Quite inefficient
## 302                                      Quite inefficient
## 303                      Neither efficient nor inefficient
## 304                                         Very efficient
## 305                                       Very inefficient
## 306                                      Quite inefficient
## 307                                       Very inefficient
## 308                                       Very inefficient
## 309                                        Quite efficient
## 310                                      Quite inefficient
## 311                                       Very inefficient
## 312                                        Quite efficient
## 313                                       Very inefficient
## 314                      Neither efficient nor inefficient
## 315                      Neither efficient nor inefficient
## 316                                        Quite efficient
## 317                                       Very inefficient
## 318                                      Quite inefficient
## 319                                      Quite inefficient
## 320                      Neither efficient nor inefficient
## 321                                        Quite efficient
## 322                                        Quite efficient
## 323                                        Quite efficient
## 324                                        Quite efficient
## 325                                      Quite inefficient
## 326                                      Quite inefficient
## 327                                      Quite inefficient
## 328                                        Quite efficient
## 329                      Neither efficient nor inefficient
## 330                      Neither efficient nor inefficient
## 331                                       Very inefficient
## 332                                       Very inefficient
## 333                                      Quite inefficient
## 334                      Neither efficient nor inefficient
## 335                                        Quite efficient
## 336                                      Quite inefficient
## 337                                       Very inefficient
## 338                                      Quite inefficient
## 339                                        Quite efficient
## 340                                        Quite efficient
## 341                                        Quite efficient
## 342                                      Quite inefficient
## 343                                       Very inefficient
## 344                                        Quite efficient
## 345                      Neither efficient nor inefficient
## 346                                        Quite efficient
## 347                      Neither efficient nor inefficient
## 348                                       Very inefficient
## 349                      Neither efficient nor inefficient
## 350                                       Very inefficient
## 351                      Neither efficient nor inefficient
## 352                      Neither efficient nor inefficient
## 353                      Neither efficient nor inefficient
## 354                                        Quite efficient
## 355                      Neither efficient nor inefficient
## 356                      Neither efficient nor inefficient
## 357                      Neither efficient nor inefficient
## 358                                        Quite efficient
## 359                                        Quite efficient
## 360                                      Quite inefficient
## 361                                        Quite efficient
## 362                                        Quite efficient
## 363                                        Quite efficient
## 364                                        Quite efficient
## 365                                        Quite efficient
## 366                                        Quite efficient
## 367                                        Quite efficient
## 368                      Neither efficient nor inefficient
## 369                                       Very inefficient
## 370                                        Quite efficient
## 371                      Neither efficient nor inefficient
## 372                                      Quite inefficient
## 373                                        Quite efficient
## 374                                        Quite efficient
## 375                      Neither efficient nor inefficient
## 376                                        Quite efficient
## 377                      Neither efficient nor inefficient
## 378                                        Quite efficient
## 379                                        Quite efficient
## 380                                        Quite efficient
## 381                                        Quite efficient
## 382                                        Quite efficient
## 383                                        Quite efficient
## 384                                        Quite efficient
## 385                                        Quite efficient
## 386                                        Quite efficient
## 387                                        Quite efficient
## 388                                        Quite efficient
## 389                      Neither efficient nor inefficient
## 390                                      Quite inefficient
## 391                                        Quite efficient
## 392                                        Quite efficient
## 393                                        Quite efficient
## 394                                        Quite efficient
## 395                                        Quite efficient
## 396                                        Quite efficient
## 397                                        Quite efficient
## 398                                        Quite efficient
## 399                                        Quite efficient
## 400                                        Quite efficient
## 401                                        Quite efficient
## 402                      Neither efficient nor inefficient
## 403                      Neither efficient nor inefficient
## 404                                      Quite inefficient
## 405                      Neither efficient nor inefficient
## 406                      Neither efficient nor inefficient
## 407                      Neither efficient nor inefficient
## 408                      Neither efficient nor inefficient
## 409                                        Quite efficient
## 410                      Neither efficient nor inefficient
## 411                      Neither efficient nor inefficient
## 412                      Neither efficient nor inefficient
## 413                                        Quite efficient
## 414                      Neither efficient nor inefficient
## 415                                             Don't Know
## 416                      Neither efficient nor inefficient
## 417                                                   <NA>
## 418                                        Quite efficient
## 419                                        Quite efficient
## 420                                                   <NA>
## 421                      Neither efficient nor inefficient
## 422                                             Don't Know
## 423                                                   <NA>
## 424                                        Quite efficient
## 425                      Neither efficient nor inefficient
## 426                      Neither efficient nor inefficient
## 427                                        Quite efficient
## 428                                             Don't Know
## 429                                        Quite efficient
## 430                                      Quite inefficient
## 431                                        Quite efficient
## 432                                        Quite efficient
## 433                      Neither efficient nor inefficient
## 434                      Neither efficient nor inefficient
## 435                      Neither efficient nor inefficient
## 436                                        Quite efficient
## 437                      Neither efficient nor inefficient
## 438                                        Quite efficient
## 439                                        Quite efficient
## 440                      Neither efficient nor inefficient
## 441                                      Quite inefficient
## 442                                        Quite efficient
## 443                                        Quite efficient
## 444                      Neither efficient nor inefficient
## 445                      Neither efficient nor inefficient
## 446                      Neither efficient nor inefficient
## 447                      Neither efficient nor inefficient
## 448                      Neither efficient nor inefficient
## 449                      Neither efficient nor inefficient
## 450                                                   <NA>
## 451                                        Quite efficient
## 452                                        Quite efficient
## 453                                        Quite efficient
## 454                      Neither efficient nor inefficient
## 455                      Neither efficient nor inefficient
## 456                                       Very inefficient
## 457                                      Quite inefficient
## 458                                       Very inefficient
## 459                                       Very inefficient
## 460                                       Very inefficient
## 461                                                   <NA>
## 462                                        Quite efficient
## 463                                        Quite efficient
## 464                                        Quite efficient
## 465                                       Very inefficient
## 466                      Neither efficient nor inefficient
## 467                                        Quite efficient
## 468                                       Very inefficient
## 469                                      Quite inefficient
## 470                      Neither efficient nor inefficient
## 471                                      Quite inefficient
## 472                                        Quite efficient
## 473                                       Very inefficient
## 474                                             Don't Know
## 475                      Neither efficient nor inefficient
## 476                                             Don't Know
## 477                      Neither efficient nor inefficient
## 478                                       Very inefficient
## 479                                             Don't Know
## 480                                             Don't Know
## 481                                       Very inefficient
## 482                                      Quite inefficient
## 483                                       Very inefficient
## 484                                       Very inefficient
## 485                                       Very inefficient
## 486                                      Quite inefficient
## 487                                        Quite efficient
## 488                      Neither efficient nor inefficient
## 489                      Neither efficient nor inefficient
## 490                                      Quite inefficient
## 491                                      Quite inefficient
## 492                      Neither efficient nor inefficient
## 493                                       Very inefficient
## 494                                      Quite inefficient
## 495                                       Very inefficient
## 496                                       Very inefficient
##      Government.prepared.and.capable.for..Accidents
## 1                                  Very inefficient
## 2                 Neither efficient nor inefficient
## 3                                  Very inefficient
## 4                                 Quite inefficient
## 5                                   Quite efficient
## 6                                   Quite efficient
## 7                                 Quite inefficient
## 8                                 Quite inefficient
## 9                                 Quite inefficient
## 10                                 Very inefficient
## 11                                Quite inefficient
## 12                                Quite inefficient
## 13                                Quite inefficient
## 14                Neither efficient nor inefficient
## 15                                  Quite efficient
## 16                                Quite inefficient
## 17                                  Quite efficient
## 18                                 Very inefficient
## 19                Neither efficient nor inefficient
## 20                                  Quite efficient
## 21                                  Quite efficient
## 22                                Quite inefficient
## 23                Neither efficient nor inefficient
## 24                Neither efficient nor inefficient
## 25                                  Quite efficient
## 26                                  Quite efficient
## 27                Neither efficient nor inefficient
## 28                                  Quite efficient
## 29                Neither efficient nor inefficient
## 30                                Quite inefficient
## 31                                Quite inefficient
## 32                                  Quite efficient
## 33                                  Quite efficient
## 34                                Quite inefficient
## 35                                  Quite efficient
## 36                                Quite inefficient
## 37                                 Very inefficient
## 38                                 Very inefficient
## 39                                Quite inefficient
## 40                                Quite inefficient
## 41                                 Very inefficient
## 42                                 Very inefficient
## 43                                Quite inefficient
## 44                                 Very inefficient
## 45                                Quite inefficient
## 46                                Quite inefficient
## 47                                  Quite efficient
## 48                                Quite inefficient
## 49                Neither efficient nor inefficient
## 50                Neither efficient nor inefficient
## 51                                  Quite efficient
## 52                                  Quite efficient
## 53                                Quite inefficient
## 54                                 Very inefficient
## 55                Neither efficient nor inefficient
## 56                                  Quite efficient
## 57                                  Quite efficient
## 58                                  Quite efficient
## 59                                  Quite efficient
## 60                                  Quite efficient
## 61                                  Quite efficient
## 62                                Quite inefficient
## 63                                Quite inefficient
## 64                                Quite inefficient
## 65                Neither efficient nor inefficient
## 66                                  Quite efficient
## 67                                  Quite efficient
## 68                Neither efficient nor inefficient
## 69                Neither efficient nor inefficient
## 70                Neither efficient nor inefficient
## 71                                Quite inefficient
## 72                                Quite inefficient
## 73                Neither efficient nor inefficient
## 74                Neither efficient nor inefficient
## 75                                  Quite efficient
## 76                                  Quite efficient
## 77                                  Quite efficient
## 78                Neither efficient nor inefficient
## 79                Neither efficient nor inefficient
## 80                Neither efficient nor inefficient
## 81                                  Quite efficient
## 82                                Quite inefficient
## 83                                Quite inefficient
## 84                                  Quite efficient
## 85                Neither efficient nor inefficient
## 86                                Quite inefficient
## 87                                  Quite efficient
## 88                                   Very efficient
## 89                                   Very efficient
## 90                Neither efficient nor inefficient
## 91                                  Quite efficient
## 92                                  Quite efficient
## 93                                  Quite efficient
## 94                                Quite inefficient
## 95                                  Quite efficient
## 96                                  Quite efficient
## 97                                  Quite efficient
## 98                                  Quite efficient
## 99                                  Quite efficient
## 100                                 Quite efficient
## 101                               Quite inefficient
## 102               Neither efficient nor inefficient
## 103                                 Quite efficient
## 104               Neither efficient nor inefficient
## 105               Neither efficient nor inefficient
## 106               Neither efficient nor inefficient
## 107                               Quite inefficient
## 108               Neither efficient nor inefficient
## 109               Neither efficient nor inefficient
## 110               Neither efficient nor inefficient
## 111               Neither efficient nor inefficient
## 112               Neither efficient nor inefficient
## 113               Neither efficient nor inefficient
## 114               Neither efficient nor inefficient
## 115               Neither efficient nor inefficient
## 116               Neither efficient nor inefficient
## 117               Neither efficient nor inefficient
## 118               Neither efficient nor inefficient
## 119               Neither efficient nor inefficient
## 120               Neither efficient nor inefficient
## 121               Neither efficient nor inefficient
## 122               Neither efficient nor inefficient
## 123               Neither efficient nor inefficient
## 124               Neither efficient nor inefficient
## 125               Neither efficient nor inefficient
## 126               Neither efficient nor inefficient
## 127               Neither efficient nor inefficient
## 128               Neither efficient nor inefficient
## 129                               Quite inefficient
## 130               Neither efficient nor inefficient
## 131               Neither efficient nor inefficient
## 132               Neither efficient nor inefficient
## 133               Neither efficient nor inefficient
## 134               Neither efficient nor inefficient
## 135               Neither efficient nor inefficient
## 136               Neither efficient nor inefficient
## 137                                 Quite efficient
## 138               Neither efficient nor inefficient
## 139               Neither efficient nor inefficient
## 140                               Quite inefficient
## 141               Neither efficient nor inefficient
## 142               Neither efficient nor inefficient
## 143               Neither efficient nor inefficient
## 144                               Quite inefficient
## 145               Neither efficient nor inefficient
## 146               Neither efficient nor inefficient
## 147               Neither efficient nor inefficient
## 148               Neither efficient nor inefficient
## 149                               Quite inefficient
## 150                                 Quite efficient
## 151                                 Quite efficient
## 152               Neither efficient nor inefficient
## 153               Neither efficient nor inefficient
## 154               Neither efficient nor inefficient
## 155                                 Quite efficient
## 156                                 Quite efficient
## 157                               Quite inefficient
## 158                               Quite inefficient
## 159                               Quite inefficient
## 160               Neither efficient nor inefficient
## 161               Neither efficient nor inefficient
## 162               Neither efficient nor inefficient
## 163               Neither efficient nor inefficient
## 164               Neither efficient nor inefficient
## 165                                 Quite efficient
## 166               Neither efficient nor inefficient
## 167                               Quite inefficient
## 168                                 Quite efficient
## 169                                 Quite efficient
## 170                                 Quite efficient
## 171                                 Quite efficient
## 172                                 Quite efficient
## 173               Neither efficient nor inefficient
## 174                                 Quite efficient
## 175                                 Quite efficient
## 176                                 Quite efficient
## 177                                 Quite efficient
## 178                                 Quite efficient
## 179                                 Quite efficient
## 180               Neither efficient nor inefficient
## 181                                 Quite efficient
## 182                                 Quite efficient
## 183                                 Quite efficient
## 184                                 Quite efficient
## 185               Neither efficient nor inefficient
## 186                                 Quite efficient
## 187                                 Quite efficient
## 188                                 Quite efficient
## 189                                 Quite efficient
## 190                                 Quite efficient
## 191                                 Quite efficient
## 192               Neither efficient nor inefficient
## 193                                 Quite efficient
## 194                                 Quite efficient
## 195                                 Quite efficient
## 196                                 Quite efficient
## 197                                 Quite efficient
## 198                                 Quite efficient
## 199                                 Quite efficient
## 200                                 Quite efficient
## 201                                 Quite efficient
## 202               Neither efficient nor inefficient
## 203                                 Quite efficient
## 204               Neither efficient nor inefficient
## 205                                 Quite efficient
## 206                                 Quite efficient
## 207               Neither efficient nor inefficient
## 208                                 Quite efficient
## 209                                 Quite efficient
## 210                                 Quite efficient
## 211               Neither efficient nor inefficient
## 212               Neither efficient nor inefficient
## 213               Neither efficient nor inefficient
## 214               Neither efficient nor inefficient
## 215               Neither efficient nor inefficient
## 216               Neither efficient nor inefficient
## 217                               Quite inefficient
## 218                                 Quite efficient
## 219               Neither efficient nor inefficient
## 220               Neither efficient nor inefficient
## 221               Neither efficient nor inefficient
## 222               Neither efficient nor inefficient
## 223                                 Quite efficient
## 224               Neither efficient nor inefficient
## 225               Neither efficient nor inefficient
## 226                               Quite inefficient
## 227                                 Quite efficient
## 228                               Quite inefficient
## 229                                 Quite efficient
## 230               Neither efficient nor inefficient
## 231                                 Quite efficient
## 232               Neither efficient nor inefficient
## 233               Neither efficient nor inefficient
## 234               Neither efficient nor inefficient
## 235               Neither efficient nor inefficient
## 236                                 Quite efficient
## 237                                  Very efficient
## 238                                 Quite efficient
## 239               Neither efficient nor inefficient
## 240               Neither efficient nor inefficient
## 241               Neither efficient nor inefficient
## 242               Neither efficient nor inefficient
## 243               Neither efficient nor inefficient
## 244               Neither efficient nor inefficient
## 245                                 Quite efficient
## 246                                 Quite efficient
## 247                                 Quite efficient
## 248                                  Very efficient
## 249                                  Very efficient
## 250                                 Quite efficient
## 251                                Very inefficient
## 252                               Quite inefficient
## 253                               Quite inefficient
## 254                               Quite inefficient
## 255                               Quite inefficient
## 256                                Very inefficient
## 257                                Very inefficient
## 258                               Quite inefficient
## 259               Neither efficient nor inefficient
## 260                                Very inefficient
## 261                               Quite inefficient
## 262                               Quite inefficient
## 263                               Quite inefficient
## 264               Neither efficient nor inefficient
## 265                                Very inefficient
## 266               Neither efficient nor inefficient
## 267               Neither efficient nor inefficient
## 268                               Quite inefficient
## 269                               Quite inefficient
## 270                                 Quite efficient
## 271                               Quite inefficient
## 272                                Very inefficient
## 273                               Quite inefficient
## 274                               Quite inefficient
## 275                                Very inefficient
## 276                               Quite inefficient
## 277                               Quite inefficient
## 278                               Quite inefficient
## 279                                Very inefficient
## 280               Neither efficient nor inefficient
## 281                                Very inefficient
## 282                               Quite inefficient
## 283                               Quite inefficient
## 284                                 Quite efficient
## 285                               Quite inefficient
## 286                                Very inefficient
## 287                               Quite inefficient
## 288                               Quite inefficient
## 289                               Quite inefficient
## 290               Neither efficient nor inefficient
## 291                                Very inefficient
## 292               Neither efficient nor inefficient
## 293               Neither efficient nor inefficient
## 294               Neither efficient nor inefficient
## 295               Neither efficient nor inefficient
## 296                               Quite inefficient
## 297                               Quite inefficient
## 298               Neither efficient nor inefficient
## 299                                Very inefficient
## 300                               Quite inefficient
## 302                               Quite inefficient
## 303               Neither efficient nor inefficient
## 304                                 Quite efficient
## 305                                Very inefficient
## 306                               Quite inefficient
## 307                                Very inefficient
## 308                                Very inefficient
## 309                                Very inefficient
## 310                               Quite inefficient
## 311                                Very inefficient
## 312                                 Quite efficient
## 313                                Very inefficient
## 314               Neither efficient nor inefficient
## 315               Neither efficient nor inefficient
## 316               Neither efficient nor inefficient
## 317                                Very inefficient
## 318                               Quite inefficient
## 319                               Quite inefficient
## 320               Neither efficient nor inefficient
## 321                               Quite inefficient
## 322                                 Quite efficient
## 323                                 Quite efficient
## 324                                 Quite efficient
## 325                               Quite inefficient
## 326                               Quite inefficient
## 327                               Quite inefficient
## 328                                 Quite efficient
## 329                                 Quite efficient
## 330                                 Quite efficient
## 331               Neither efficient nor inefficient
## 332                               Quite inefficient
## 333               Neither efficient nor inefficient
## 334                                 Quite efficient
## 335                                  Very efficient
## 336               Neither efficient nor inefficient
## 337                               Quite inefficient
## 338               Neither efficient nor inefficient
## 339               Neither efficient nor inefficient
## 340               Neither efficient nor inefficient
## 341                                 Quite efficient
## 342                               Quite inefficient
## 343                                Very inefficient
## 344                                 Quite efficient
## 345               Neither efficient nor inefficient
## 346                                 Quite efficient
## 347               Neither efficient nor inefficient
## 348                                Very inefficient
## 349               Neither efficient nor inefficient
## 350                                Very inefficient
## 351               Neither efficient nor inefficient
## 352               Neither efficient nor inefficient
## 353               Neither efficient nor inefficient
## 354                                 Quite efficient
## 355               Neither efficient nor inefficient
## 356               Neither efficient nor inefficient
## 357               Neither efficient nor inefficient
## 358                                 Quite efficient
## 359                                 Quite efficient
## 360                                  Very efficient
## 361                                 Quite efficient
## 362                                 Quite efficient
## 363                                 Quite efficient
## 364                                 Quite efficient
## 365                                      Don't Know
## 366                                 Quite efficient
## 367                                 Quite efficient
## 368               Neither efficient nor inefficient
## 369                               Quite inefficient
## 370                                 Quite efficient
## 371               Neither efficient nor inefficient
## 372                               Quite inefficient
## 373                                 Quite efficient
## 374                                 Quite efficient
## 375               Neither efficient nor inefficient
## 376                                 Quite efficient
## 377               Neither efficient nor inefficient
## 378                                 Quite efficient
## 379                                 Quite efficient
## 380                                 Quite efficient
## 381                                 Quite efficient
## 382                                 Quite efficient
## 383                                 Quite efficient
## 384                                 Quite efficient
## 385                                 Quite efficient
## 386                                 Quite efficient
## 387                                 Quite efficient
## 388                                 Quite efficient
## 389               Neither efficient nor inefficient
## 390               Neither efficient nor inefficient
## 391                                 Quite efficient
## 392                                 Quite efficient
## 393                                 Quite efficient
## 394                                 Quite efficient
## 395                                 Quite efficient
## 396                                 Quite efficient
## 397                                 Quite efficient
## 398                                 Quite efficient
## 399                                 Quite efficient
## 400                                 Quite efficient
## 401                                 Quite efficient
## 402               Neither efficient nor inefficient
## 403                                 Quite efficient
## 404                               Quite inefficient
## 405               Neither efficient nor inefficient
## 406               Neither efficient nor inefficient
## 407               Neither efficient nor inefficient
## 408               Neither efficient nor inefficient
## 409                                 Quite efficient
## 410               Neither efficient nor inefficient
## 411                                 Quite efficient
## 412               Neither efficient nor inefficient
## 413               Neither efficient nor inefficient
## 414                                 Quite efficient
## 415                                      Don't Know
## 416                                 Quite efficient
## 417                                            <NA>
## 418                                 Quite efficient
## 419                                 Quite efficient
## 420                                            <NA>
## 421               Neither efficient nor inefficient
## 422                                      Don't Know
## 423                                            <NA>
## 424                                 Quite efficient
## 425               Neither efficient nor inefficient
## 426               Neither efficient nor inefficient
## 427                                 Quite efficient
## 428                                      Don't Know
## 429                                 Quite efficient
## 430                               Quite inefficient
## 431                                 Quite efficient
## 432                                 Quite efficient
## 433               Neither efficient nor inefficient
## 434                                 Quite efficient
## 435               Neither efficient nor inefficient
## 436                                 Quite efficient
## 437               Neither efficient nor inefficient
## 438                                 Quite efficient
## 439                                 Quite efficient
## 440               Neither efficient nor inefficient
## 441               Neither efficient nor inefficient
## 442                                 Quite efficient
## 443               Neither efficient nor inefficient
## 444               Neither efficient nor inefficient
## 445               Neither efficient nor inefficient
## 446               Neither efficient nor inefficient
## 447               Neither efficient nor inefficient
## 448               Neither efficient nor inefficient
## 449               Neither efficient nor inefficient
## 450                                            <NA>
## 451                                 Quite efficient
## 452                                 Quite efficient
## 453                                 Quite efficient
## 454               Neither efficient nor inefficient
## 455                                 Quite efficient
## 456                                Very inefficient
## 457                               Quite inefficient
## 458                                Very inefficient
## 459                               Quite inefficient
## 460                                  Very efficient
## 461                                            <NA>
## 462                                  Very efficient
## 463                                 Quite efficient
## 464                                 Quite efficient
## 465                               Quite inefficient
## 466                                 Quite efficient
## 467                                 Quite efficient
## 468                                Very inefficient
## 469                               Quite inefficient
## 470                                 Quite efficient
## 471                                 Quite efficient
## 472                                Very inefficient
## 473                                Very inefficient
## 474                                      Don't Know
## 475                               Quite inefficient
## 476                                      Don't Know
## 477                                 Quite efficient
## 478                               Quite inefficient
## 479                                      Don't Know
## 480                                      Don't Know
## 481                                Very inefficient
## 482                               Quite inefficient
## 483                                Very inefficient
## 484                                Very inefficient
## 485                               Quite inefficient
## 486                               Quite inefficient
## 487                                 Quite efficient
## 488               Neither efficient nor inefficient
## 489               Neither efficient nor inefficient
## 490               Neither efficient nor inefficient
## 491               Neither efficient nor inefficient
## 492               Neither efficient nor inefficient
## 493                                Very inefficient
## 494                               Quite inefficient
## 495                               Quite inefficient
## 496                                Very inefficient
##      Government.prepared.and.capable.for..Disease.and.epidemics
## 1                                              Very inefficient
## 2                                             Quite inefficient
## 3                                             Quite inefficient
## 4                                             Quite inefficient
## 5                                             Quite inefficient
## 6                             Neither efficient nor inefficient
## 7                                               Quite efficient
## 8                                              Very inefficient
## 9                                              Very inefficient
## 10                                            Quite inefficient
## 11                                             Very inefficient
## 12                                            Quite inefficient
## 13                            Neither efficient nor inefficient
## 14                            Neither efficient nor inefficient
## 15                                            Quite inefficient
## 16                                              Quite efficient
## 17                            Neither efficient nor inefficient
## 18                                              Quite efficient
## 19                                              Quite efficient
## 20                                              Quite efficient
## 21                                              Quite efficient
## 22                                              Quite efficient
## 23                                            Quite inefficient
## 24                                            Quite inefficient
## 25                                               Very efficient
## 26                                              Quite efficient
## 27                                            Quite inefficient
## 28                                              Quite efficient
## 29                                              Quite efficient
## 30                                            Quite inefficient
## 31                                              Quite efficient
## 32                                              Quite efficient
## 33                                            Quite inefficient
## 34                                            Quite inefficient
## 35                                              Quite efficient
## 36                                            Quite inefficient
## 37                                             Very inefficient
## 38                                             Very inefficient
## 39                                            Quite inefficient
## 40                                            Quite inefficient
## 41                                            Quite inefficient
## 42                                             Very inefficient
## 43                                            Quite inefficient
## 44                                             Very inefficient
## 45                                            Quite inefficient
## 46                                            Quite inefficient
## 47                                              Quite efficient
## 48                            Neither efficient nor inefficient
## 49                            Neither efficient nor inefficient
## 50                            Neither efficient nor inefficient
## 51                                              Quite efficient
## 52                                              Quite efficient
## 53                                            Quite inefficient
## 54                                             Very inefficient
## 55                                              Quite efficient
## 56                                            Quite inefficient
## 57                                              Quite efficient
## 58                                              Quite efficient
## 59                                            Quite inefficient
## 60                                            Quite inefficient
## 61                                              Quite efficient
## 62                                             Very inefficient
## 63                                            Quite inefficient
## 64                                            Quite inefficient
## 65                            Neither efficient nor inefficient
## 66                            Neither efficient nor inefficient
## 67                                              Quite efficient
## 68                            Neither efficient nor inefficient
## 69                            Neither efficient nor inefficient
## 70                                            Quite inefficient
## 71                                            Quite inefficient
## 72                                            Quite inefficient
## 73                            Neither efficient nor inefficient
## 74                            Neither efficient nor inefficient
## 75                                              Quite efficient
## 76                                              Quite efficient
## 77                                              Quite efficient
## 78                            Neither efficient nor inefficient
## 79                            Neither efficient nor inefficient
## 80                            Neither efficient nor inefficient
## 81                                              Quite efficient
## 82                                            Quite inefficient
## 83                                            Quite inefficient
## 84                                              Quite efficient
## 85                            Neither efficient nor inefficient
## 86                                              Quite efficient
## 87                                              Quite efficient
## 88                                               Very efficient
## 89                                               Very efficient
## 90                                              Quite efficient
## 91                                              Quite efficient
## 92                                              Quite efficient
## 93                                              Quite efficient
## 94                                            Quite inefficient
## 95                                              Quite efficient
## 96                                              Quite efficient
## 97                                              Quite efficient
## 98                                              Quite efficient
## 99                                              Quite efficient
## 100                                             Quite efficient
## 101                                             Quite efficient
## 102                           Neither efficient nor inefficient
## 103                                             Quite efficient
## 104                           Neither efficient nor inefficient
## 105                           Neither efficient nor inefficient
## 106                           Neither efficient nor inefficient
## 107                                           Quite inefficient
## 108                           Neither efficient nor inefficient
## 109                                             Quite efficient
## 110                           Neither efficient nor inefficient
## 111                           Neither efficient nor inefficient
## 112                           Neither efficient nor inefficient
## 113                           Neither efficient nor inefficient
## 114                           Neither efficient nor inefficient
## 115                           Neither efficient nor inefficient
## 116                                             Quite efficient
## 117                           Neither efficient nor inefficient
## 118                           Neither efficient nor inefficient
## 119                           Neither efficient nor inefficient
## 120                           Neither efficient nor inefficient
## 121                           Neither efficient nor inefficient
## 122                           Neither efficient nor inefficient
## 123                                             Quite efficient
## 124                           Neither efficient nor inefficient
## 125                           Neither efficient nor inefficient
## 126                                             Quite efficient
## 127                           Neither efficient nor inefficient
## 128                           Neither efficient nor inefficient
## 129                           Neither efficient nor inefficient
## 130                           Neither efficient nor inefficient
## 131                                             Quite efficient
## 132                           Neither efficient nor inefficient
## 133                           Neither efficient nor inefficient
## 134                                             Quite efficient
## 135                           Neither efficient nor inefficient
## 136                           Neither efficient nor inefficient
## 137                                             Quite efficient
## 138                                             Quite efficient
## 139                                             Quite efficient
## 140                           Neither efficient nor inefficient
## 141                           Neither efficient nor inefficient
## 142                           Neither efficient nor inefficient
## 143                           Neither efficient nor inefficient
## 144                                             Quite efficient
## 145                           Neither efficient nor inefficient
## 146                           Neither efficient nor inefficient
## 147                           Neither efficient nor inefficient
## 148                           Neither efficient nor inefficient
## 149                           Neither efficient nor inefficient
## 150                           Neither efficient nor inefficient
## 151                                             Quite efficient
## 152                                             Quite efficient
## 153                                             Quite efficient
## 154                                             Quite efficient
## 155                           Neither efficient nor inefficient
## 156                                             Quite efficient
## 157                           Neither efficient nor inefficient
## 158                                           Quite inefficient
## 159                           Neither efficient nor inefficient
## 160                                           Quite inefficient
## 161                                             Quite efficient
## 162                                             Quite efficient
## 163                                             Quite efficient
## 164                           Neither efficient nor inefficient
## 165                           Neither efficient nor inefficient
## 166                           Neither efficient nor inefficient
## 167                                           Quite inefficient
## 168                                             Quite efficient
## 169                           Neither efficient nor inefficient
## 170                                             Quite efficient
## 171                                             Quite efficient
## 172                                             Quite efficient
## 173                           Neither efficient nor inefficient
## 174                           Neither efficient nor inefficient
## 175                                             Quite efficient
## 176                                             Quite efficient
## 177                                             Quite efficient
## 178                                             Quite efficient
## 179                                             Quite efficient
## 180                                             Quite efficient
## 181                                             Quite efficient
## 182                                             Quite efficient
## 183                                             Quite efficient
## 184                                             Quite efficient
## 185                           Neither efficient nor inefficient
## 186                                             Quite efficient
## 187                                             Quite efficient
## 188                                             Quite efficient
## 189                                             Quite efficient
## 190                                             Quite efficient
## 191                                             Quite efficient
## 192                           Neither efficient nor inefficient
## 193                                             Quite efficient
## 194                                             Quite efficient
## 195                                             Quite efficient
## 196                                             Quite efficient
## 197                                             Quite efficient
## 198                                             Quite efficient
## 199                                             Quite efficient
## 200                                             Quite efficient
## 201                                              Very efficient
## 202                           Neither efficient nor inefficient
## 203                                             Quite efficient
## 204                                             Quite efficient
## 205                           Neither efficient nor inefficient
## 206                                             Quite efficient
## 207                                             Quite efficient
## 208                                             Quite efficient
## 209                           Neither efficient nor inefficient
## 210                           Neither efficient nor inefficient
## 211                                             Quite efficient
## 212                                             Quite efficient
## 213                                             Quite efficient
## 214                                             Quite efficient
## 215                                             Quite efficient
## 216                                             Quite efficient
## 217                           Neither efficient nor inefficient
## 218                                              Very efficient
## 219                                             Quite efficient
## 220                                           Quite inefficient
## 221                                             Quite efficient
## 222                                             Quite efficient
## 223                           Neither efficient nor inefficient
## 224                                              Very efficient
## 225                           Neither efficient nor inefficient
## 226                                             Quite efficient
## 227                           Neither efficient nor inefficient
## 228                                             Quite efficient
## 229                                              Very efficient
## 230                                             Quite efficient
## 231                           Neither efficient nor inefficient
## 232                                             Quite efficient
## 233                           Neither efficient nor inefficient
## 234                                             Quite efficient
## 235                                             Quite efficient
## 236                                              Very efficient
## 237                                              Very efficient
## 238                                              Very efficient
## 239                                             Quite efficient
## 240                                             Quite efficient
## 241                                             Quite efficient
## 242                                             Quite efficient
## 243                                             Quite efficient
## 244                                             Quite efficient
## 245                           Neither efficient nor inefficient
## 246                                             Quite efficient
## 247                                              Very efficient
## 248                                              Very efficient
## 249                                              Very efficient
## 250                                              Very efficient
## 251                                            Very inefficient
## 252                                            Very inefficient
## 253                                           Quite inefficient
## 254                                            Very inefficient
## 255                           Neither efficient nor inefficient
## 256                                            Very inefficient
## 257                                            Very inefficient
## 258                                           Quite inefficient
## 259                                             Quite efficient
## 260                                           Quite inefficient
## 261                                            Very inefficient
## 262                                            Very inefficient
## 263                                            Very inefficient
## 264                                           Quite inefficient
## 265                                            Very inefficient
## 266                                             Quite efficient
## 267                           Neither efficient nor inefficient
## 268                                            Very inefficient
## 269                                             Quite efficient
## 270                                             Quite efficient
## 271                                            Very inefficient
## 272                                            Very inefficient
## 273                                            Very inefficient
## 274                           Neither efficient nor inefficient
## 275                                           Quite inefficient
## 276                                             Quite efficient
## 277                                            Very inefficient
## 278                                            Very inefficient
## 279                                            Very inefficient
## 280                                             Quite efficient
## 281                                            Very inefficient
## 282                                            Very inefficient
## 283                                            Very inefficient
## 284                                              Very efficient
## 285                                            Very inefficient
## 286                                            Very inefficient
## 287                                            Very inefficient
## 288                                            Very inefficient
## 289                                           Quite inefficient
## 290                                            Very inefficient
## 291                                            Very inefficient
## 292                                           Quite inefficient
## 293                                            Very inefficient
## 294                                            Very inefficient
## 295                                            Very inefficient
## 296                                            Very inefficient
## 297                                           Quite inefficient
## 298                                            Very inefficient
## 299                                            Very inefficient
## 300                                            Very inefficient
## 302                                           Quite inefficient
## 303                           Neither efficient nor inefficient
## 304                                              Very efficient
## 305                                            Very inefficient
## 306                                           Quite inefficient
## 307                                            Very inefficient
## 308                                             Quite efficient
## 309                                            Very inefficient
## 310                                           Quite inefficient
## 311                                            Very inefficient
## 312                                             Quite efficient
## 313                                            Very inefficient
## 314                           Neither efficient nor inefficient
## 315                           Neither efficient nor inefficient
## 316                                             Quite efficient
## 317                                           Quite inefficient
## 318                                           Quite inefficient
## 319                                           Quite inefficient
## 320                                             Quite efficient
## 321                                             Quite efficient
## 322                                             Quite efficient
## 323                                             Quite efficient
## 324                                             Quite efficient
## 325                                           Quite inefficient
## 326                                           Quite inefficient
## 327                                           Quite inefficient
## 328                                             Quite efficient
## 329                                              Very efficient
## 330                           Neither efficient nor inefficient
## 331                                             Quite efficient
## 332                           Neither efficient nor inefficient
## 333                                             Quite efficient
## 334                           Neither efficient nor inefficient
## 335                                             Quite efficient
## 336                                           Quite inefficient
## 337                           Neither efficient nor inefficient
## 338                                             Quite efficient
## 339                                              Very efficient
## 340                           Neither efficient nor inefficient
## 341                                             Quite efficient
## 342                                           Quite inefficient
## 343                                            Very inefficient
## 344                                             Quite efficient
## 345                           Neither efficient nor inefficient
## 346                                             Quite efficient
## 347                                             Quite efficient
## 348                                            Very inefficient
## 349                                             Quite efficient
## 350                                            Very inefficient
## 351                                             Quite efficient
## 352                                                  Don't Know
## 353                                             Quite efficient
## 354                                             Quite efficient
## 355                                             Quite efficient
## 356                           Neither efficient nor inefficient
## 357                           Neither efficient nor inefficient
## 358                                             Quite efficient
## 359                                             Quite efficient
## 360                                              Very efficient
## 361                                             Quite efficient
## 362                                             Quite efficient
## 363                                             Quite efficient
## 364                                             Quite efficient
## 365                                           Quite inefficient
## 366                                             Quite efficient
## 367                                             Quite efficient
## 368                           Neither efficient nor inefficient
## 369                                             Quite efficient
## 370                                             Quite efficient
## 371                                             Quite efficient
## 372                           Neither efficient nor inefficient
## 373                                             Quite efficient
## 374                           Neither efficient nor inefficient
## 375                                            Very inefficient
## 376                           Neither efficient nor inefficient
## 377                           Neither efficient nor inefficient
## 378                                             Quite efficient
## 379                                             Quite efficient
## 380                                             Quite efficient
## 381                                             Quite efficient
## 382                                             Quite efficient
## 383                                             Quite efficient
## 384                                             Quite efficient
## 385                                             Quite efficient
## 386                                             Quite efficient
## 387                                             Quite efficient
## 388                                             Quite efficient
## 389                                             Quite efficient
## 390                           Neither efficient nor inefficient
## 391                                             Quite efficient
## 392                                             Quite efficient
## 393                                             Quite efficient
## 394                                             Quite efficient
## 395                                             Quite efficient
## 396                                             Quite efficient
## 397                                             Quite efficient
## 398                                             Quite efficient
## 399                                             Quite efficient
## 400                                             Quite efficient
## 401                                             Quite efficient
## 402                           Neither efficient nor inefficient
## 403                           Neither efficient nor inefficient
## 404                                           Quite inefficient
## 405                                             Quite efficient
## 406                           Neither efficient nor inefficient
## 407                           Neither efficient nor inefficient
## 408                           Neither efficient nor inefficient
## 409                           Neither efficient nor inefficient
## 410                           Neither efficient nor inefficient
## 411                                             Quite efficient
## 412                           Neither efficient nor inefficient
## 413                                             Quite efficient
## 414                                             Quite efficient
## 415                                                  Don't Know
## 416                                             Quite efficient
## 417                                                        <NA>
## 418                                             Quite efficient
## 419                                             Quite efficient
## 420                                                        <NA>
## 421                           Neither efficient nor inefficient
## 422                                                  Don't Know
## 423                                                        <NA>
## 424                                             Quite efficient
## 425                           Neither efficient nor inefficient
## 426                           Neither efficient nor inefficient
## 427                                             Quite efficient
## 428                                                  Don't Know
## 429                                             Quite efficient
## 430                                           Quite inefficient
## 431                                             Quite efficient
## 432                                             Quite efficient
## 433                           Neither efficient nor inefficient
## 434                           Neither efficient nor inefficient
## 435                           Neither efficient nor inefficient
## 436                                             Quite efficient
## 437                           Neither efficient nor inefficient
## 438                                             Quite efficient
## 439                                             Quite efficient
## 440                           Neither efficient nor inefficient
## 441                           Neither efficient nor inefficient
## 442                                             Quite efficient
## 443                           Neither efficient nor inefficient
## 444                           Neither efficient nor inefficient
## 445                           Neither efficient nor inefficient
## 446                           Neither efficient nor inefficient
## 447                           Neither efficient nor inefficient
## 448                           Neither efficient nor inefficient
## 449                           Neither efficient nor inefficient
## 450                                                        <NA>
## 451                                             Quite efficient
## 452                                             Quite efficient
## 453                                             Quite efficient
## 454                                             Quite efficient
## 455                                           Quite inefficient
## 456                                             Quite efficient
## 457                                           Quite inefficient
## 458                                            Very inefficient
## 459                                             Quite efficient
## 460                                            Very inefficient
## 461                                                        <NA>
## 462                                             Quite efficient
## 463                                             Quite efficient
## 464                                             Quite efficient
## 465                                             Quite efficient
## 466                           Neither efficient nor inefficient
## 467                                              Very efficient
## 468                                            Very inefficient
## 469                           Neither efficient nor inefficient
## 470                                                  Don't Know
## 471                                           Quite inefficient
## 472                           Neither efficient nor inefficient
## 473                                            Very inefficient
## 474                                                  Don't Know
## 475                                           Quite inefficient
## 476                                                  Don't Know
## 477                                             Quite efficient
## 478                                            Very inefficient
## 479                                                  Don't Know
## 480                                                  Don't Know
## 481                                            Very inefficient
## 482                                           Quite inefficient
## 483                                            Very inefficient
## 484                                            Very inefficient
## 485                                             Quite efficient
## 486                                             Quite efficient
## 487                           Neither efficient nor inefficient
## 488                           Neither efficient nor inefficient
## 489                           Neither efficient nor inefficient
## 490                                           Quite inefficient
## 491                                           Quite inefficient
## 492                                           Quite inefficient
## 493                                            Very inefficient
## 494                           Neither efficient nor inefficient
## 495                                           Quite inefficient
## 496                                            Very inefficient
##      Corruption..Are.political.leaders.involved.
## 1                                       Everyone
## 2                                     Quite many
## 3                                     Quite many
## 4                                     Just a few
## 5                                           Some
## 6                                           Some
## 7                                     Just a few
## 8                                           Some
## 9                                     Just a few
## 10                                    Quite many
## 11                                    Just a few
## 12                                    Just a few
## 13                                    Quite many
## 14                                    Quite many
## 15                                    Quite many
## 16                                    Just a few
## 17                                    Just a few
## 18                                          Some
## 19                                          Some
## 20                                          Some
## 21                                    Quite many
## 22                                          Some
## 23                                    Quite many
## 24                                          Some
## 25                                      Everyone
## 26                                          Some
## 27                                          None
## 28                                          Some
## 29                                    Just a few
## 30                                          Some
## 31                                    Quite many
## 32                                    Quite many
## 33                                          Some
## 34                                    Quite many
## 35                                          Some
## 36                                    Just a few
## 37                                    Quite many
## 38                                    Just a few
## 39                                    Just a few
## 40                                    Quite many
## 41                                    Quite many
## 42                                    Quite many
## 43                                    Quite many
## 44                                    Quite many
## 45                                      Everyone
## 46                                    Quite many
## 47                                    Quite many
## 48                                          Some
## 49                                          Some
## 50                                    Quite many
## 51                                    Quite many
## 52                                    Quite many
## 53                                      Everyone
## 54                                    Quite many
## 55                                          Some
## 56                                    Just a few
## 57                                    Quite many
## 58                                      Everyone
## 59                                    Quite many
## 60                                      Everyone
## 61                                    Quite many
## 62                                      Everyone
## 63                                      Everyone
## 64                                    Quite many
## 65                                    Just a few
## 66                                    Quite many
## 67                                      Everyone
## 68                                    Quite many
## 69                                          Some
## 70                                          Some
## 71                                    Quite many
## 72                                          Some
## 73                                    Quite many
## 74                                    Quite many
## 75                                      Everyone
## 76                                      Everyone
## 77                                      Everyone
## 78                                    Quite many
## 79                                      Everyone
## 80                                      Everyone
## 81                                      Everyone
## 82                                      Everyone
## 83                                      Everyone
## 84                                      Everyone
## 85                                    Just a few
## 86                                    Just a few
## 87                                    Quite many
## 88                                    Just a few
## 89                                    Quite many
## 90                                      Everyone
## 91                                    Quite many
## 92                                    Quite many
## 93                                    Quite many
## 94                                    Just a few
## 95                                    Quite many
## 96                                    Quite many
## 97                                    Quite many
## 98                                    Quite many
## 99                                    Quite many
## 100                                     Everyone
## 101                                         Some
## 102                                         Some
## 103                                   Just a few
## 104                                         Some
## 105                                   Just a few
## 106                                   Just a few
## 107                                   Quite many
## 108                                   Just a few
## 109                                   Don't Know
## 110                                         Some
## 111                                         Some
## 112                                   Just a few
## 113                                         Some
## 114                                   Quite many
## 115                                         Some
## 116                                         Some
## 117                                     Everyone
## 118                                         Some
## 119                                         None
## 120                                   Quite many
## 121                                         Some
## 122                                   Quite many
## 123                                         <NA>
## 124                                   Quite many
## 125                                     Everyone
## 126                                         Some
## 127                                     Everyone
## 128                                         Some
## 129                                   Quite many
## 130                                   Quite many
## 131                                   Just a few
## 132                                         None
## 133                                   Quite many
## 134                                   Don't Know
## 135                                   Just a few
## 136                                   Don't Know
## 137                                         Some
## 138                                   Just a few
## 139                                   Just a few
## 140                                   Just a few
## 141                                         Some
## 142                                   Quite many
## 143                                   Just a few
## 144                                   Just a few
## 145                                         None
## 146                                         Some
## 147                                   Just a few
## 148                                         Some
## 149                                   Quite many
## 150                                         Some
## 151                                         Some
## 152                                   Quite many
## 153                                   Quite many
## 154                                         Some
## 155                                   Quite many
## 156                                   Quite many
## 157                                         Some
## 158                                   Just a few
## 159                                         Some
## 160                                         Some
## 161                                   Quite many
## 162                                         Some
## 163                                   Quite many
## 164                                   Quite many
## 165                                   Quite many
## 166                                   Quite many
## 167                                   Just a few
## 168                                   Quite many
## 169                                   Quite many
## 170                                   Quite many
## 171                                   Quite many
## 172                                         Some
## 173                                   Quite many
## 174                                   Quite many
## 175                                   Quite many
## 176                                   Just a few
## 177                                   Quite many
## 178                                   Quite many
## 179                                         Some
## 180                                   Quite many
## 181                                   Quite many
## 182                                   Just a few
## 183                                   Don't Know
## 184                                   Quite many
## 185                                   Just a few
## 186                                   Just a few
## 187                                   Just a few
## 188                                   Don't Know
## 189                                   Don't Know
## 190                                   Quite many
## 191                                   Quite many
## 192                                   Don't Know
## 193                                         Some
## 194                                   Don't Know
## 195                                   Just a few
## 196                                   Don't Know
## 197                                   Just a few
## 198                                   Don't Know
## 199                                         Some
## 200                                   Quite many
## 201                                         Some
## 202                                   Quite many
## 203                                   Quite many
## 204                                         Some
## 205                                   Quite many
## 206                                   Quite many
## 207                                   Quite many
## 208                                   Quite many
## 209                                   Quite many
## 210                                   Quite many
## 211                                         Some
## 212                                         Some
## 213                                         Some
## 214                                         Some
## 215                                         Some
## 216                                         Some
## 217                                         Some
## 218                                         Some
## 219                                   Quite many
## 220                                         Some
## 221                                         Some
## 222                                   Quite many
## 223                                   Quite many
## 224                                   Quite many
## 225                                         None
## 226                                         Some
## 227                                   Quite many
## 228                                   Quite many
## 229                                         Some
## 230                                         Some
## 231                                   Quite many
## 232                                   Quite many
## 233                                   Quite many
## 234                                   Quite many
## 235                                   Quite many
## 236                                   Quite many
## 237                                   Quite many
## 238                                   Quite many
## 239                                         Some
## 240                                   Quite many
## 241                                   Quite many
## 242                                   Quite many
## 243                                   Quite many
## 244                                   Quite many
## 245                                   Quite many
## 246                                   Quite many
## 247                                   Quite many
## 248                                   Quite many
## 249                                   Quite many
## 250                                   Quite many
## 251                                         Some
## 252                                         Some
## 253                                     Everyone
## 254                                     Everyone
## 255                                   Just a few
## 256                                         Some
## 257                                   Don't Know
## 258                                   Don't Know
## 259                                   Don't Know
## 260                                   Just a few
## 261                                         <NA>
## 262                                   Just a few
## 263                                   Just a few
## 264                                   Just a few
## 265                                   Quite many
## 266                                   Just a few
## 267                                         Some
## 268                                         Some
## 269                                   Quite many
## 270                                         Some
## 271                                   Just a few
## 272                                   Just a few
## 273                                   Just a few
## 274                                   Don't Know
## 275                                   Just a few
## 276                                   Don't Know
## 277                                   Don't Know
## 278                                   Just a few
## 279                                   Just a few
## 280                                   Just a few
## 281                                   Just a few
## 282                                   Just a few
## 283                                   Just a few
## 284                                   Just a few
## 285                                         Some
## 286                                   Just a few
## 287                                         Some
## 288                                   Don't Know
## 289                                   Quite many
## 290                                   Just a few
## 291                                         None
## 292                                         Some
## 293                                   Just a few
## 294                                   Just a few
## 295                                     Everyone
## 296                                   Don't Know
## 297                                         Some
## 298                                         Some
## 299                                   Don't Know
## 300                                         Some
## 302                                   Quite many
## 303                                   Just a few
## 304                                     Everyone
## 305                                     Everyone
## 306                                   Quite many
## 307                                     Everyone
## 308                                         Some
## 309                                         Some
## 310                                   Quite many
## 311                                   Just a few
## 312                                   Just a few
## 313                                     Everyone
## 314                                   Quite many
## 315                                   Don't Know
## 316                                     Everyone
## 317                                     Everyone
## 318                                     Everyone
## 319                                     Everyone
## 320                                         Some
## 321                                   Quite many
## 322                                         Some
## 323                                         Some
## 324                                   Quite many
## 325                                   Just a few
## 326                                         Some
## 327                                   Quite many
## 328                                         Some
## 329                                   Don't Know
## 330                                   Don't Know
## 331                                     Everyone
## 332                                   Just a few
## 333                                     Everyone
## 334                                     Everyone
## 335                                     Everyone
## 336                                         None
## 337                                         None
## 338                                     Everyone
## 339                                         Some
## 340                                     Everyone
## 341                                   Quite many
## 342                                         Some
## 343                                   Just a few
## 344                                   Just a few
## 345                                   Quite many
## 346                                   Quite many
## 347                                     Everyone
## 348                                         Some
## 349                                     Everyone
## 350                                     Everyone
## 351                                   Quite many
## 352                                   Quite many
## 353                                   Quite many
## 354                                   Just a few
## 355                                   Quite many
## 356                                   Just a few
## 357                                   Quite many
## 358                                   Just a few
## 359                                     Everyone
## 360                                         Some
## 361                                     Everyone
## 362                                   Just a few
## 363                                         Some
## 364                                   Quite many
## 365                                   Quite many
## 366                                   Quite many
## 367                                   Quite many
## 368                                         Some
## 369                                     Everyone
## 370                                   Just a few
## 371                                   Quite many
## 372                                   Quite many
## 373                                         Some
## 374                                   Just a few
## 375                                   Quite many
## 376                                   Just a few
## 377                                   Quite many
## 378                                   Just a few
## 379                                   Just a few
## 380                                   Quite many
## 381                                   Quite many
## 382                                   Quite many
## 383                                   Quite many
## 384                                   Quite many
## 385                                   Quite many
## 386                                         Some
## 387                                         Some
## 388                                         Some
## 389                                         Some
## 390                                   Quite many
## 391                                     Everyone
## 392                                   Quite many
## 393                                   Quite many
## 394                                   Quite many
## 395                                   Quite many
## 396                                   Just a few
## 397                                     Everyone
## 398                                   Quite many
## 399                                   Quite many
## 400                                   Quite many
## 401                                         Some
## 402                                   Don't Know
## 403                                   Don't Know
## 404                                         Some
## 405                                     Everyone
## 406                                   Don't Know
## 407                                   Don't Know
## 408                                   Just a few
## 409                                   Quite many
## 410                                   Just a few
## 411                                   Don't Know
## 412                                   Just a few
## 413                                   Just a few
## 414                                     Everyone
## 415                                   Don't Know
## 416                                   Don't Know
## 417                                   Don't Know
## 418                                   Just a few
## 419                                   Just a few
## 420                                   Quite many
## 421                                   Just a few
## 422                                   Don't Know
## 423                                   Don't Know
## 424                                   Don't Know
## 425                                   Quite many
## 426                                   Don't Know
## 427                                   Just a few
## 428                                   Don't Know
## 429                                   Don't Know
## 430                                   Don't Know
## 431                                         None
## 432                                   Don't Know
## 433                                   Just a few
## 434                                   Don't Know
## 435                                         Some
## 436                                   Just a few
## 437                                   Just a few
## 438                                   Quite many
## 439                                   Just a few
## 440                                   Don't Know
## 441                                         Some
## 442                                         Some
## 443                                   Just a few
## 444                                         Some
## 445                                   Just a few
## 446                                         Some
## 447                                         Some
## 448                                         Some
## 449                                         Some
## 450                                         Some
## 451                                         Some
## 452                                         Some
## 453                                         Some
## 454                                   Quite many
## 455                                         Some
## 456                                         Some
## 457                                   Just a few
## 458                                     Everyone
## 459                                   Quite many
## 460                                   Quite many
## 461                                         Some
## 462                                   Quite many
## 463                                         Some
## 464                                         Some
## 465                                   Quite many
## 466                                   Quite many
## 467                                     Everyone
## 468                                     Everyone
## 469                                   Quite many
## 470                                         Some
## 471                                         Some
## 472                                   Quite many
## 473                                   Quite many
## 474                                   Quite many
## 475                                     Everyone
## 476                                     Everyone
## 477                                     Everyone
## 478                                     Everyone
## 479                                     Everyone
## 480                                     Everyone
## 481                                     Everyone
## 482                                   Quite many
## 483                                   Quite many
## 484                                     Everyone
## 485                                   Just a few
## 486                                         Some
## 487                                   Quite many
## 488                                   Don't Know
## 489                                   Quite many
## 490                                         Some
## 491                                         Some
## 492                                   Just a few
## 493                                     Everyone
## 494                                   Just a few
## 495                                     Everyone
## 496                                         Some
##      Corruption..Are.civil.servants.involved.
## 1                                        Some
## 2                                        Some
## 3                                  Quite many
## 4                                  Just a few
## 5                                  Quite many
## 6                                        Some
## 7                                  Just a few
## 8                                        Some
## 9                                        Some
## 10                                 Quite many
## 11                                       Some
## 12                                       Some
## 13                                       Some
## 14                                 Quite many
## 15                                   Everyone
## 16                                 Just a few
## 17                                 Just a few
## 18                                 Just a few
## 19                                 Quite many
## 20                                 Quite many
## 21                                 Quite many
## 22                                 Quite many
## 23                                   Everyone
## 24                                 Quite many
## 25                                   Everyone
## 26                                       Some
## 27                                       None
## 28                                       Some
## 29                                 Just a few
## 30                                       Some
## 31                                       Some
## 32                                 Quite many
## 33                                       Some
## 34                                 Just a few
## 35                                 Just a few
## 36                                 Just a few
## 37                                       Some
## 38                                       Some
## 39                                 Just a few
## 40                                 Quite many
## 41                                 Quite many
## 42                                 Quite many
## 43                                 Quite many
## 44                                 Quite many
## 45                                   Everyone
## 46                                 Quite many
## 47                                 Quite many
## 48                                 Quite many
## 49                                 Quite many
## 50                                 Quite many
## 51                                       Some
## 52                                       Some
## 53                                 Quite many
## 54                                 Quite many
## 55                                 Just a few
## 56                                 Just a few
## 57                                       Some
## 58                                 Quite many
## 59                                       Some
## 60                                   Everyone
## 61                                       Some
## 62                                 Quite many
## 63                                 Quite many
## 64                                       Some
## 65                                 Just a few
## 66                                 Quite many
## 67                                 Quite many
## 68                                       Some
## 69                                       Some
## 70                                       Some
## 71                                       Some
## 72                                       Some
## 73                                       Some
## 74                                 Quite many
## 75                                       Some
## 76                                 Just a few
## 77                                       Some
## 78                                 Just a few
## 79                                 Quite many
## 80                                       Some
## 81                                 Just a few
## 82                                 Quite many
## 83                                 Quite many
## 84                                 Quite many
## 85                                       Some
## 86                                 Just a few
## 87                                       Some
## 88                                 Just a few
## 89                                       Some
## 90                                 Quite many
## 91                                       Some
## 92                                 Quite many
## 93                                       Some
## 94                                 Just a few
## 95                                       Some
## 96                                       Some
## 97                                       Some
## 98                                 Just a few
## 99                                       Some
## 100                                      Some
## 101                                      None
## 102                                Just a few
## 103                                      None
## 104                                      None
## 105                                Just a few
## 106                                      None
## 107                                Just a few
## 108                                Just a few
## 109                                Don't Know
## 110                                Just a few
## 111                                      Some
## 112                                      None
## 113                                Just a few
## 114                                      None
## 115                                      None
## 116                                      None
## 117                                Just a few
## 118                                      None
## 119                                      None
## 120                                      None
## 121                                Just a few
## 122                                Just a few
## 123                                      <NA>
## 124                                      Some
## 125                                Just a few
## 126                                Just a few
## 127                                      Some
## 128                                      None
## 129                                Just a few
## 130                                Quite many
## 131                                      None
## 132                                      None
## 133                                Just a few
## 134                                Don't Know
## 135                                      None
## 136                                Don't Know
## 137                                      None
## 138                                      None
## 139                                Just a few
## 140                                      None
## 141                                Just a few
## 142                                Quite many
## 143                                Just a few
## 144                                      None
## 145                                Just a few
## 146                                Just a few
## 147                                      None
## 148                                Just a few
## 149                                      None
## 150                                      None
## 151                                      Some
## 152                                      Some
## 153                                      Some
## 154                                      Some
## 155                                      Some
## 156                                      Some
## 157                                Just a few
## 158                                Just a few
## 159                                Just a few
## 160                                Quite many
## 161                                      Some
## 162                                Quite many
## 163                                      Some
## 164                                  Everyone
## 165                                      Some
## 166                                      Some
## 167                                Just a few
## 168                                      Some
## 169                                Quite many
## 170                                      Some
## 171                                Quite many
## 172                                      Some
## 173                                      Some
## 174                                      Some
## 175                                      Some
## 176                                Just a few
## 177                                Quite many
## 178                                      Some
## 179                                Quite many
## 180                                      Some
## 181                                      Some
## 182                                      Some
## 183                                Don't Know
## 184                                      Some
## 185                                Just a few
## 186                                      Some
## 187                                      Some
## 188                                Don't Know
## 189                                Don't Know
## 190                                Quite many
## 191                                      Some
## 192                                Don't Know
## 193                                Quite many
## 194                                Don't Know
## 195                                Just a few
## 196                                Don't Know
## 197                                Just a few
## 198                                Don't Know
## 199                                Just a few
## 200                                      Some
## 201                                Just a few
## 202                                      Some
## 203                                      Some
## 204                                Quite many
## 205                                      Some
## 206                                      Some
## 207                                      Some
## 208                                      Some
## 209                                      Some
## 210                                      Some
## 211                                Just a few
## 212                                Just a few
## 213                                Just a few
## 214                                Just a few
## 215                                Just a few
## 216                                Just a few
## 217                                Just a few
## 218                                Just a few
## 219                                      Some
## 220                                Quite many
## 221                                Just a few
## 222                                      Some
## 223                                      Some
## 224                                Just a few
## 225                                Just a few
## 226                                      Some
## 227                                      Some
## 228                                      Some
## 229                                Quite many
## 230                                Just a few
## 231                                Just a few
## 232                                      Some
## 233                                      Some
## 234                                      Some
## 235                                      Some
## 236                                      Some
## 237                                      Some
## 238                                      Some
## 239                                Just a few
## 240                                      Some
## 241                                Just a few
## 242                                      Some
## 243                                      Some
## 244                                Just a few
## 245                                      Some
## 246                                Just a few
## 247                                      Some
## 248                                      Some
## 249                                      Some
## 250                                      Some
## 251                                      Some
## 252                                      Some
## 253                                Don't Know
## 254                                Don't Know
## 255                                      Some
## 256                                Just a few
## 257                                Don't Know
## 258                                Don't Know
## 259                                Just a few
## 260                                      None
## 261                                      <NA>
## 262                                Just a few
## 263                                      Some
## 264                                      Some
## 265                                Quite many
## 266                                Just a few
## 267                                Just a few
## 268                                Just a few
## 269                                Quite many
## 270                                      Some
## 271                                Just a few
## 272                                Just a few
## 273                                      Some
## 274                                Don't Know
## 275                                Just a few
## 276                                Don't Know
## 277                                      None
## 278                                      Some
## 279                                Just a few
## 280                                Just a few
## 281                                      Some
## 282                                Just a few
## 283                                      Some
## 284                                      Some
## 285                                      Some
## 286                                      Some
## 287                                      Some
## 288                                Don't Know
## 289                                Quite many
## 290                                Just a few
## 291                                Just a few
## 292                                Quite many
## 293                                Just a few
## 294                                Just a few
## 295                                Quite many
## 296                                Don't Know
## 297                                      Some
## 298                                      Some
## 299                                Don't Know
## 300                                Just a few
## 302                                Quite many
## 303                                Just a few
## 304                                Quite many
## 305                                  Everyone
## 306                                      Some
## 307                                  Everyone
## 308                                      Some
## 309                                      Some
## 310                                Quite many
## 311                                Just a few
## 312                                Just a few
## 313                                  Everyone
## 314                                Quite many
## 315                                Don't Know
## 316                                  Everyone
## 317                                  Everyone
## 318                                      Some
## 319                                Quite many
## 320                                Just a few
## 321                                      Some
## 322                                      Some
## 323                                      Some
## 324                                Quite many
## 325                                Just a few
## 326                                      Some
## 327                                Quite many
## 328                                      Some
## 329                                Don't Know
## 330                                Don't Know
## 331                                  Everyone
## 332                                Quite many
## 333                                  Everyone
## 334                                      Some
## 335                                      <NA>
## 336                                Quite many
## 337                                  Everyone
## 338                                  Everyone
## 339                                Just a few
## 340                                  Everyone
## 341                                Quite many
## 342                                Quite many
## 343                                      Some
## 344                                      Some
## 345                                      Some
## 346                                Quite many
## 347                                      Some
## 348                                Just a few
## 349                                      Some
## 350                                Quite many
## 351                                Quite many
## 352                                Don't Know
## 353                                      Some
## 354                                Just a few
## 355                                Quite many
## 356                                Just a few
## 357                                      Some
## 358                                Quite many
## 359                                Quite many
## 360                                Quite many
## 361                                      Some
## 362                                      Some
## 363                                Quite many
## 364                                      Some
## 365                                Don't Know
## 366                                  Everyone
## 367                                Quite many
## 368                                      Some
## 369                                Quite many
## 370                                Just a few
## 371                                Quite many
## 372                                      Some
## 373                                      Some
## 374                                Just a few
## 375                                  Everyone
## 376                                Just a few
## 377                                      Some
## 378                                      None
## 379                                  Everyone
## 380                                Quite many
## 381                                Don't Know
## 382                                Quite many
## 383                                Quite many
## 384                                Quite many
## 385                                Quite many
## 386                                      Some
## 387                                      Some
## 388                                      Some
## 389                                      Some
## 390                                Quite many
## 391                                  Everyone
## 392                                Quite many
## 393                                Quite many
## 394                                Quite many
## 395                                Quite many
## 396                                      Some
## 397                                Quite many
## 398                                Quite many
## 399                                Quite many
## 400                                Quite many
## 401                                      Some
## 402                                Don't Know
## 403                                Don't Know
## 404                                Don't Know
## 405                                  Everyone
## 406                                Don't Know
## 407                                Don't Know
## 408                                Just a few
## 409                                      Some
## 410                                Just a few
## 411                                Don't Know
## 412                                Just a few
## 413                                Just a few
## 414                                Don't Know
## 415                                Don't Know
## 416                                Don't Know
## 417                                Don't Know
## 418                                Just a few
## 419                                Just a few
## 420                                Quite many
## 421                                Just a few
## 422                                Don't Know
## 423                                Don't Know
## 424                                Don't Know
## 425                                Quite many
## 426                                Don't Know
## 427                                Just a few
## 428                                Don't Know
## 429                                Don't Know
## 430                                Don't Know
## 431                                      None
## 432                                Don't Know
## 433                                Just a few
## 434                                Don't Know
## 435                                      Some
## 436                                Just a few
## 437                                Just a few
## 438                                      Some
## 439                                Just a few
## 440                                Don't Know
## 441                                      Some
## 442                                      Some
## 443                                      Some
## 444                                      Some
## 445                                Just a few
## 446                                      Some
## 447                                      Some
## 448                                      Some
## 449                                      Some
## 450                                      Some
## 451                                      Some
## 452                                      Some
## 453                                      Some
## 454                                Quite many
## 455                                      <NA>
## 456                                Quite many
## 457                                      Some
## 458                                Quite many
## 459                                Quite many
## 460                                Just a few
## 461                                Don't Know
## 462                                Just a few
## 463                                Quite many
## 464                                Quite many
## 465                                Quite many
## 466                                  Everyone
## 467                                      Some
## 468                                  Everyone
## 469                                      Some
## 470                                Just a few
## 471                                Quite many
## 472                                Quite many
## 473                                      Some
## 474                                Quite many
## 475                                Quite many
## 476                                  Everyone
## 477                                Quite many
## 478                                  Everyone
## 479                                  Everyone
## 480                                Quite many
## 481                                  Everyone
## 482                                Quite many
## 483                                Quite many
## 484                                  Everyone
## 485                                Just a few
## 486                                Just a few
## 487                                      Some
## 488                                Don't Know
## 489                                Just a few
## 490                                Quite many
## 491                                Quite many
## 492                                Just a few
## 493                                  Everyone
## 494                                      Some
## 495                                  Everyone
## 496                                Just a few
##      Corruption..In.recent.years.have.you.or.your.family.asked.by.bureaucrats.about.bribe.
## 1                                                                              Quite often
## 2                                                                              Quite often
## 3                                                                                    Never
## 4                                                                                   Seldom
## 5                                                                                    Never
## 6                                                                                    Never
## 7                                                                                Sometimes
## 8                                                                                    Never
## 9                                                                                    Never
## 10                                                                                   Never
## 11                                                                                   Never
## 12                                                                               Sometimes
## 13                                                                                   Never
## 14                                                                             Quite often
## 15                                                                               Sometimes
## 16                                                                              Don't Know
## 17                                                                               Sometimes
## 18                                                                              Don't Know
## 19                                                                              Don't Know
## 20                                                                               Sometimes
## 21                                                                              Don't Know
## 22                                                                                  Seldom
## 23                                                                             Quite often
## 24                                                                               Sometimes
## 25                                                                               Sometimes
## 26                                                                              Don't Know
## 27                                                                                   Never
## 28                                                                              Don't Know
## 29                                                                              Don't Know
## 30                                                                                   Never
## 31                                                                                   Never
## 32                                                                                    <NA>
## 33                                                                                  Seldom
## 34                                                                                   Never
## 35                                                                                  Seldom
## 36                                                                                   Never
## 37                                                                                   Never
## 38                                                                             Quite often
## 39                                                                                   Never
## 40                                                                                   Never
## 41                                                                                   Never
## 42                                                                               Sometimes
## 43                                                                                   Never
## 44                                                                             Quite often
## 45                                                                               Sometimes
## 46                                                                              Very often
## 47                                                                               Sometimes
## 48                                                                              Don't Know
## 49                                                                              Don't Know
## 50                                                                              Don't Know
## 51                                                                               Sometimes
## 52                                                                                  Seldom
## 53                                                                               Sometimes
## 54                                                                               Sometimes
## 55                                                                               Sometimes
## 56                                                                              Don't Know
## 57                                                                               Sometimes
## 58                                                                                   Never
## 59                                                                               Sometimes
## 60                                                                               Sometimes
## 61                                                                               Sometimes
## 62                                                                               Sometimes
## 63                                                                               Sometimes
## 64                                                                               Sometimes
## 65                                                                               Sometimes
## 66                                                                               Sometimes
## 67                                                                               Sometimes
## 68                                                                               Sometimes
## 69                                                                               Sometimes
## 70                                                                               Sometimes
## 71                                                                               Sometimes
## 72                                                                               Sometimes
## 73                                                                               Sometimes
## 74                                                                               Sometimes
## 75                                                                               Sometimes
## 76                                                                               Sometimes
## 77                                                                               Sometimes
## 78                                                                               Sometimes
## 79                                                                               Sometimes
## 80                                                                               Sometimes
## 81                                                                               Sometimes
## 82                                                                               Sometimes
## 83                                                                               Sometimes
## 84                                                                               Sometimes
## 85                                                                               Sometimes
## 86                                                                              Don't Know
## 87                                                                               Sometimes
## 88                                                                               Sometimes
## 89                                                                               Sometimes
## 90                                                                               Sometimes
## 91                                                                               Sometimes
## 92                                                                             Quite often
## 93                                                                               Sometimes
## 94                                                                             Quite often
## 95                                                                                  Seldom
## 96                                                                                  Seldom
## 97                                                                             Quite often
## 98                                                                             Quite often
## 99                                                                             Quite often
## 100                                                                                  Never
## 101                                                                              Sometimes
## 102                                                                             Don't Know
## 103                                                                                  Never
## 104                                                                              Sometimes
## 105                                                                              Sometimes
## 106                                                                             Don't Know
## 107                                                                            Quite often
## 108                                                                                  Never
## 109                                                                              Sometimes
## 110                                                                              Sometimes
## 111                                                                              Sometimes
## 112                                                                            Quite often
## 113                                                                              Sometimes
## 114                                                                                  Never
## 115                                                                              Sometimes
## 116                                                                             Don't Know
## 117                                                                              Sometimes
## 118                                                                             Don't Know
## 119                                                                              Sometimes
## 120                                                                             Don't Know
## 121                                                                              Sometimes
## 122                                                                                  Never
## 123                                                                              Sometimes
## 124                                                                             Don't Know
## 125                                                                                  Never
## 126                                                                              Sometimes
## 127                                                                              Sometimes
## 128                                                                             Don't Know
## 129                                                                              Sometimes
## 130                                                                                  Never
## 131                                                                            Quite often
## 132                                                                              Sometimes
## 133                                                                             Don't Know
## 134                                                                             Don't Know
## 135                                                                              Sometimes
## 136                                                                             Don't Know
## 137                                                                                  Never
## 138                                                                              Sometimes
## 139                                                                                  Never
## 140                                                                              Sometimes
## 141                                                                              Sometimes
## 142                                                                              Sometimes
## 143                                                                              Sometimes
## 144                                                                             Don't Know
## 145                                                                              Sometimes
## 146                                                                                 Seldom
## 147                                                                            Quite often
## 148                                                                              Sometimes
## 149                                                                                 Seldom
## 150                                                                                 Seldom
## 151                                                                                 Seldom
## 152                                                                                  Never
## 153                                                                                  Never
## 154                                                                                 Seldom
## 155                                                                                  Never
## 156                                                                                  Never
## 157                                                                                  Never
## 158                                                                                  Never
## 159                                                                                  Never
## 160                                                                                  Never
## 161                                                                                  Never
## 162                                                                                  Never
## 163                                                                                  Never
## 164                                                                                  Never
## 165                                                                                  Never
## 166                                                                              Sometimes
## 167                                                                                  Never
## 168                                                                                  Never
## 169                                                                                  Never
## 170                                                                                  Never
## 171                                                                                  Never
## 172                                                                                  Never
## 173                                                                                  Never
## 174                                                                                  Never
## 175                                                                                  Never
## 176                                                                                  Never
## 177                                                                              Sometimes
## 178                                                                                  Never
## 179                                                                                  Never
## 180                                                                              Sometimes
## 181                                                                                  Never
## 182                                                                                  Never
## 183                                                                                  Never
## 184                                                                                 Seldom
## 185                                                                                  Never
## 186                                                                                  Never
## 187                                                                                  Never
## 188                                                                                  Never
## 189                                                                                  Never
## 190                                                                                  Never
## 191                                                                                  Never
## 192                                                                             Don't Know
## 193                                                                                  Never
## 194                                                                                  Never
## 195                                                                                  Never
## 196                                                                                  Never
## 197                                                                                  Never
## 198                                                                                  Never
## 199                                                                                  Never
## 200                                                                                  Never
## 201                                                                                  Never
## 202                                                                              Sometimes
## 203                                                                              Sometimes
## 204                                                                            Quite often
## 205                                                                              Sometimes
## 206                                                                            Quite often
## 207                                                                                 Seldom
## 208                                                                              Sometimes
## 209                                                                            Quite often
## 210                                                                              Sometimes
## 211                                                                              Sometimes
## 212                                                                              Sometimes
## 213                                                                              Sometimes
## 214                                                                              Sometimes
## 215                                                                              Sometimes
## 216                                                                              Sometimes
## 217                                                                                 Seldom
## 218                                                                              Sometimes
## 219                                                                              Sometimes
## 220                                                                                  Never
## 221                                                                                  Never
## 222                                                                                  Never
## 223                                                                                  Never
## 224                                                                                  Never
## 225                                                                              Sometimes
## 226                                                                                  Never
## 227                                                                              Sometimes
## 228                                                                                  Never
## 229                                                                                 Seldom
## 230                                                                                 Seldom
## 231                                                                              Sometimes
## 232                                                                            Quite often
## 233                                                                            Quite often
## 234                                                                            Quite often
## 235                                                                            Quite often
## 236                                                                              Sometimes
## 237                                                                              Sometimes
## 238                                                                              Sometimes
## 239                                                                            Quite often
## 240                                                                            Quite often
## 241                                                                              Sometimes
## 242                                                                                 Seldom
## 243                                                                              Sometimes
## 244                                                                            Quite often
## 245                                                                              Sometimes
## 246                                                                              Sometimes
## 247                                                                              Sometimes
## 248                                                                              Sometimes
## 249                                                                              Sometimes
## 250                                                                              Sometimes
## 251                                                                              Sometimes
## 252                                                                              Sometimes
## 253                                                                                  Never
## 254                                                                             Very often
## 255                                                                                  Never
## 256                                                                             Don't Know
## 257                                                                             Don't Know
## 258                                                                                  Never
## 259                                                                                  Never
## 260                                                                             Don't Know
## 261                                                                                  Never
## 262                                                                                  Never
## 263                                                                             Don't Know
## 264                                                                                  Never
## 265                                                                             Don't Know
## 266                                                                                  Never
## 267                                                                              Sometimes
## 268                                                                             Don't Know
## 269                                                                            Quite often
## 270                                                                            Quite often
## 271                                                                                  Never
## 272                                                                                  Never
## 273                                                                             Don't Know
## 274                                                                             Don't Know
## 275                                                                              Sometimes
## 276                                                                             Don't Know
## 277                                                                             Don't Know
## 278                                                                              Sometimes
## 279                                                                             Don't Know
## 280                                                                                 Seldom
## 281                                                                              Sometimes
## 282                                                                              Sometimes
## 283                                                                                  Never
## 284                                                                                 Seldom
## 285                                                                              Sometimes
## 286                                                                                  Never
## 287                                                                                  Never
## 288                                                                                  Never
## 289                                                                             Don't Know
## 290                                                                              Sometimes
## 291                                                                                  Never
## 292                                                                              Sometimes
## 293                                                                              Sometimes
## 294                                                                             Don't Know
## 295                                                                              Sometimes
## 296                                                                             Don't Know
## 297                                                                                  Never
## 298                                                                              Sometimes
## 299                                                                                  Never
## 300                                                                                  Never
## 302                                                                             Don't Know
## 303                                                                              Sometimes
## 304                                                                            Quite often
## 305                                                                             Don't Know
## 306                                                                                 Seldom
## 307                                                                            Quite often
## 308                                                                             Don't Know
## 309                                                                             Don't Know
## 310                                                                             Don't Know
## 311                                                                             Don't Know
## 312                                                                              Sometimes
## 313                                                                            Quite often
## 314                                                                             Don't Know
## 315                                                                             Don't Know
## 316                                                                              Sometimes
## 317                                                                             Don't Know
## 318                                                                             Don't Know
## 319                                                                                  Never
## 320                                                                              Sometimes
## 321                                                                                 Seldom
## 322                                                                             Don't Know
## 323                                                                             Don't Know
## 324                                                                             Don't Know
## 325                                                                             Don't Know
## 326                                                                             Don't Know
## 327                                                                             Don't Know
## 328                                                                             Don't Know
## 329                                                                             Don't Know
## 330                                                                             Don't Know
## 331                                                                             Don't Know
## 332                                                                             Don't Know
## 333                                                                             Don't Know
## 334                                                                             Don't Know
## 335                                                                             Don't Know
## 336                                                                             Don't Know
## 337                                                                             Don't Know
## 338                                                                             Don't Know
## 339                                                                                  Never
## 340                                                                             Don't Know
## 341                                                                            Quite often
## 342                                                                            Quite often
## 343                                                                                  Never
## 344                                                                                 Seldom
## 345                                                                              Sometimes
## 346                                                                             Don't Know
## 347                                                                            Quite often
## 348                                                                              Sometimes
## 349                                                                              Sometimes
## 350                                                                             Don't Know
## 351                                                                            Quite often
## 352                                                                             Don't Know
## 353                                                                              Sometimes
## 354                                                                             Don't Know
## 355                                                                            Quite often
## 356                                                                            Quite often
## 357                                                                             Don't Know
## 358                                                                             Don't Know
## 359                                                                              Sometimes
## 360                                                                                  Never
## 361                                                                            Quite often
## 362                                                                             Don't Know
## 363                                                                            Quite often
## 364                                                                                 Seldom
## 365                                                                             Don't Know
## 366                                                                              Sometimes
## 367                                                                             Don't Know
## 368                                                                             Don't Know
## 369                                                                              Sometimes
## 370                                                                             Don't Know
## 371                                                                             Don't Know
## 372                                                                              Sometimes
## 373                                                                                  Never
## 374                                                                                  Never
## 375                                                                             Don't Know
## 376                                                                                  Never
## 377                                                                             Don't Know
## 378                                                                                  Never
## 379                                                                             Don't Know
## 380                                                                             Don't Know
## 381                                                                             Don't Know
## 382                                                                             Don't Know
## 383                                                                              Sometimes
## 384                                                                              Sometimes
## 385                                                                              Sometimes
## 386                                                                             Don't Know
## 387                                                                              Sometimes
## 388                                                                              Sometimes
## 389                                                                             Don't Know
## 390                                                                             Don't Know
## 391                                                                              Sometimes
## 392                                                                             Don't Know
## 393                                                                             Don't Know
## 394                                                                              Sometimes
## 395                                                                              Sometimes
## 396                                                                            Quite often
## 397                                                                             Very often
## 398                                                                             Don't Know
## 399                                                                             Don't Know
## 400                                                                             Don't Know
## 401                                                                              Sometimes
## 402                                                                             Don't Know
## 403                                                                             Don't Know
## 404                                                                            Quite often
## 405                                                                              Sometimes
## 406                                                                             Don't Know
## 407                                                                            Quite often
## 408                                                                             Don't Know
## 409                                                                             Don't Know
## 410                                                                             Don't Know
## 411                                                                             Don't Know
## 412                                                                             Don't Know
## 413                                                                             Don't Know
## 414                                                                             Don't Know
## 415                                                                             Don't Know
## 416                                                                             Don't Know
## 417                                                                             Don't Know
## 418                                                                             Don't Know
## 419                                                                             Don't Know
## 420                                                                             Don't Know
## 421                                                                             Don't Know
## 422                                                                             Don't Know
## 423                                                                             Don't Know
## 424                                                                             Don't Know
## 425                                                                             Don't Know
## 426                                                                             Don't Know
## 427                                                                             Don't Know
## 428                                                                             Don't Know
## 429                                                                             Don't Know
## 430                                                                             Don't Know
## 431                                                                             Don't Know
## 432                                                                             Don't Know
## 433                                                                             Don't Know
## 434                                                                             Don't Know
## 435                                                                             Don't Know
## 436                                                                             Don't Know
## 437                                                                             Don't Know
## 438                                                                             Don't Know
## 439                                                                            Quite often
## 440                                                                             Don't Know
## 441                                                                             Don't Know
## 442                                                                             Don't Know
## 443                                                                             Don't Know
## 444                                                                             Don't Know
## 445                                                                             Don't Know
## 446                                                                                  Never
## 447                                                                                  Never
## 448                                                                                  Never
## 449                                                                                  Never
## 450                                                                                  Never
## 451                                                                                  Never
## 452                                                                                  Never
## 453                                                                                  Never
## 454                                                                            Quite often
## 455                                                                              Sometimes
## 456                                                                             Very often
## 457                                                                             Don't Know
## 458                                                                             Don't Know
## 459                                                                              Sometimes
## 460                                                                             Very often
## 461                                                                                  Never
## 462                                                                                  Never
## 463                                                                             Don't Know
## 464                                                                             Don't Know
## 465                                                                              Sometimes
## 466                                                                             Very often
## 467                                                                              Sometimes
## 468                                                                            Quite often
## 469                                                                             Don't Know
## 470                                                                              Sometimes
## 471                                                                                  Never
## 472                                                                            Quite often
## 473                                                                              Sometimes
## 474                                                                             Don't Know
## 475                                                                              Sometimes
## 476                                                                             Don't Know
## 477                                                                              Sometimes
## 478                                                                            Quite often
## 479                                                                             Don't Know
## 480                                                                             Don't Know
## 481                                                                            Quite often
## 482                                                                             Don't Know
## 483                                                                             Don't Know
## 484                                                                             Don't Know
## 485                                                                                  Never
## 486                                                                              Sometimes
## 487                                                                             Don't Know
## 488                                                                             Don't Know
## 489                                                                                  Never
## 490                                                                              Sometimes
## 491                                                                              Sometimes
## 492                                                                                  Never
## 493                                                                             Don't Know
## 494                                                                             Don't Know
## 495                                                                             Very often
## 496                                                                              Sometimes
##       Interest.in.politics Elections..Which.party.will.you.vote.for.
## 1      Somewhat interested                                      <NA>
## 2      Somewhat interested                           Nepali Congress
## 3      Somewhat interested                                 CPN (UML)
## 4    Not at all interested                           Nepali Congress
## 5           Not interested                           Nepali Congress
## 6      Somewhat interested           Rastra Prajatantra Party, Nepal
## 7          Very interested                              CPN (Maoist)
## 8           Not interested                  Sanghiya Samajbadi Party
## 9           Not interested                           Nepali Congress
## 10          Not interested                           Nepali Congress
## 11          Not interested                  Sanghiya Samajbadi Party
## 12     Somewhat interested                           Nepali Congress
## 13     Somewhat interested           Rastra Prajatantra Party, Nepal
## 14     Somewhat interested                                Don't Know
## 15     Somewhat interested                                 CPN (UML)
## 16     Somewhat interested                           Nepali Congress
## 17     Somewhat interested                           Nepali Congress
## 18          Not interested                                 CPN (UML)
## 19     Somewhat interested                           Nepali Congress
## 20              Don't Know                                Don't Know
## 21     Somewhat interested                           Nepali Congress
## 22     Somewhat interested                           Nepali Congress
## 23          Not interested                           Nepali Congress
## 24     Somewhat interested                                 CPN (UML)
## 25          Not interested                                 CPN (UML)
## 26     Somewhat interested                Rastriya Prajatantra Party
## 27         Very interested                                 CPN (UML)
## 28     Somewhat interested                                      <NA>
## 29              Don't Know                                Don't Know
## 30     Somewhat interested                                 CPN (UML)
## 31          Not interested                           Nepali Congress
## 32                    <NA>                                      <NA>
## 33     Somewhat interested                                 CPN (UML)
## 34     Somewhat interested                                 CPN (UML)
## 35         Very interested                           Nepali Congress
## 36     Somewhat interested                                Don't Know
## 37              Don't Know                             UCPN (Maoist)
## 38     Somewhat interested                           Nepali Congress
## 39     Somewhat interested                Rastriya Prajatantra Party
## 40     Somewhat interested                                 CPN (UML)
## 41     Somewhat interested                           Nepali Congress
## 42     Somewhat interested                                 CPN (UML)
## 43         Very interested                             UCPN (Maoist)
## 44     Somewhat interested                           Nepali Congress
## 45              Don't Know                           Nepali Congress
## 46         Very interested                                      <NA>
## 47     Somewhat interested                  Sanghiya Samajbadi Party
## 48     Somewhat interested                           Nepali Congress
## 49     Somewhat interested                           Nepali Congress
## 50          Not interested                                Don't Know
## 51              Don't Know                                Don't Know
## 52   Not at all interested                                Don't Know
## 53     Somewhat interested                           Nepali Congress
## 54          Not interested                                 CPN (UML)
## 55     Somewhat interested                                 CPN (UML)
## 56     Somewhat interested                           Nepali Congress
## 57     Somewhat interested                                 CPN (UML)
## 58     Somewhat interested                                 CPN (UML)
## 59     Somewhat interested                                 CPN (UML)
## 60     Somewhat interested                                 CPN (UML)
## 61     Somewhat interested                                 CPN (UML)
## 62     Somewhat interested                           Nepali Congress
## 63     Somewhat interested                                 CPN (UML)
## 64     Somewhat interested                                 CPN (UML)
## 65     Somewhat interested                                 CPN (UML)
## 66     Somewhat interested                                 CPN (UML)
## 67     Somewhat interested                           Nepali Congress
## 68     Somewhat interested                           Nepali Congress
## 69          Not interested                                Don't Know
## 70          Not interested                                Don't Know
## 71     Somewhat interested           Rastra Prajatantra Party, Nepal
## 72     Somewhat interested                                 CPN (UML)
## 73     Somewhat interested                           Nepali Congress
## 74     Somewhat interested                                 CPN (UML)
## 75     Somewhat interested                           Nepali Congress
## 76     Somewhat interested                                 CPN (UML)
## 77   Not at all interested                                Don't Know
## 78     Somewhat interested                           Nepali Congress
## 79     Somewhat interested                                 CPN (UML)
## 80     Somewhat interested                                 CPN (UML)
## 81     Somewhat interested                           Nepali Congress
## 82     Somewhat interested                           Nepali Congress
## 83     Somewhat interested                                 CPN (UML)
## 84     Somewhat interested                                 CPN (UML)
## 85              Don't Know                                Don't Know
## 86     Somewhat interested                           Nepali Congress
## 87     Somewhat interested                Rastriya Prajatantra Party
## 88     Somewhat interested                           Nepali Congress
## 89     Somewhat interested                           Nepali Congress
## 90     Somewhat interested                           Nepali Congress
## 91     Somewhat interested                           Nepali Congress
## 92     Somewhat interested                             UCPN (Maoist)
## 93     Somewhat interested                                 CPN (UML)
## 94     Somewhat interested                           Nepali Congress
## 95     Somewhat interested                                 CPN (UML)
## 96     Somewhat interested                           Nepali Congress
## 97          Not interested                                 CPN (UML)
## 98     Somewhat interested                                 CPN (UML)
## 99     Somewhat interested                                Don't Know
## 100         Not interested                           Nepali Congress
## 101         Not interested                                 CPN (UML)
## 102  Not at all interested                                 CPN (UML)
## 103    Somewhat interested                                 CPN (UML)
## 104         Not interested                             UCPN (Maoist)
## 105    Somewhat interested                           Nepali Congress
## 106  Not at all interested                                 CPN (UML)
## 107         Not interested                                 CPN (UML)
## 108        Very interested                                 CPN (UML)
## 109  Not at all interested                                 CPN (UML)
## 110         Not interested                             UCPN (Maoist)
## 111         Not interested                             UCPN (Maoist)
## 112         Not interested                           Nepali Congress
## 113  Not at all interested                           Nepali Congress
## 114         Not interested                                 CPN (UML)
## 115    Somewhat interested                             UCPN (Maoist)
## 116         Not interested                           Nepali Congress
## 117         Not interested                           Nepali Congress
## 118         Not interested                           Nepali Congress
## 119         Not interested                             UCPN (Maoist)
## 120    Somewhat interested                             UCPN (Maoist)
## 121         Not interested            National People's front, Nepal
## 122    Somewhat interested                 Madheshi Janadhikar Forum
## 123         Not interested                                 CPN (UML)
## 124         Not interested     Madheshi janadhikar Forum, Democratic
## 125        Very interested            National People's front, Nepal
## 126  Not at all interested           Rastra Prajatantra Party, Nepal
## 127  Not at all interested                                 CPN (UML)
## 128                   <NA>            National People's front, Nepal
## 129  Not at all interested                                 CPN (UML)
## 130        Very interested                 Madheshi Janadhikar Forum
## 131         Not interested                                 CPN (UML)
## 132  Not at all interested     Madheshi janadhikar Forum, Democratic
## 133         Not interested                             UCPN (Maoist)
## 134  Not at all interested                             UCPN (Maoist)
## 135         Not interested                              CPN (Maoist)
## 136             Don't Know                             UCPN (Maoist)
## 137         Not interested                Rastriya Janamorcha, Nepal
## 138  Not at all interested                                 CPN (UML)
## 139         Not interested                             UCPN (Maoist)
## 140         Not interested           Rastra Prajatantra Party, Nepal
## 141         Not interested                Rastriya Janamorcha, Nepal
## 142         Not interested                                 CPN (UML)
## 143    Somewhat interested                             UCPN (Maoist)
## 144    Somewhat interested                                 CPN (UML)
## 145    Somewhat interested                                 CPN (UML)
## 146         Not interested           Rastra Prajatantra Party, Nepal
## 147         Not interested                                 CPN (UML)
## 148  Not at all interested                           Nepali Congress
## 149         Not interested                           Nepali Congress
## 150    Somewhat interested           Rastra Prajatantra Party, Nepal
## 151             Don't Know     Madheshi janadhikar Forum, Democratic
## 152    Somewhat interested     Madheshi janadhikar Forum, Democratic
## 153  Not at all interested                           Nepali Congress
## 154  Not at all interested     Madheshi janadhikar Forum, Democratic
## 155    Somewhat interested                  Sanghiya Samajbadi Party
## 156  Not at all interested                  Sanghiya Samajbadi Party
## 157         Not interested                           Nepali Congress
## 158    Somewhat interested                              CPN (Maoist)
## 159    Somewhat interested                  Sanghiya Samajbadi Party
## 160  Not at all interested     Madheshi janadhikar Forum, Democratic
## 161    Somewhat interested                           Nepali Congress
## 162  Not at all interested                              CPN (Maoist)
## 163  Not at all interested                 Madheshi Janadhikar Forum
## 164  Not at all interested     Madheshi janadhikar Forum, Democratic
## 165        Very interested                           Nepali Congress
## 166         Not interested                  Sanghiya Samajbadi Party
## 167    Somewhat interested                           Nepali Congress
## 168    Somewhat interested                           Nepali Congress
## 169  Not at all interested                                Don't Know
## 170  Not at all interested                              CPN (Maoist)
## 171  Not at all interested                                Don't Know
## 172  Not at all interested                 Madheshi Janadhikar Forum
## 173  Not at all interested                                Don't Know
## 174  Not at all interested                  Sanghiya Samajbadi Party
## 175  Not at all interested                                 CPN (UML)
## 176  Not at all interested                           Nepali Congress
## 177  Not at all interested                  Sanghiya Samajbadi Party
## 178  Not at all interested                           Nepali Congress
## 179  Not at all interested                                 CPN (UML)
## 180    Somewhat interested                           Nepali Congress
## 181  Not at all interested     Madheshi janadhikar Forum, Democratic
## 182  Not at all interested                                Don't Know
## 183  Not at all interested                                 CPN (UML)
## 184    Somewhat interested                                 CPN (UML)
## 185    Somewhat interested                           Nepali Congress
## 186  Not at all interested     Madheshi janadhikar Forum, Democratic
## 187  Not at all interested                 Madheshi Janadhikar Forum
## 188  Not at all interested                                 CPN (UML)
## 189  Not at all interested                 Madheshi Janadhikar Forum
## 190  Not at all interested                           Nepali Congress
## 191  Not at all interested                           Nepali Congress
## 192             Don't Know                                Don't Know
## 193  Not at all interested                           Nepali Congress
## 194  Not at all interested                                Don't Know
## 195  Not at all interested                              CPN (Maoist)
## 196        Very interested                           Nepali Congress
## 197    Somewhat interested                              CPN (Maoist)
## 198  Not at all interested     Madheshi janadhikar Forum, Democratic
## 199  Not at all interested                           Nepali Congress
## 200        Very interested                                 CPN (UML)
## 201    Somewhat interested                           Nepali Congress
## 202    Somewhat interested           Rastra Prajatantra Party, Nepal
## 203  Not at all interested                                 CPN (UML)
## 204         Not interested                 Madheshi Janadhikar Forum
## 205    Somewhat interested                           Nepali Congress
## 206  Not at all interested            National People's front, Nepal
## 207         Not interested            National People's front, Nepal
## 208         Not interested            National People's front, Nepal
## 209         Not interested     Madheshi janadhikar Forum, Democratic
## 210         Not interested                Rastriya Prajatantra Party
## 211         Not interested     Madheshi janadhikar Forum, Democratic
## 212         Not interested            National People's front, Nepal
## 213         Not interested            National People's front, Nepal
## 214         Not interested            National People's front, Nepal
## 215         Not interested            National People's front, Nepal
## 216         Not interested            National People's front, Nepal
## 217         Not interested            National People's front, Nepal
## 218         Not interested                           Nepali Congress
## 219  Not at all interested                           Nepali Congress
## 220        Very interested                           Nepali Congress
## 221    Somewhat interested     Madheshi janadhikar Forum, Democratic
## 222  Not at all interested            National People's front, Nepal
## 223         Not interested     Madheshi janadhikar Forum, Democratic
## 224  Not at all interested                              CPN (Maoist)
## 225    Somewhat interested                                 CPN (UML)
## 226        Very interested                           Nepali Congress
## 227    Somewhat interested                                 CPN (UML)
## 228         Not interested                                 CPN (UML)
## 229        Very interested                                 CPN (UML)
## 230  Not at all interested                           Nepali Congress
## 231  Not at all interested                           Nepali Congress
## 232  Not at all interested                           Nepali Congress
## 233  Not at all interested                                 CPN (UML)
## 234         Not interested                           Nepali Congress
## 235  Not at all interested                           Nepali Congress
## 236         Not interested                           Nepali Congress
## 237         Not interested                           Nepali Congress
## 238         Not interested                           Nepali Congress
## 239    Somewhat interested     Madheshi janadhikar Forum, Democratic
## 240         Not interested                           Nepali Congress
## 241         Not interested                           Nepali Congress
## 242  Not at all interested            National People's front, Nepal
## 243         Not interested                           Nepali Congress
## 244  Not at all interested                           Nepali Congress
## 245    Somewhat interested                                 CPN (UML)
## 246         Not interested                           Nepali Congress
## 247  Not at all interested     Madheshi janadhikar Forum, Democratic
## 248         Not interested                           Nepali Congress
## 249         Not interested                           Nepali Congress
## 250         Not interested                           Nepali Congress
## 251        Very interested                                 CPN (UML)
## 252    Somewhat interested                           Nepali Congress
## 253  Not at all interested                              CPN (Maoist)
## 254  Not at all interested                           Nepali Congress
## 255         Not interested                           Nepali Congress
## 256    Somewhat interested                                 CPN (UML)
## 257         Not interested                             UCPN (Maoist)
## 258  Not at all interested                           Nepali Congress
## 259         Not interested                             UCPN (Maoist)
## 260    Somewhat interested                                 CPN (UML)
## 261  Not at all interested                           Nepali Congress
## 262         Not interested                                 CPN (UML)
## 263  Not at all interested                Rastriya Prajatantra Party
## 264         Not interested                              CPN (Maoist)
## 265         Not interested                              CPN (Maoist)
## 266  Not at all interested                           Nepali Congress
## 267        Very interested                             UCPN (Maoist)
## 268    Somewhat interested                                 CPN (UML)
## 269    Somewhat interested                              CPN (Maoist)
## 270         Not interested                              CPN (Maoist)
## 271        Very interested                              CPN (Maoist)
## 272  Not at all interested                              CPN (Maoist)
## 273         Not interested                                 CPN (UML)
## 274         Not interested                                 CPN (UML)
## 275  Not at all interested                           Nepali Congress
## 276        Very interested                           Nepali Congress
## 277             Don't Know                              CPN (Maoist)
## 278         Not interested                           Nepali Congress
## 279  Not at all interested                           Nepali Congress
## 280    Somewhat interested                           Nepali Congress
## 281    Somewhat interested                           Nepali Congress
## 282    Somewhat interested                           Nepali Congress
## 283        Very interested                           Nepali Congress
## 284    Somewhat interested                             UCPN (Maoist)
## 285    Somewhat interested                                 CPN (UML)
## 286         Not interested                                Don't Know
## 287         Not interested                                 CPN (UML)
## 288  Not at all interested                              CPN (Maoist)
## 289  Not at all interested                                 CPN (UML)
## 290        Very interested                           Nepali Congress
## 291    Somewhat interested                           Nepali Congress
## 292    Somewhat interested                              CPN (Maoist)
## 293    Somewhat interested                           Nepali Congress
## 294    Somewhat interested                              CPN (Maoist)
## 295  Not at all interested                           Nepali Congress
## 296  Not at all interested                           Nepali Congress
## 297             Don't Know                              CPN (Maoist)
## 298    Somewhat interested                           Nepali Congress
## 299  Not at all interested                             UCPN (Maoist)
## 300        Very interested                           Nepali Congress
## 302  Not at all interested                           Nepali Congress
## 303         Not interested                           Nepali Congress
## 304    Somewhat interested                                Don't Know
## 305    Somewhat interested                                 CPN (UML)
## 306  Not at all interested                             UCPN (Maoist)
## 307  Not at all interested                           Nepali Congress
## 308         Not interested                             UCPN (Maoist)
## 309         Not interested                                Don't Know
## 310             Don't Know                           Nepali Congress
## 311  Not at all interested                           Nepali Congress
## 312    Somewhat interested                             UCPN (Maoist)
## 313         Not interested                             UCPN (Maoist)
## 314         Not interested                                Don't Know
## 315         Not interested                                Don't Know
## 316    Somewhat interested                           Nepali Congress
## 317  Not at all interested                           Nepali Congress
## 318  Not at all interested                                Don't Know
## 319    Somewhat interested                                 CPN (UML)
## 320         Not interested                                 CPN (UML)
## 321    Somewhat interested                           Nepali Congress
## 322         Not interested                                Don't Know
## 323         Not interested                                Don't Know
## 324         Not interested                                Don't Know
## 325    Somewhat interested                                 CPN (UML)
## 326    Somewhat interested                                Don't Know
## 327    Somewhat interested                           Nepali Congress
## 328    Somewhat interested            National People's front, Nepal
## 329             Don't Know                                Don't Know
## 330        Very interested                                Don't Know
## 331             Don't Know                                Don't Know
## 332             Don't Know                                Don't Know
## 333             Don't Know                                Don't Know
## 334             Don't Know                                Don't Know
## 335             Don't Know                                 CPN (UML)
## 336             Don't Know                           Nepali Congress
## 337             Don't Know                                Don't Know
## 338             Don't Know           Rastra Prajatantra Party, Nepal
## 339         Not interested                                Don't Know
## 340         Not interested                                Don't Know
## 341    Somewhat interested                                Don't Know
## 342    Somewhat interested                                 CPN (UML)
## 343    Somewhat interested                                 CPN (UML)
## 344    Somewhat interested                                 CPN (UML)
## 345  Not at all interested                           Nepali Congress
## 346         Not interested                           Nepali Congress
## 347  Not at all interested                                Don't Know
## 348         Not interested                           Nepali Congress
## 349  Not at all interested                           Nepali Congress
## 350    Somewhat interested                                Don't Know
## 351  Not at all interested                                Don't Know
## 352  Not at all interested                                Don't Know
## 353             Don't Know                                Don't Know
## 354  Not at all interested           Rastra Prajatantra Party, Nepal
## 355    Somewhat interested                  Nepal Majdur Kisan Party
## 356  Not at all interested                  Nepal Majdur Kisan Party
## 357         Not interested           Rastra Prajatantra Party, Nepal
## 358    Somewhat interested                                Don't Know
## 359    Somewhat interested                           Nepali Congress
## 360    Somewhat interested                                 CPN (UML)
## 361  Not at all interested           Rastra Prajatantra Party, Nepal
## 362    Somewhat interested                           Nepali Congress
## 363  Not at all interested           Rastra Prajatantra Party, Nepal
## 364    Somewhat interested                                Don't Know
## 365             Don't Know                                Don't Know
## 366    Somewhat interested                           Nepali Congress
## 367    Somewhat interested                           Nepali Congress
## 368    Somewhat interested                                Don't Know
## 369    Somewhat interested           Rastra Prajatantra Party, Nepal
## 370    Somewhat interested           Rastra Prajatantra Party, Nepal
## 371    Somewhat interested           Rastra Prajatantra Party, Nepal
## 372         Not interested                           Nepali Congress
## 373  Not at all interested                           Nepali Congress
## 374         Not interested                                 CPN (UML)
## 375    Somewhat interested                           Nepali Congress
## 376    Somewhat interested           Rastra Prajatantra Party, Nepal
## 377    Somewhat interested                                Don't Know
## 378    Somewhat interested           Rastra Prajatantra Party, Nepal
## 379         Not interested                                 CPN (UML)
## 380    Somewhat interested                                Don't Know
## 381  Not at all interested                                Don't Know
## 382    Somewhat interested                           Nepali Congress
## 383    Somewhat interested                                Don't Know
## 384    Somewhat interested                                Don't Know
## 385    Somewhat interested                           Nepali Congress
## 386    Somewhat interested                           Nepali Congress
## 387    Somewhat interested                           Nepali Congress
## 388    Somewhat interested                           Nepali Congress
## 389    Somewhat interested                                 CPN (UML)
## 390    Somewhat interested                                Don't Know
## 391    Somewhat interested                           Nepali Congress
## 392    Somewhat interested                           Nepali Congress
## 393         Not interested           Rastra Prajatantra Party, Nepal
## 394  Not at all interested                           Nepali Congress
## 395    Somewhat interested           Rastra Prajatantra Party, Nepal
## 396    Somewhat interested                           Nepali Congress
## 397    Somewhat interested                                 CPN (UML)
## 398  Not at all interested                                 CPN (UML)
## 399         Not interested                                Don't Know
## 400    Somewhat interested           Rastra Prajatantra Party, Nepal
## 401    Somewhat interested                           Nepali Congress
## 402             Don't Know                                Don't Know
## 403    Somewhat interested                           Nepali Congress
## 404    Somewhat interested                           Nepali Congress
## 405    Somewhat interested                                Don't Know
## 406    Somewhat interested           Rastra Prajatantra Party, Nepal
## 407    Somewhat interested                Rastriya Prajatantra Party
## 408             Don't Know                                Don't Know
## 409  Not at all interested                                Don't Know
## 410    Somewhat interested                                Don't Know
## 411    Somewhat interested                           Nepali Congress
## 412    Somewhat interested                                 CPN (UML)
## 413    Somewhat interested                                 CPN (UML)
## 414             Don't Know                                Don't Know
## 415             Don't Know                                Don't Know
## 416             Don't Know                                Don't Know
## 417  Not at all interested                                Don't Know
## 418             Don't Know                           Nepali Congress
## 419    Somewhat interested                           Nepali Congress
## 420    Somewhat interested                           Nepali Congress
## 421    Somewhat interested                           Nepali Congress
## 422             Don't Know                                Don't Know
## 423             Don't Know           Rastra Prajatantra Party, Nepal
## 424    Somewhat interested                           Nepali Congress
## 425    Somewhat interested                           Nepali Congress
## 426    Somewhat interested                                Don't Know
## 427        Very interested                           Nepali Congress
## 428             Don't Know                                Don't Know
## 429    Somewhat interested                           Nepali Congress
## 430    Somewhat interested                           Nepali Congress
## 431    Somewhat interested                           Nepali Congress
## 432             Don't Know                                Don't Know
## 433    Somewhat interested                           Nepali Congress
## 434    Somewhat interested                           Nepali Congress
## 435    Somewhat interested                           Nepali Congress
## 436    Somewhat interested                           Nepali Congress
## 437    Somewhat interested                           Nepali Congress
## 438             Don't Know                           Nepali Congress
## 439    Somewhat interested                           Nepali Congress
## 440             Don't Know                                Don't Know
## 441    Somewhat interested                           Nepali Congress
## 442         Not interested                           Nepali Congress
## 443             Don't Know                           Nepali Congress
## 444  Not at all interested                           Nepali Congress
## 445    Somewhat interested                           Nepali Congress
## 446  Not at all interested                           Nepali Congress
## 447  Not at all interested                           Nepali Congress
## 448  Not at all interested                           Nepali Congress
## 449             Don't Know                                Don't Know
## 450  Not at all interested                                Don't Know
## 451    Somewhat interested                           Nepali Congress
## 452    Somewhat interested                           Nepali Congress
## 453    Somewhat interested                           Nepali Congress
## 454        Very interested                             UCPN (Maoist)
## 455    Somewhat interested                                Don't Know
## 456    Somewhat interested                                Don't Know
## 457             Don't Know                           Nepali Congress
## 458    Somewhat interested                                      <NA>
## 459        Very interested                                      <NA>
## 460         Not interested           Rastra Prajatantra Party, Nepal
## 461    Somewhat interested                Rastriya Janamorcha, Nepal
## 462    Somewhat interested                             UCPN (Maoist)
## 463    Somewhat interested                                 CPN (UML)
## 464        Very interested                                 CPN (UML)
## 465    Somewhat interested                           Nepali Congress
## 466    Somewhat interested                                      <NA>
## 467         Not interested                           Nepali Congress
## 468    Somewhat interested                           Nepali Congress
## 469    Somewhat interested                                 CPN (UML)
## 470    Somewhat interested                             UCPN (Maoist)
## 471  Not at all interested                           Nepali Congress
## 472        Very interested                                Don't Know
## 473         Not interested                                Don't Know
## 474         Not interested                                Don't Know
## 475    Somewhat interested                                      <NA>
## 476         Not interested                                Don't Know
## 477    Somewhat interested                                Don't Know
## 478    Somewhat interested                              CPN (Maoist)
## 479         Not interested                              CPN (Maoist)
## 480         Not interested                                Don't Know
## 481         Not interested                                Don't Know
## 482    Somewhat interested                                Don't Know
## 483  Not at all interested                                Don't Know
## 484    Somewhat interested                           Nepali Congress
## 485    Somewhat interested                                 CPN (UML)
## 486    Somewhat interested                                 CPN (UML)
## 487         Not interested                                Don't Know
## 488    Somewhat interested                             UCPN (Maoist)
## 489         Not interested                                Don't Know
## 490    Somewhat interested                             UCPN (Maoist)
## 491    Somewhat interested                             UCPN (Maoist)
## 492    Somewhat interested                             UCPN (Maoist)
## 493        Very interested                                      <NA>
## 494  Not at all interested                           Nepali Congress
## 495    Somewhat interested                                      <NA>
## 496    Somewhat interested                           Nepali Congress
##  [ reached getOption("max.print") -- omitted 1708 rows ]